/* Vista11 — website UI kit styles. Builds on ../../colors_and_type.css */

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
/* nav anchors land at the section start, clear of the sticky header */
.hero, .section { scroll-margin-top: 90px; }
body {
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
.v-app { }
img { display: block; max-width: 100%; }

/* ---- reusable bits ------------------------------------------------- */
.container { max-width: 1180px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: var(--track-eyebrow);
  text-transform: uppercase; color: var(--accent-wood); margin: 0 0 14px;
}
.btn {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: var(--track-caps); text-transform: uppercase;
  border: 0; border-radius: var(--radius-pill); padding: 15px 30px;
  cursor: pointer; transition: all var(--dur) var(--ease); display: inline-block;
  text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--cream-50); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { background: var(--accent-press); transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-ghost:hover { background: var(--accent); color: var(--cream-50); }
.btn-light { background: var(--cream-50); color: var(--green-800); }
.btn-light:hover { background: #fff; transform: translateY(-1px); }

/* photo placeholder (stands in for real photography) */
.photo {
  position: relative; background:
    linear-gradient(135deg, var(--wood-200), var(--cream-300) 60%, var(--cream-200));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.photo i { color: var(--wood-600); }
.photo .pin {
  position: absolute; bottom: 12px; left: 14px; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--wood-700); opacity: .8;
}

/* section rhythm */
.section { padding-top: var(--space-9); padding-bottom: var(--space-9); }
.section-tight { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.center { text-align: center; }
.lead { font-weight: 300; font-size: var(--text-md); line-height: var(--leading-body); color: var(--fg2); }
h1,h2,h3 { margin: 0; }

/* ---- header -------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  /* always a solid, brand-coloured bar so dark text + green logo stay legible
     over the hero video AND the cream sections beneath it */
  background: rgba(252,249,243,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.hdr-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; }
.hdr.scrolled { box-shadow: var(--shadow-sm); }
.nav-left { justify-self: start; }
.nav-right { justify-self: end; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 53px; width: auto; display: block; }
.brand .logo-light { display: none; }
.brand .logo-green { display: block; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-size: 13px; letter-spacing: .04em; color: var(--fg1); text-decoration: none; transition: color var(--dur-fast); }
.nav a:hover { color: var(--accent-wood); }
.lang { font-size: 12px; letter-spacing: .1em; display: inline-flex; align-items: center; gap: 6px; }
.lang-btn { font-family: var(--font-sans); font-size: 12px; letter-spacing: .12em; background: none;
  border: 0; padding: 2px 1px; cursor: pointer; color: var(--fg3); transition: color var(--dur-fast); }
.lang-btn:hover { color: var(--fg1); }
.lang-btn.active { color: var(--accent); font-weight: 600; }
.lang-sep { color: var(--ink-300); }

/* ---- mobile menu (burger + dropdown) ------------------------------- */
.hdr-burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 0; cursor: pointer; }
.hdr-burger span { display: block; height: 2px; width: 100%; background: var(--fg1);
  border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur-fast); }
.hdr.menu-open .hdr-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr.menu-open .hdr-burger span:nth-child(2) { opacity: 0; }
.hdr.menu-open .hdr-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hdr-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 5;
  overflow: hidden; max-height: 0;
  background: rgba(252,249,243,0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: max-height var(--dur) var(--ease), border-color var(--dur); }
.hdr-mobile.open { max-height: 60vh; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
.hdr-mobile-nav { display: flex; flex-direction: column; padding: 8px 28px 4px; }
.hdr-mobile-nav a { font-family: var(--font-display); font-size: 24px; color: var(--fg1);
  text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hdr-mobile-nav a:active { color: var(--accent-wood); }
.hdr-mobile-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 28px 24px; }
.hdr-mobile-foot .lang { font-size: 14px; }
.hdr-mobile-foot .lang-btn { font-size: 14px; }
.hdr-mobile-foot .btn { padding: 13px 26px; }

/* ---- hero ---------------------------------------------------------- */
.hero { position: relative; min-height: calc(100vh - 78px); min-height: calc(100svh - 78px); display: flex; flex-direction: column;
  justify-content: center; color: var(--cream-50); overflow: hidden; }
.hero .photo { position: absolute; inset: 0;
  background: linear-gradient(158deg, #3c4d41 0%, #2a3b2f 48%, #1c2a21 100%); }
.hero .photo i { width: 80px; height: 80px; opacity: .32; color: var(--cream-100); }
/* background media (video or photo) — kept in its own stacking context (z-index:0)
   so the overlay + content always paint above it */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--green-900); }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%; display: block; }
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; opacity: 0; transition: opacity 800ms var(--ease-out); }
.hero-video.ready { opacity: 1; }
/* cinematic overlay: legible at the bottom where text sits, light at the top so the
   clouds + skyline still read; a soft green tint + corner vignette adds depth */
.hero .scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,30,23,.50) 0%, rgba(20,30,23,.28) 9%, rgba(20,30,23,.10) 22%, rgba(20,30,23,.40) 56%, rgba(20,30,23,.78) 100%),
    linear-gradient(95deg, rgba(20,30,23,.58) 0%, rgba(20,30,23,.26) 34%, rgba(20,30,23,.02) 62%, rgba(20,30,23,0) 78%),
    radial-gradient(130% 90% at 50% 8%, rgba(28,42,33,0) 44%, rgba(20,30,23,.34) 100%); }
/* faint film grain for a premium, filmic feel */
.hero-grain { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.hero .container { position: relative; z-index: 3; width: 100%; padding-bottom: 64px; padding-top: 72px; }
.hero h1, .hero-title { display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 58px); line-height: 1.1; letter-spacing: -.012em;
  margin: 0 0 28px; max-width: none; text-wrap: pretty; color: var(--white);
  text-shadow: 0 1px 2px rgba(12,20,15,.5), 0 4px 30px rgba(12,20,15,.55); }
.hero .eyebrow { color: var(--wood-300); font-weight: 600; margin: 0 0 18px;
  text-shadow: 0 1px 12px rgba(12,20,15,.6); }
.hero p, .hero-lead { max-width: 50ch; font-size: var(--text-md); font-weight: 400; line-height: 1.6;
  color: var(--cream-50); margin: 0 0 32px; text-shadow: 0 1px 2px rgba(12,20,15,.45), 0 2px 22px rgba(12,20,15,.5); }

/* ---- hero scroll cue ----------------------------------------------- */
.hero-cue { position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: var(--track-eyebrow);
  text-transform: uppercase; color: var(--cream-100); opacity: .82; transition: opacity var(--dur); }
.hero-cue:hover { opacity: 1; }
.hero-cue .cue-line { width: 1px; height: 46px; background: linear-gradient(var(--cream-100), rgba(252,249,243,0)); }

/* ---- hero entrance (cue reveal + bob) ------------------------------ */
.hero-cue.reveal { opacity: 0; transform: translateX(-50%); }
.hero-cue.reveal.in { opacity: .82; transform: translateX(-50%); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes cueBob { 0%,100% { transform: translateX(-50%) translateY(0); }
                      50% { transform: translateX(-50%) translateY(6px); } }
  .hero-cue.reveal.in { animation: cueBob 2.6s var(--ease) 1.4s infinite; }
}

/* ---- about/concept ------------------------------------------------- */
.about { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: center; }
.about .photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about .photo i { width: 44px; height: 44px; }
.about h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-2xl); line-height: 1.15; margin-bottom: 18px; }
.about .sig { margin-top: 22px; font-family: var(--font-display); font-size: 18px; color: var(--accent); }
.about .sig small { display: block; font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg3); margin-top: 2px; }

/* ---- quote / Zitat-Sektion ----------------------------------------- */
.quote { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center; }
.quote .photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.quote .photo i { width: 44px; height: 44px; }
.quote-body { position: relative; }
.quote-body .eyebrow { margin-bottom: 18px; }
.q-mark { display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 96px; line-height: .68; color: var(--accent); opacity: .9;
  margin: 0 0 -12px -4px; }
.quote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(21px, 2.3vw, 30px); line-height: 1.42; letter-spacing: -.005em;
  color: var(--fg1); text-wrap: pretty; text-indent: 0;
}
.quote .sig { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.sig-avatar { flex: none; width: 62px; height: 62px; border-radius: 50%; object-fit: cover;
  box-shadow: var(--shadow-md); background: var(--cream-200); }
.quote .sig-text { font-family: var(--font-display); font-size: 19px; color: var(--accent); line-height: 1.1; }
.quote .sig-text small { display: block; font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg3); margin-top: 4px; }

/* ---- room features ------------------------------------------------- */
.rooms-head { max-width: 620px; margin: 0 auto var(--space-7); }
.rooms-head h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-2xl); }
.rooms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.room { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform var(--dur) var(--ease), box-shadow var(--dur); }
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.room .photo { aspect-ratio: 16/10; }
.room .photo i { width: 40px; height: 40px; }
.room .rb { padding: 22px 24px 26px; }
.room h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin-bottom: 8px; }
.room p { font-size: 15.5px; line-height: 1.62; color: var(--fg2); margin: 0; }

/* ---- dark feature band -------------------------------------------- */
.band { background: var(--bg-contrast); color: var(--fg-on-dark); }
.band .eyebrow { color: var(--wood-300); }
.band h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-2xl); color: var(--cream-50); }
.band .lead { color: var(--green-100); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 32px; margin-top: var(--space-7); }
.feat i { width: 44px; height: 44px; color: var(--wood-300); stroke-width: 1.5; }
.feat h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--cream-50); margin: 16px 0 9px; }
.feat p { font-size: 14.5px; line-height: 1.62; color: var(--green-100); margin: 0; opacity: .92; }

/* ---- pricing ------------------------------------------------------- */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.price-card { background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: 40px; border: 1px solid var(--line); }
.price-card .amt { font-family: var(--font-display); font-size: 52px; color: var(--accent); line-height: 1; }
.price-card .amt small { font-family: var(--font-sans); font-size: 15px; color: var(--fg2); letter-spacing: .02em; }
.price-card .vat { font-size: 13px; color: var(--fg3); margin: 6px 0 24px; }
.incl { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.incl li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--fg1); }
.incl i { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.price-note { font-size: 15.5px; line-height: 1.66; color: var(--fg2); }
.price-note h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); margin-bottom: 14px; color: var(--fg1); }

/* ---- amenities ----------------------------------------------------- */
.amen { background: var(--cream-50); }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: var(--space-7); }
.amen-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: border var(--dur), box-shadow var(--dur), transform var(--dur); }
.amen-card:hover { border-color: var(--wood-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.amen-card .am-photo { height: 160px; overflow: hidden; }
.amen-card .am-photo img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease); }
.amen-card:hover .am-photo img { transform: scale(1.04); }
.amen-card .am-body { padding: 22px 24px 26px; }
.amen-card i { width: 26px; height: 26px; color: var(--accent-wood); stroke-width: 1.5; }
.amen-card h4 { font-family: var(--font-sans); font-weight: 500; font-size: 15px; margin: 12px 0 8px; color: var(--fg1); }
.amen-card p { font-size: 13px; line-height: 1.6; color: var(--fg2); margin: 0; }

/* ---- faq ----------------------------------------------------------- */
.faq { background: var(--bg); }
.faq-inner { max-width: 800px; }
.faq-list { margin-top: var(--space-7); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 4px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2vw, 24px); line-height: 1.3; color: var(--fg1);
  transition: color var(--dur-fast); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q span { flex: 1; min-width: 0; text-wrap: pretty; }
.faq-q::after { content: "+"; flex: none; font-family: var(--font-sans); font-weight: 300;
  font-size: 30px; line-height: 1; color: var(--accent-wood); transition: color var(--dur-fast); }
.faq-q:hover { color: var(--accent); }
.faq-item[open] > .faq-q { color: var(--accent); }
.faq-item[open] > .faq-q::after { content: "×"; color: var(--accent); }
.faq-a { display: none; overflow: hidden; }
.faq-item[open] > .faq-a { display: block; }
.faq-a p { margin: 0; padding: 4px 56px 28px 4px; font-size: var(--text-base);
  line-height: var(--leading-body); color: var(--fg2); }
@media (prefers-reduced-motion: no-preference) {
  @keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
  .faq-item[open] > .faq-a { animation: faqReveal var(--dur) var(--ease-out); }
}

/* ---- footer -------------------------------------------------------- */
.ftr { background: var(--green-900); color: var(--green-100); padding: var(--space-8) 0 var(--space-6); }
.ftr-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line-on-dark); }
.ftr .brand img { height: 40px; }
.ftr h5 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--wood-300); margin: 0 0 12px; }
.ftr a { color: var(--green-100); text-decoration: none; font-size: 14px; }
.ftr a:hover { color: var(--cream-50); }
.ftr-cols { display: flex; gap: 64px; }
.ftr-bottom { display: flex; justify-content: space-between; padding-top: var(--space-5); font-size: 12px; color: var(--green-300); }
.ftr-legal { display: flex; gap: 24px; }
.ftr-bottom a { font-size: 12px; color: var(--green-300); }
.ftr-bottom a:hover { color: var(--cream-50); }

/* ---- modal --------------------------------------------------------- */
.modal-ov { position: fixed; inset: 0; z-index: 100; background: rgba(28,42,33,.5);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 440px; padding: 38px 36px; }
.modal h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; margin-bottom: 6px; }
.modal p.sub { font-size: 14px; color: var(--fg2); margin: 0 0 24px; }
.modal label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg2); margin: 0 0 7px; }
.field { width: 100%; font-family: var(--font-sans); font-size: 14px; color: var(--fg1); background: var(--surface);
  border: 1px solid var(--line-strong); border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 16px; transition: all var(--dur); }
.field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); outline: none; }
.modal .btn { width: 100%; text-align: center; }
.modal .x { position: absolute; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; }
.close { background: none; border: 0; cursor: pointer; color: var(--fg3); font-size: 22px; line-height: 1; padding: 4px; }
.close:hover { color: var(--fg1); }
.ok { text-align: center; padding: 12px 0 4px; }
.ok i { width: 44px; height: 44px; color: var(--accent); }
.ok h3 { margin: 14px 0 8px; }

@keyframes pop { from { transform: translateY(16px); } to { transform: translateY(0); } }

/* ---- scroll reveal (on-brand: fade + small rise) ------------------- */
.reveal { opacity: 0; transform: translateY(26px); will-change: opacity, transform; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition:
      opacity 1700ms var(--ease-out),
      transform 1700ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms); }
}
.reveal.in { opacity: 1; transform: none; }

/* ---- hero ambient zoom (very slow, calm) --------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroZoom {
    from { transform: scale(1.005); }
    to   { transform: scale(1.075); }
  }
  .hero-poster, .hero-video { animation: heroZoom 26s var(--ease) both; }
}

@media (prefers-reduced-motion: no-preference) {
  .modal { animation: pop var(--dur) var(--ease-out); }
}

@media (max-width: 1120px) {
  /* the 6-link wayfinding nav needs room; below this width use the burger menu */
  .hdr .nav-left, .hdr .nav-right { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile { display: block; }
  .hdr-inner { grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 860px) {
  .about, .quote, .price-wrap { grid-template-columns: 1fr; gap: 32px; }
  .rooms, .amen-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }

  /* header: swap desktop navs for the burger + dropdown */
  .hdr .nav-left, .hdr .nav-right { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile { display: block; }
  .hdr-inner { justify-content: space-between; }

  /* generous section rhythm + edge padding on phones */
  .container { padding-left: 22px; padding-right: 22px; }
  .section { padding-top: 104px; padding-bottom: 104px; }
  .section-tight { padding-top: var(--space-9); padding-bottom: var(--space-9); }
  .hero { min-height: calc(100vh - 78px); min-height: calc(100svh - 78px); }
  .hero .container { padding-top: 56px; padding-bottom: 40px; }
  .rooms-head { margin-bottom: var(--space-7); }
  .price-card { padding: 30px 26px; }
}

@media (max-width: 540px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .feat-grid { grid-template-columns: 1fr; gap: 30px; }
  .band h2, .rooms-head h2,
  .price-note h2, .section-tight h2 { font-size: var(--text-xl); }
  .hero h1, .hero-title { font-size: clamp(27px, 7.4vw, 38px); }
  .hero p, .hero-lead { font-size: 15px; }
  .faq-a p { padding-right: 4px; }
  .room h3 { font-size: 20px; }
  .price-card .amt { font-size: 44px; }
  .ftr-cols { gap: 36px; }
  .ftr-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  /* quote: more breathing room after the hero + a shorter, less dominant photo */
  #konzept { padding-top: 112px; }
  .quote { gap: 24px; }
  .quote .photo { aspect-ratio: 3 / 2; max-height: 300px; }
}
