:root {
  --paper: #f7f2e9;
  --paper-2: #efe6d8;
  --ink: #2b2118;
  --muted: #6f6255;
  --line: #dbcbb6;
  --green: #687a3d;
  --green-dark: #4f5f2e;
  --brown: #573725;
  --gold: #9a7a3f;
  --white: #fffaf2;
  --shadow: 0 22px 60px rgba(42, 31, 20, .16);
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #ded8ce; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ded8ce;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.page { width: min(100%, 1440px); margin: 0 auto; background: var(--paper); overflow: hidden; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.serif { font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
.kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.btn.primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn.secondary { background: transparent; color: var(--brown); border-color: #bca889; }
.btn.dark { background: #fff7e8; color: var(--brown); border-color: #fff7e8; }
.btn.outline-dark { color: #fff7e8; border-color: rgba(255,255,255,.38); }

.site-header {
  background: rgba(255, 250, 242, .96);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 350px;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.brand-mark {
  width: 40px;
  height: 48px;
  color: #b89a69;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-text { min-width: 0; }
.brand-text strong,
.brand-text span { display: block; }
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: .98;
  color: var(--brown);
}
.brand span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #3b3027;
  font-size: 13px;
  font-weight: 750;
}
.nav a { white-space: nowrap; }
.nav a.is-active { color: var(--green-dark); }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.header-actions .btn { min-height: 42px; padding-inline: 15px; font-size: 13px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(450px, .86fr) minmax(560px, 1.14fr);
  min-height: calc(100dvh - var(--header-height));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-copy {
  position: relative;
  padding: 58px 70px 70px max(72px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-mountain-line {
  position: absolute;
  left: 0;
  right: -30px;
  bottom: 30px;
  width: min(640px, 92%);
  height: 112px;
  color: #b89a69;
  opacity: .42;
  pointer-events: none;
}
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 560px;
  color: var(--brown);
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.03;
}
.hero .lead {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero .actions { position: relative; z-index: 1; }
.hero-media {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  background: #d8c7ad;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  filter: saturate(.96) contrast(.98);
}

.fact-row { background: #fbf6ed; border-bottom: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 96px; }
.fact {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact-icon { width: 48px; height: 48px; color: var(--green); }
.fact-icon svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.fact strong { display: block; color: var(--brown); font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.1; }
.fact span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }

.section { padding: 90px 0; }
.section-title { text-align: center; margin: 0 auto 44px; max-width: 850px; }
.section-title h2 { margin: 0; color: var(--brown); font-size: clamp(36px, 4vw, 58px); line-height: 1.05; }
.section-title p { margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 720px; }

.apartment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.apartment {
  background: #fffaf2;
  border: 1px solid #e3d5bf;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(42,31,20,.08);
}
.apartment img { width: 100%; height: 330px; object-fit: cover; }
.apartment-body { padding: 26px 28px 28px; }
.apartment h3 { margin: 0; color: var(--brown); font-size: 29px; line-height: 1.1; }
.apartment p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }
.apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: #51463c;
  font-size: 14px;
}
.apartment-meta span { padding-right: 12px; border-right: 1px solid #d3c2a9; }
.apartment-meta span:last-child { border-right: 0; }

.benefits { background: #fbf6ed; }
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8c7ae;
  border-bottom: 1px solid #d8c7ae;
}
.benefit {
  min-height: 250px;
  padding: 34px 32px 30px;
  border-right: 1px solid #d8c7ae;
}
.benefit:last-child { border-right: 0; }
.benefit-icon { width: 54px; height: 54px; color: var(--green); margin-bottom: 30px; }
.benefit-icon svg { width: 54px; height: 54px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { margin: 0; color: var(--brown); font-size: 25px; line-height: 1.15; }
.benefit p { margin: 14px 0 0; color: var(--muted); line-height: 1.58; }

.season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.season-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: #fff8ec;
}
.season-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.season-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(24,24,19,.78), rgba(24,24,19,.16) 58%); }
.season-content { position: absolute; z-index: 1; left: 30px; right: 28px; bottom: 30px; }
.season-content h3 { margin: 10px 0 0; font-size: 30px; line-height: 1.08; }
.season-content p { margin: 12px 0 0; color: #f0e6d4; line-height: 1.5; max-width: 420px; }

.reviews { background: #f1e7d9; }
.review-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
  align-items: center;
}
.rating { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 124px; line-height: .88; }
.stars { margin-top: 12px; color: var(--green); letter-spacing: .12em; font-size: 25px; }
.stars svg { width: 24px; height: 24px; fill: currentColor; margin-right: 4px; }
.reviews h2 { margin: 22px 0 0; color: var(--brown); font-size: clamp(36px, 4vw, 56px); line-height: 1.05; }
.reviews p { color: var(--muted); font-size: 18px; line-height: 1.58; }
.review-image { height: 500px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.review-image img { width: 100%; height: 100%; object-fit: cover; }

.footer-cta {
  position: relative;
  overflow: hidden;
  background: #4f321f;
  color: #f7ead6;
}
.footer-cta:after {
  content: "";
  position: absolute;
  inset: 0 0 0 56%;
  background:
    linear-gradient(90deg, rgba(79,50,31,.96), rgba(79,50,31,.55)),
    url("../img/hochzeiger-rifflsee-winter.jpg") center/cover;
  opacity: .62;
  pointer-events: none;
}
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 60px;
  align-items: center;
  padding: 58px 0;
}
.footer-top h2 { margin: 0; font-size: clamp(38px, 4vw, 60px); line-height: 1.02; }
.footer-top p { color: #e2d2be; font-size: 18px; line-height: 1.58; }
.footer-list { display: grid; gap: 14px; }
.footer-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: #efe0cc;
}
.footer-list svg { width: 22px; height: 22px; color: #cbb37c; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-footer { background: #fbf6ed; color: var(--ink); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr .7fr;
  gap: 44px;
  padding: 44px 0 52px;
}
.footer-bottom h3 { margin: 0; color: var(--brown); font-size: 26px; }
.footer-bottom h4 { margin: 0 0 14px; color: var(--green-dark); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom p, .footer-bottom li { color: var(--muted); line-height: 1.6; font-size: 15px; }
.footer-bottom ul { list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin-bottom: 8px; }
.copyright { border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); font-size: 13px; }

.subpage-hero { padding: 96px 0 72px; border-bottom: 1px solid var(--line); background: #fbf6ed; }
.subpage-hero h1 { margin: 0; color: var(--brown); font-size: clamp(44px, 6vw, 76px); line-height: 1; }
.subpage-hero p { max-width: 760px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.text-panel { border-top: 1px solid var(--line); padding-top: 24px; }
.text-panel h2 { margin: 0; color: var(--brown); font-size: 30px; line-height: 1.15; }
.text-panel p, .text-panel li { color: var(--muted); line-height: 1.65; }

@media (max-width: 980px) {
  :root { --header-height: 0px; }
  .header-inner { grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
  .brand { grid-template-columns: 36px 1fr; }
  .brand-mark { width: 36px; height: 44px; }
  .nav { justify-content: flex-start; gap: 14px 18px; overflow-x: visible; flex-wrap: wrap; padding-bottom: 2px; }
  .header-actions { justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 24px 48px; }
  .hero-media { min-height: 420px; clip-path: none; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .apartment-grid, .benefit-strip, .season-grid, .review-inner, .footer-top, .footer-bottom, .text-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid #d8c7ae; min-height: auto; }
  .benefit:last-child { border-bottom: 0; }
  .footer-cta:after { inset: 0; opacity: .22; }
  .review-image { height: 360px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .brand strong { font-size: 24px; }
  .brand {
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .brand strong {
    font-size: 22px;
    line-height: .95;
    max-width: 300px;
  }
  .brand span { font-size: 10px; }
  .brand-mark { width: 34px; height: 42px; }
  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 10px 16px;
    font-size: 13px;
  }
  .nav a { white-space: normal; }
  .header-actions { flex-direction: column; align-items: stretch; }
  .header-actions .btn { width: 100%; }
  .hero-copy { padding: 56px 24px 42px; }
  .hero-mountain-line { right: 0; bottom: 12px; width: 100%; height: 86px; opacity: .32; }
  .hero h1 { font-size: 34px; line-height: 1.06; max-width: 342px; }
  .hero .lead { font-size: 16px; max-width: 342px; }
  .hero .actions { flex-direction: column; align-items: stretch; max-width: 342px; }
  .hero .btn { width: 100%; }
  .section { padding: 64px 0; }
  .apartment img { height: 250px; }
  .season-card { min-height: 350px; }
  .rating { font-size: 92px; }
  .reviews h2 { font-size: 34px; max-width: 342px; }
  .reviews p { max-width: 342px; }
  .footer-top h2 { font-size: 34px; max-width: 342px; }
  .footer-top p { max-width: 342px; }
  .footer-list { max-width: 342px; }
  .footer-top .actions { display: grid; gap: 12px; }
  .footer-top .btn { width: 100%; }
}
