/* ===========================================================
   olina Kirchbichl — clean rebuild
   Fonts: Sora (display) · Inter (text)
   =========================================================== */

:root {
  --gold: #b47c2c;
  --gold-light: #c89345;
  --terra: #ab6a58;
  --ink: #232021;
  --ink-2: #2a2a2a;
  --text: #2a2a2a;
  --muted: #6f6a66;
  --line: #e6e2dd;
  --cream: #f6f4f1;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(35, 32, 33, .35);
  --shadow-sm: 0 10px 30px -16px rgba(35, 32, 33, .4);
  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.accent { color: var(--gold); }

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--bg);
  color: var(--fg);
  border: none;
  border-radius: 999px;
  padding: 16px 34px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 14px 30px -12px rgba(180, 124, 44, .7);
  text-align: center;
  line-height: 1.25;
}
.btn small {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: .76rem;
  opacity: .9;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 20px 40px -14px rgba(180, 124, 44, .8); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn--sm { padding: 12px 24px; font-size: .92rem; }

/* ---------- Rating ---------- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 500;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.rating .sub { color: var(--muted); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(28, 26, 27, .92);
  backdrop-filter: blur(10px);
  padding-block: 10px;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.site-header .logo img { height: 30px; width: auto; }
.site-header .btn { box-shadow: none; padding: 11px 22px; font-size: .92rem; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #1c1a1b;
  isolation: isolate;
  padding: 140px 0 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 18, 19, .55) 0%, rgba(20, 18, 19, .25) 35%, rgba(20, 18, 19, .85) 100%);
  z-index: -1;
}
.hero__inner { max-width: 680px; }
.hero .rating { color: #fff; margin-bottom: 22px; }
.hero .rating .sub { color: rgba(255, 255, 255, .75); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.4vw, 3.7rem);
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, .9);
  max-width: 600px;
  margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.hero__bullets {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .98rem;
  color: rgba(255, 255, 255, .92);
}
.hero__bullets svg { flex: none; color: var(--gold); }

/* ===========================================================
   MARQUEE GALLERY
   =========================================================== */
.gallery { background: var(--ink); padding: 26px 0; overflow: hidden; }
.marquee { display: flex; width: max-content; gap: 16px; animation: scroll 60s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee img {
  height: 220px;
  width: 320px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex: none;
}
@keyframes scroll {
  to { transform: translateX(calc(-50% - 8px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
}

/* ===========================================================
   SECTION SHELL
   =========================================================== */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section__head { max-width: 760px; margin-bottom: 54px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 16px 0 0; }
.section__head p { color: var(--muted); margin-top: 18px; font-size: 1.06rem; }

/* ---------- Reviews ---------- */
.reviews-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.reviews-top__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reviews-top__imgs img { border-radius: var(--radius-sm); height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .stars { font-size: 1rem; }
.review p { font-size: .96rem; color: #4a4541; }
.review .who { margin-top: auto; font-family: "Sora", sans-serif; font-weight: 600; color: var(--ink); font-size: .95rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about__img::after {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about__body h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 22px; }
.about__body p { color: #4a4541; margin-bottom: 16px; }
.about__sign { font-family: "Sora", sans-serif; font-weight: 600; color: var(--gold); margin-top: 8px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step__num {
  font-family: "Sora", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: .9;
}
.step h3 { font-size: 1.3rem; }
.step p { color: #4a4541; font-size: .98rem; }
.step .step__cta { margin-top: 8px; }
.steps-cta { text-align: center; margin-top: 50px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(80px, 12vw, 150px) 0;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: url("../img/wood.jpg") center/cover no-repeat fixed;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(20, 16, 13, .68);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 600px; margin: 22px auto 34px; }

/* ---------- Reasons ---------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.reason {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.reason:hover { transform: translateY(-4px); }
.reason__icon {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(180, 124, 44, .12);
  color: var(--gold);
}
.reason h3 { font-size: 1.18rem; margin-bottom: 8px; }
.reason p { color: #4a4541; font-size: .96rem; }
.reasons-cta { text-align: center; margin-top: 48px; }
.reasons-cta small { display: block; color: var(--muted); margin-top: 14px; }

/* ===========================================================
   BOOKING / CONTACT
   =========================================================== */
.booking { background: var(--ink); color: #fff; }
.booking .section__head h2 { color: #fff; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
}
.contact-card__icon { flex: none; color: var(--gold); }
.contact-card .label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .6); }
.contact-card .val { font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.1rem; color: #fff; }
.contact-card .val:hover { color: var(--gold); }

.form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.form .row { display: grid; gap: 16px; }
.form .row.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(180, 124, 44, .15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { width: 100%; margin-top: 8px; }
.form__note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form__status { font-size: .92rem; font-weight: 600; text-align: center; margin-top: 14px; }

/* ===========================================================
   SUBPAGE (Impressum / Datenschutz)
   =========================================================== */
body.subpage { background: var(--cream); }
.subpage .site-header {
  position: sticky;
  background: var(--ink);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.legal {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 90px) 22px clamp(60px, 9vw, 110px);
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}
.legal .lead { color: var(--muted); margin-bottom: 44px; }
.legal section { margin-bottom: 38px; }
.legal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.legal p { margin-bottom: 12px; color: #3f3a37; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }
.legal .data {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.legal .data li { display: flex; gap: 10px; flex-wrap: wrap; }
.legal .data .k { min-width: 170px; font-weight: 600; color: var(--ink); }
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 20px;
}
.legal .back:hover { color: var(--gold); }
.legal .hours li .k { min-width: 220px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: #1a1819;
  color: rgba(255, 255, 255, .7);
  padding: 30px 0;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}
.site-footer .copy { font-size: .9rem; }
.site-footer nav { display: flex; gap: 24px; font-size: .9rem; }
.site-footer nav a:hover { color: var(--gold); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .reviews-top { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about__img { max-width: 420px; }
  .steps { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .cta-band::before { background-attachment: scroll; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header .btn small { display: none; }
  .site-header .btn { padding: 10px 18px; }
  .form .row.two { grid-template-columns: 1fr; }
  .marquee img { height: 160px; width: 230px; }
  .hero { padding-top: 120px; }
  .site-footer .wrap { flex-direction: column; text-align: center; }
}
