: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%, 1920px); margin: 0 auto; background: var(--paper); overflow: visible; }
.wrap { width: min(1920px, 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); }

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-ready .hero-copy,
.reveal-ready .subpage-hero .wrap,
.reveal-ready .farm-hero-grid {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIntro 820ms ease forwards;
}
.reveal-ready .hero-media,
.reveal-ready .farm-hero-image {
  opacity: 0;
  transform: scale(1.025);
  animation: mediaIntro 1000ms ease 140ms forwards;
}
@keyframes heroIntro {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mediaIntro {
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-item,
  .reveal-ready .hero-copy,
  .reveal-ready .subpage-hero .wrap,
  .reveal-ready .farm-hero-grid,
  .reveal-ready .hero-media,
  .reveal-ready .farm-hero-image {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

.site-header {
  background: rgba(255, 250, 242, .96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(42, 31, 20, .05);
}
.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: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 1px 0 rgba(87, 55, 37, .08));
}
.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: 15px;
  font-weight: 750;
}
.nav a {
  position: relative;
  padding-block: 8px;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--green-dark);
}
.nav a:hover,
.nav a:focus-visible {
  transform: translateY(-1px);
}
.nav a:hover:after,
.nav a:focus-visible:after,
.nav a.is-active:after {
  transform: scaleX(1);
}
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.header-actions .btn { min-height: 42px; padding-inline: 15px; font-size: 13px; }
.site-menu { display: contents; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #bca889;
  border-radius: 6px;
  background: transparent;
  color: var(--brown);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.menu-toggle i,
.menu-toggle i:before,
.menu-toggle i:after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.menu-toggle i {
  position: relative;
}
.menu-toggle i:before,
.menu-toggle i:after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle i:before { top: -6px; }
.menu-toggle i:after { top: 6px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: clamp(620px, calc(100dvh - var(--header-height)), 760px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-copy {
  position: relative;
  padding: 58px clamp(56px, 5vw, 78px) 70px clamp(56px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-mountain-line {
  position: absolute;
  left: 0;
  right: -30px;
  bottom: 24px;
  width: min(660px, 94%);
  height: auto;
  opacity: .58;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 640px;
  color: var(--brown);
  font-size: clamp(42px, 3.9vw, 58px);
  line-height: 1.03;
  text-wrap: balance;
}
.hero .lead {
  position: relative;
  z-index: 1;
  max-width: 540px;
  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: clamp(620px, calc(100dvh - var(--header-height)), 760px);
  clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  background: #d8c7ad;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1200ms ease;
  filter: saturate(.96) contrast(.98);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide[data-season="summer"] { object-position: 24% 50%; }
.hero-slide[data-season="winter"] { object-position: 24% 50%; }

.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);
}
a.fact { transition: background .2s ease; }
a.fact:hover { background: rgba(104, 122, 61, .07); }
.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.compact { max-width: 760px; }
.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; }
.overview-landscape {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  object-position: center 48%;
  border-radius: 8px;
  margin: 0 0 34px;
  box-shadow: 0 24px 60px rgba(68, 48, 29, .12);
}
.subpage-hero .overview-landscape {
  margin: 36px 0 0;
}
.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; }
.apartment .actions { margin-top: 22px; }
.apartment .btn { min-height: 42px; }

.benefits {
  background: #fbf6ed;
  padding-top: 58px;
}
.benefit-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: stretch;
}
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d8c7ae;
  border-bottom: 1px solid #d8c7ae;
}
.benefit-feature .benefit-strip { grid-template-columns: repeat(2, 1fr); }
.benefit {
  min-height: 250px;
  padding: 34px 32px 30px;
  border-right: 1px solid #d8c7ae;
}
.benefit:nth-child(2n) { border-right: 0; }
.benefit:nth-child(-n+2) { border-bottom: 1px solid #d8c7ae; }
.benefit-link { display: block; background: rgba(104, 122, 61, .06); }
.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; }
.benefit-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.card-feature { background: #efe6d8; }
.card-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 54px;
  align-items: center;
}
.card-feature h2,
.apartment-detail h2 { margin: 0; color: var(--brown); font-size: clamp(38px, 4.8vw, 64px); line-height: 1.03; }
.card-feature p,
.apartment-detail .lead { color: var(--muted); font-size: 19px; line-height: 1.62; }
.card-feature img,
.feature-photo {
  width: 100%;
  min-height: 430px;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.card-feature img.card-image {
  width: min(420px, 100%);
  min-height: 0;
  height: auto;
  justify-self: center;
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.season-grid.two { grid-template-columns: repeat(2, 1fr); }
.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; }
.footer-partner-logo {
  display: block;
  width: min(168px, 100%);
  height: auto;
  margin-top: 20px;
  opacity: .82;
}
.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 h1 { overflow-wrap: anywhere; }
.subpage-hero p { max-width: 760px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.farm-hero { padding: 72px 0; background: linear-gradient(180deg, #fbf6ed 0%, #f3eadc 100%); }
.farm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: 52px;
  align-items: center;
}
.farm-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.25vw, 56px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
}
.farm-hero p { max-width: 680px; }
.farm-hero-image {
  min-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.farm-hero-image img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.farm-intro-grid,
.farm-family-grid,
.farm-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .95fr);
  gap: 58px;
  align-items: center;
}
.farm-photo-stack { position: relative; min-height: 560px; }
.farm-photo-stack img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.farm-photo-stack .main { width: 82%; height: 520px; }
.farm-photo-stack .small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 270px;
  border: 10px solid var(--paper);
}
.farm-intro h2,
.farm-family-grid h2,
.farm-closing h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(36px, 3.9vw, 54px);
  line-height: 1.03;
}
.farm-apartment-section h2 {
  font-size: clamp(34px, 3.6vw, 50px);
  max-width: 650px;
}
.lead { color: var(--muted); font-size: 19px; line-height: 1.62; }
.farm-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.farm-facts span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--brown);
  font-weight: 800;
}
.farm-animal-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 24px;
}
.farm-image-card,
.farm-note-card {
  overflow: hidden;
  border: 1px solid #e3d5bf;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 14px 38px rgba(42,31,20,.08);
}
.farm-image-card.large { grid-row: span 2; }
.farm-image-card img { width: 100%; height: 270px; object-fit: cover; }
.farm-image-card.large img { height: 480px; }
.farm-image-card div,
.farm-note-card { padding: 26px 28px 30px; }
.farm-image-card h3,
.farm-note-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: 30px;
  line-height: 1.12;
}
.farm-image-card p,
.farm-note-card p,
.farm-closing p {
  color: var(--muted);
  line-height: 1.62;
}
.farm-apartment-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.farm-apartment-links a {
  overflow: hidden;
  border: 1px solid #e3d5bf;
  border-radius: 10px;
  background: #fffaf2;
  box-shadow: 0 14px 38px rgba(42,31,20,.08);
}
.farm-apartment-section .card-feature-inner {
  grid-template-columns: 1fr;
  align-items: start;
}

.farm-apartment-links {
  width: 100%;
}

.farm-apartment-links img { width: 100%; height: 340px; object-fit: cover; object-position: center center; }
.farm-apartment-links span {
  display: block;
  padding: 18px 20px 20px;
  color: var(--brown);
  font-size: 27px;
  line-height: 1.1;
}
.farm-closing {
  background: #fbf6ed;
  border-top: 1px solid var(--line);
}
.farm-closing-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.text-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.text-grid.three { grid-template-columns: repeat(3, 1fr); }
.text-panel { border-top: 1px solid var(--line); padding-top: 24px; }
.text-panel h2, .text-panel h3 { 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; }
.narrow { max-width: 860px; }
.info-tile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid #d8c7ae;
  border-radius: 10px;
  background: #fbf6ed;
  box-shadow: var(--shadow);
}
.info-tile-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(104, 122, 61, .1);
  color: var(--green);
}
.info-tile-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-tile-content { display: grid; gap: 8px; }
.info-tile-title { color: var(--brown); font-size: 30px; line-height: 1.14; }
.info-tile-text { color: var(--muted); line-height: 1.62; }
.info-tile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.legal h2 { color: var(--brown); margin: 40px 0 10px; }
.legal p { color: var(--muted); line-height: 1.75; font-size: 18px; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}
.detail-grid.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.alt-bg { background: #fbf6ed; }
.apartment-detail { scroll-margin-top: calc(var(--header-height) + 20px); }
.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.58;
}
.feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(42,31,20,.08);
}
.gallery-grid img.wide {
  grid-column: 1 / -1;
  height: 310px;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 44px;
  align-items: start;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  background: #fffaf2;
  border: 1px solid #e3d5bf;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(42,31,20,.08);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-weight: 800;
  font-size: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8c7ae;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
.contact-form .full,
.contact-form button,
.form-message { grid-column: 1 / -1; }
.contact-form .hp { position: absolute; left: -9999px; }
.consent-label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}
.contact-form .consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.consent-label a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
}
.form-message {
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}
.form-message.success { background: rgba(104, 122, 61, .12); color: var(--green-dark); }
.form-message.error { background: rgba(130, 55, 35, .12); color: #7b2d1f; }
.contact-card {
  padding: 34px;
  background: #fbf6ed;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.contact-card h2 { margin: 0; color: var(--brown); font-size: 36px; }
.contact-card p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.booking-frame {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.booking-direct-card {
  margin: 0 0 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf2;
  color: var(--muted);
  line-height: 1.6;
}
.booking-direct-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
}
.booking-direct-card .btn { margin-top: 12px; }
.booking-wide {
  width: 100%;
  margin: 0 auto;
}
.booking-section {
  padding-top: 0;
}
.booking-widget-target {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.booking-widget-target dw-app-container {
  display: block;
  min-height: 620px;
}
.booking-fallback {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.booking-fallback a { color: var(--green-dark); font-weight: 800; text-decoration: underline; }

@media (max-width: 1180px) {
  :root { --header-height: 0px; }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    gap: 12px 18px;
    padding: 12px 0;
  }
  .brand {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 20px; line-height: .98; }
  .brand span { margin-top: 4px; font-size: 10px; }
  .menu-toggle { display: inline-flex; }
  .site-menu {
    display: none;
    grid-column: 1 / -1;
    padding: 12px 0 4px;
    border-top: 1px solid var(--line);
  }
  .site-header.is-menu-open .site-menu { display: grid; gap: 12px; }
  .site-header.is-menu-open .menu-toggle i { background: transparent; }
  .site-header.is-menu-open .menu-toggle i:before { top: 0; transform: rotate(45deg); }
  .site-header.is-menu-open .menu-toggle i:after { top: 0; transform: rotate(-45deg); }
  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    font-size: 14px;
  }
  .nav a {
    padding: 10px 12px;
    border: 1px solid rgba(219, 203, 182, .8);
    border-radius: 6px;
    background: rgba(255, 250, 242, .78);
    white-space: normal;
  }
  .nav a:after { display: none; }
  .nav a:hover,
  .nav a:focus-visible,
  .nav a.is-active {
    border-color: rgba(104, 122, 61, .42);
    background: rgba(104, 122, 61, .08);
  }
  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 8px;
  }
  .header-actions .btn {
    width: 100%;
    min-height: 38px;
    padding-inline: 14px;
  }
  .hero { min-height: auto; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: auto; padding: 42px 24px 34px; justify-content: flex-start; }
  .hero-media { min-height: clamp(310px, 46vw, 430px); clip-path: none; }
  .hero-slide[data-season="summer"] { object-position: 50% 46%; }
  .hero-slide[data-season="winter"] { object-position: 45% 48%; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .apartment-grid, .benefit-feature, .benefit-strip, .benefit-feature .benefit-strip, .season-grid, .season-grid.two, .review-inner, .footer-top, .footer-bottom, .text-grid, .text-grid.three, .detail-grid, .detail-grid.reverse, .card-feature-inner, .contact-grid, .farm-hero-grid, .farm-intro-grid, .farm-family-grid, .farm-closing-inner, .farm-animal-grid, .farm-apartment-links { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid #d8c7ae; min-height: auto; }
  .benefit:last-child { border-bottom: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid #d8c7ae; }
  .benefit-image, .card-feature img, .feature-photo { min-height: 300px; max-height: 420px; }
  .farm-hero-image,
  .farm-hero-image img { min-height: 380px; }
  .farm-photo-stack { min-height: auto; display: grid; gap: 18px; }
  .farm-photo-stack .main,
  .farm-photo-stack .small {
    position: static;
    width: 100%;
    height: 300px;
    border: 0;
  }
  .farm-image-card.large { grid-row: auto; }
  .farm-image-card.large img,
  .farm-image-card img { height: 320px; }
  .farm-closing-inner { align-items: start; }
  .footer-cta:after { inset: 0; opacity: .22; }
  .review-image { height: 340px; }
  .contact-form { grid-template-columns: 1fr; }
  .booking-frame { min-height: 680px; }
  .booking-wide { width: 100%; }
  .booking-widget-target,
  .booking-widget-target dw-app-container { min-height: 620px; }
}

@media (max-width: 560px) {
  .wrap { width: min(1180px, calc(100% - 28px)); }
  .brand {
    width: 100%;
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .brand strong {
    font-size: 19px;
    line-height: .98;
    max-width: 300px;
  }
  .brand span { font-size: 9px; margin-top: 3px; }
  .brand-mark { width: 34px; height: 34px; }
  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 7px 14px;
    font-size: 13px;
  }
  .nav a { white-space: normal; }
  .header-actions { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
  .header-actions .btn { width: 100%; min-height: 36px; font-size: 12px; }
  .hero-copy { padding: 32px 24px 30px; }
  .hero-mountain-line { right: 0; bottom: -8px; width: 100%; height: 54px; opacity: .32; }
  .hero h1 { font-size: 34px; line-height: 1.06; max-width: 342px; }
  .hero .lead { font-size: 16px; max-width: 342px; margin-top: 16px; }
  .hero .actions { flex-direction: column; align-items: stretch; max-width: 342px; margin-top: 22px; }
  .hero .btn { width: 100%; }
  .hero-media { min-height: 300px; }
  .subpage-hero { padding: 64px 0 54px; }
  .subpage-hero h1 { font-size: 38px; line-height: 1.05; max-width: 342px; }
  .subpage-hero p { font-size: 17px; max-width: 342px; }
  .subpage-hero .actions { display: grid; gap: 12px; max-width: 342px; }
  .subpage-hero .btn { width: 100%; }
  .card-feature h2,
  .apartment-detail h2 {
    font-size: 34px;
    line-height: 1.06;
    max-width: 342px;
    overflow-wrap: anywhere;
  }
  .card-feature p,
  .card-feature .feature-list,
  .detail-grid .lead,
  .detail-grid .feature-list {
    max-width: 342px;
  }
  .card-feature .actions,
  .detail-grid .actions {
    display: grid;
    gap: 12px;
    max-width: 342px;
  }
  .info-tile {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px;
  }
  .info-tile-action {
    width: 100%;
  }
  .card-feature .btn,
  .detail-grid .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .farm-hero { padding: 54px 0; }
  .farm-hero-image,
  .farm-hero-image img { min-height: 300px; }
  .farm-intro h2,
  .farm-family-grid h2,
  .farm-closing h2 { font-size: 34px; max-width: 342px; }
  .lead { font-size: 17px; max-width: 342px; }
  .farm-facts { grid-template-columns: 1fr; max-width: 342px; }
  .apartment-body { padding: 22px; }
  .apartment h3,
  .apartment h2 { font-size: 26px; }
  .apartment-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    font-size: 13px;
  }
  .apartment-meta span {
    padding: 0;
    border-right: 0;
  }
  .apartment .actions {
    display: grid;
    gap: 10px;
  }
  .apartment .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .farm-photo-stack {
    gap: 14px;
  }
  .farm-photo-stack .main,
  .farm-photo-stack .small,
  .farm-image-card.large img,
  .farm-image-card img,
  .farm-apartment-links img { height: 230px; }
  .farm-image-card div,
  .farm-note-card { padding: 24px; }
  .farm-image-card h3,
  .farm-note-card h3,
  .farm-apartment-links span { font-size: 25px; }
  .farm-closing .actions { display: grid; gap: 12px; max-width: 342px; }
  .farm-closing .btn { width: 100%; }
  .section-title h2 { font-size: 32px; max-width: 342px; margin-inline: auto; overflow-wrap: anywhere; }
  .section-title p { max-width: 342px; }
  .section { padding: 64px 0; }
  .apartment img { height: 250px; }
  .season-card { min-height: 310px; }
  .season-content { left: 22px; right: 22px; bottom: 22px; }
  .season-content h3 { font-size: 25px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img,
  .gallery-grid img.wide { grid-column: auto; height: 240px; }
  .contact-form, .contact-card { padding: 24px; }
  .booking-frame { min-height: 520px; }
  .booking-wide { width: 100%; }
  .booking-widget-target,
  .booking-widget-target dw-app-container { min-height: 520px; }
  .booking-direct-card { padding: 20px; }
  .booking-direct-card strong { font-size: 22px; }
  .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%; }
}

@media (max-width: 520px) {
  .wrap { width: min(100%, calc(100% - 32px)); }
  .header-inner {
    gap: 10px;
    padding: 10px 0;
  }
  .brand {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    max-width: calc(100vw - 122px);
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .brand strong {
    font-size: 17px;
    line-height: .96;
  }
  .brand span {
    margin-top: 3px;
    font-size: 8.5px;
    letter-spacing: .13em;
  }
  .menu-toggle {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }
}
