:root {
  --paper: #fbfaf6;
  --surface: #ffffff;
  --ink: #16221f;
  --muted: #5f6a66;
  --forest: #155e4c;
  --forest-dark: #0f3f36;
  --alpine: #2f6f8f;
  --accent: #8a4a08;
  --accent-dark: #6e3600;
  --accent-soft: #f7ead8;
  --line: #d9e0dc;
  --shadow: 0 18px 48px rgba(12, 36, 31, 0.14);
  --radius: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(251, 250, 246, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  text-decoration: none;
  min-width: 186px;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  max-height: 18px !important;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest-dark);
  background: var(--accent-soft);
}

.header-call {
  justify-self: end;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle-lines {
  position: relative;
  transition: background-color 180ms ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  inset: 0;
  margin: 0;
  transition: transform 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(740px, 72svh);
  overflow: hidden;
  color: #fff;
  background: var(--forest-dark);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 28, 24, 0.76), rgba(9, 28, 24, 0.34) 52%, rgba(9, 28, 24, 0.12));
  content: "";
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: min(740px, 72svh);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 78px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  color: #fff;
  text-decoration: none;
}

.hero-rating-stars {
  grid-column: 1 / -1;
  color: var(--accent);
  line-height: 1;
}

.hero-rating strong {
  font-size: 1.1rem;
}

.hero-rating span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero-rating:hover span:last-child,
.hero-rating:focus-visible span:last-child {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  background: var(--forest);
}

.button.primary:hover,
.button.primary:focus-visible,
.header-call:hover,
.header-call:focus-visible,
.button.secondary:hover,
.button.secondary:focus-visible {
  color: #fff;
  background: var(--accent-dark);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.quick-facts {
  width: min(var(--max), calc(100% - 32px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(12, 36, 31, 0.12);
}

.fact {
  position: relative;
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.fact::before {
  position: absolute;
  top: 0;
  left: 22px;
  width: 38px;
  height: 3px;
  background: var(--accent);
  content: "";
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.fact strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.25;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 96px;
}

.section-heading,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.split h2,
.service-band h2,
.activity h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p,
.activity-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split p:not(.eyebrow):not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.split h2 + p,
.activity-content h2 + p {
  margin-top: 20px;
}

.intro {
  padding-top: 88px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip img {
  max-height: 76px;
  object-fit: contain;
}

.trust-strip p {
  color: var(--ink);
}

.trust-strip a {
  color: var(--accent-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.reviews {
  width: 100%;
  padding: 90px max(16px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: var(--forest-dark);
  scroll-margin-top: 92px;
}

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: center;
}

.reviews-summary h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1.02;
}

.reviews-summary > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.rating-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.rating-overview a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 16px 14px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.rating-overview a:hover,
.rating-overview a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
}

.rating-overview strong {
  color: var(--accent);
  font-size: 1.65rem;
  line-height: 1;
}

.rating-overview span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.rating-date {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.54);
}

.review-slider {
  min-width: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(4, 19, 15, 0.28);
}

.review-slider-head {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-bottom: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-controls {
  display: grid;
  grid-template-columns: 40px minmax(52px, auto) 40px;
  gap: 8px;
  align-items: center;
}

.review-control {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--forest-dark);
  cursor: pointer;
  background: #f3f6f4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.2rem;
  line-height: 1;
}

.review-control:hover,
.review-control:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.review-counter {
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.review-viewport {
  height: 300px;
  overflow: hidden;
}

.review-track {
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-slide {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  height: 300px;
  padding: 26px 4px 4px;
  color: var(--ink);
}

.review-platform {
  width: fit-content;
  padding: 5px 8px;
  color: var(--forest-dark);
  background: #edf4f1;
  border-radius: 4px;
  font-size: 0.74rem;
  font-weight: 800;
}

.review-slide blockquote {
  margin: 0;
}

.review-slide blockquote > p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 680;
  line-height: 1.28;
}

.review-slide blockquote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  align-items: baseline;
  margin-top: 18px;
}

.review-slide blockquote footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-slide > a {
  width: fit-content;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.apartments {
  padding-top: 30px;
}

.apartment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 42px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(12, 36, 31, 0.08);
}

.apartment-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.apartment-media picture,
.activity-image picture,
.gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  border: 0;
  text-align: inherit;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.025);
}

.apartment-media img,
.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.apartment-body {
  align-self: center;
}

.apartment-body h3,
.price-card h3,
.service-grid h3,
.contact-card h3,
.directions h3,
.legal-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.apartment-body p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  content: "";
}

.gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery button {
  aspect-ratio: 4 / 3;
  min-height: 132px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  background: #edf2f0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.04);
}

.service-band {
  width: 100%;
  max-width: none;
  padding: 86px max(16px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: var(--forest-dark);
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.service-band .section-kicker {
  color: #ffd69a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.service-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.prices {
  padding-bottom: 70px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.price-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th:last-child,
td:last-child {
  width: 92px;
  text-align: right;
  font-weight: 800;
}

thead th {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.price-info {
  margin-top: 24px;
  padding: 24px;
  color: var(--muted);
  background: var(--accent-soft);
  border: 1px solid rgba(237, 176, 89, 0.55);
  border-radius: var(--radius);
}

.price-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.price-info ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.price-date {
  margin: 16px 0 0;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.activity {
  width: min(var(--max), calc(100% - 32px));
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  padding: 92px 0;
  background: transparent;
}

.activity-image {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.activity-content {
  align-self: center;
  max-width: none;
  padding: 0;
}

.aktivcard {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  background: #eef6f2;
  border: 1px solid #cfe0d9;
  border-radius: var(--radius);
}

.aktivcard img {
  border-radius: var(--radius);
}

.aktivcard p {
  margin: 0;
}

.activity-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.activity-links a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.activity-links a:hover,
.activity-links a:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(12, 36, 31, 0.08);
}

.activity-links strong {
  font-size: 1.08rem;
}

.activity-links span {
  color: var(--muted);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.city-list a {
  padding: 8px 11px;
  color: var(--forest-dark);
  background: #f1f5f3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.92rem;
  text-decoration-color: rgba(237, 176, 89, 0.9);
  text-underline-offset: 3px;
}

.contact {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  margin-top: 34px;
}

.contact-form,
.contact-card,
.directions,
.legal-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form {
  grid-row: span 2;
  display: grid;
  gap: 16px;
}

.form-prefill-note {
  margin: 0;
  padding: 14px 16px;
  color: var(--forest-dark);
  background: #edf6f2;
  border: 1px solid #b8d5ca;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form > *,
.form-row > * {
  min-width: 0;
}

.contact-form noscript p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfcbc6;
  border-radius: var(--radius);
}

/* iOS 26 adds date-input padding to the declared width (WebKit 301648). */
@supports (-webkit-touch-callout: none) {
  input[type="date"] {
    width: calc(100% - 24px);
  }
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--forest-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-card p,
.directions p,
.legal-grid p {
  margin: 0 0 12px;
  color: var(--muted);
}

.contact-card p:last-child,
.directions p:last-child,
.legal-grid p:last-child {
  margin-bottom: 0;
}

.directions .button {
  margin-top: 12px;
}

.contact-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

.subpage {
  width: min(var(--max), calc(100% - 32px));
  min-height: 62svh;
  margin: 0 auto;
  padding: 84px 0 96px;
}

.legal-page h1 {
  max-width: 780px;
  margin: 0 0 34px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-content article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--muted);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

.legal {
  padding-top: 34px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 40px;
  padding: 42px max(16px, calc((100% - var(--max)) / 2));
  color: #fff;
  background: #101b18;
  border-top: 6px solid var(--accent);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.site-footer p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: rgba(237, 176, 89, 0.7);
  text-underline-offset: 4px;
}

.lightbox {
  width: min(960px, calc(100vw - 32px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(8, 17, 15, 0.82);
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 80svh;
  margin: 0 auto;
  object-fit: contain;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.lightbox p {
  margin: 10px 48px 0 0;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 1.6rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  color: #fff;
  cursor: pointer;
  background: rgba(16, 27, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -64px;
}

.lightbox-next {
  right: -64px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--accent-dark);
}

.lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto minmax(130px, 1fr);
    gap: 14px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .quick-facts,
  .price-grid,
  .price-info ul,
  .legal-grid,
  .legal-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .apartment,
  .service-band,
  .activity,
  .contact-grid,
  .reviews-inner,
  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }

  .reviews-inner {
    gap: 42px;
  }

  .activity-content {
    max-width: none;
    padding: 0;
  }

  .activity-image {
    min-height: 420px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    display: flex;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    font-weight: 800;
  }

  .hero,
  .hero-content {
    min-height: 68svh;
  }

  .hero::after {
    background: rgba(9, 28, 24, 0.62);
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .reviews {
    padding: 64px 24px;
  }

  .rating-overview {
    grid-template-columns: 1fr;
  }

  .rating-overview a {
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
  }

  .review-slider {
    padding: 16px;
  }

  .review-viewport,
  .review-slide {
    height: 330px;
  }

  .trust-strip,
  .aktivcard,
  .site-footer,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    display: none;
  }

  .subpage {
    padding: 60px 0 72px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .trust-strip img,
  .aktivcard img {
    max-width: 128px;
  }

  .service-band {
    padding-inline: 24px;
  }

  .apartment {
    padding: 16px;
  }

  .apartment-media {
    min-height: 300px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid,
  .price-info ul,
  .legal-grid,
  .activity-links,
  .form-row {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    top: auto;
    bottom: -58px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .lightbox p {
    margin-right: 0;
    padding-bottom: 54px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 66px !important;
    max-width: 66px !important;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-rating {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .reviews {
    padding-inline: 16px;
  }

  .review-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-viewport,
  .review-slide {
    height: 360px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  th,
  td {
    font-size: 0.9rem;
  }

  th:last-child,
  td:last-child {
    width: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ========================================================================== */
/* SEO-Mehrseitenversion                                                      */
/* ========================================================================== */

body {
  text-wrap: pretty;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.header-inner {
  width: min(1420px, calc(100% - 32px));
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  gap: 18px;
}

.site-nav {
  white-space: nowrap;
}

.site-nav a {
  padding-inline: 8px;
  font-size: 0.86rem;
}

.site-nav a[aria-current="page"] {
  color: var(--forest-dark);
  background: var(--accent-soft);
}

.header-inner .brand-logo {
  width: 92px !important;
  max-width: 92px !important;
  max-height: 18px !important;
}

.header-inner > .brand,
.header-inner > .nav-toggle {
  flex-shrink: 0;
}

.header-inner > .brand strong {
  white-space: nowrap;
}

.header-call,
.button.primary {
  color: #fff;
  background: var(--accent);
}

.header-call:hover,
.header-call:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: var(--forest-dark);
}

.hero .eyebrow,
.hero-rating-stars,
.cta-band .section-kicker,
.site-footer .section-kicker {
  color: #ffd69a;
}

.home-hero h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 6.8vw, 6.2rem);
  line-height: 0.98;
}

.home-hero .hero-subtitle {
  max-width: 760px;
}

.dtv-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 20px 0 0;
  padding: 9px 12px;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(8, 30, 25, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.dtv-rating img {
  position: static;
  inset: auto;
  display: block;
  width: 92px;
  height: auto;
  max-width: 92px;
  object-fit: contain;
  flex: 0 0 auto;
}

.page-hero-copy .dtv-rating {
  margin-top: 18px;
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(8, 30, 25, 0.08);
}

.split-intro {
  align-items: start;
}

.split-intro > div > p + p {
  margin-top: 16px;
}

.trust-panel {
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  background: var(--forest-dark);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-label {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: 1.1rem !important;
  font-weight: 850;
}

.check-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.check-list li::before {
  color: #ffd69a;
}

.feature-list {
  display: grid;
  gap: 9px;
  color: var(--muted);
}

.feature-list li::before {
  color: var(--forest);
}

.feature-list.compact {
  margin-top: 18px;
}

.apartment-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.apartment-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(12, 36, 31, 0.09);
}

.apartment-card-media {
  display: block;
  height: 420px;
  overflow: hidden;
  background: #dfe8e4;
}

.apartment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.apartment-card-media:hover img,
.apartment-card-media:focus-visible img {
  transform: scale(1.025);
}

.apartment-card-body {
  padding: clamp(24px, 4vw, 38px);
}

.apartment-card-body h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.apartment-card-body h3 a {
  text-decoration: none;
}

.apartment-card-body h3 a:hover,
.apartment-card-body h3 a:focus-visible {
  color: var(--forest);
}

.apartment-card-body > p:not(.eyebrow) {
  color: var(--muted);
}

.card-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.button-row {
  margin-top: 26px;
}

.benefits {
  border-top: 1px solid var(--line);
}

.fact-grid,
.review-grid,
.content-card-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.info-card,
.review-card,
.content-card,
.comparison-card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.info-card h3,
.review-card h3,
.content-card h3,
.comparison-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.info-card p,
.review-card p,
.content-card p,
.comparison-card p {
  color: var(--muted);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.reviews-simple {
  border-top: 1px solid var(--line);
}

.review-score {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 16px;
}

.review-score strong {
  color: var(--forest-dark);
  font-size: 2.5rem;
  line-height: 1;
}

.review-score span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 24px auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
  background: var(--forest-dark);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.07;
}

.cta-band p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.66);
}

.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus-visible {
  color: var(--forest-dark);
  background: #fff;
  border-color: #fff;
}

.cta-band .button.primary:hover,
.cta-band .button.primary:focus-visible {
  color: var(--forest-dark);
  background: #ffd69a;
  border-color: #ffd69a;
}

.footer-brand {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.site-footer .update-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
}

/* General content pages */

.breadcrumb {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #81908a;
  content: "/";
}

.breadcrumb a {
  color: var(--forest-dark);
  text-underline-offset: 3px;
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 40px 0 72px;
}

.page-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 5.6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.page-hero-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  background: #dfe8e4;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.page-hero-media picture,
.page-hero-media img {
  flex: 1;
  width: 100%;
  height: 100%;
}

.page-hero-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.88rem;
}

.page-hero-media img {
  min-height: 520px;
  object-fit: cover;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero .button.ghost {
  color: var(--forest-dark);
  border-color: var(--forest-dark);
  background: transparent;
}

.page-hero .button.ghost:hover,
.page-hero .button.ghost:focus-visible {
  color: #fff;
  background: var(--forest-dark);
}

.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.prose {
  max-width: 780px;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3 {
  margin-top: 1.7em;
  line-height: 1.15;
}

.prose a:not(.button) {
  color: var(--accent-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.split.align-start,
.section-heading.align-start {
  align-items: start;
}

.media-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.media-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.media-card figcaption,
.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gallery-grid button,
.gallery-grid a {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-decoration: none;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img,
.gallery-grid a:hover img,
.gallery-grid a:focus-visible img {
  transform: scale(1.025);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.fact-strip > * {
  padding: 22px;
  background: var(--surface);
}

.fact-strip dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-strip dd {
  margin: 5px 0 0;
  font-size: 1.12rem;
  font-weight: 850;
}

.notice,
.source-note,
.privacy-note {
  padding: 18px 20px;
  color: var(--ink);
  background: #eef6f2;
  border-left: 4px solid var(--forest);
  border-radius: 0 10px 10px 0;
}

.notice p,
.source-note p,
.privacy-note p {
  margin: 0;
}

.source-note {
  background: var(--accent-soft);
  border-left-color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  padding: 0 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-list summary {
  padding: 18px 34px 18px 0;
  cursor: pointer;
  font-weight: 850;
}

.faq-list details > *:not(summary) {
  color: var(--muted);
}

.faq-list details > p:last-child {
  margin-bottom: 20px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.table-wrap table {
  min-width: 620px;
  margin: 0;
}

.form-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.form-fallback {
  margin-top: 24px;
  padding: 24px;
  background: #eef6f2;
  border: 1px solid #cbded5;
  border-radius: 12px;
}

.form-fallback h3 {
  margin-top: 0;
}

.form-fallback p:last-child {
  margin-bottom: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.copy-button {
  color: var(--forest-dark);
  background: transparent;
  border-color: var(--forest-dark);
}

.copy-button:hover,
.copy-button:focus-visible {
  color: #fff;
  background: var(--forest-dark);
}

.contact-form [aria-invalid="true"] {
  border-color: #a22b1f;
  box-shadow: 0 0 0 2px rgba(162, 43, 31, 0.14);
}

.update-note,
.content-date,
.content-status {
  color: var(--muted);
  font-size: 0.88rem;
}

.content-status {
  width: min(var(--max), calc(100% - 32px));
  margin: -42px auto 60px;
  text-align: right;
}

.legal-page .breadcrumb {
  width: 100%;
}

.error-page {
  min-height: 68svh;
  display: grid;
  place-items: center;
  padding: 80px 16px;
}

.error-card {
  max-width: 760px;
  padding: clamp(30px, 6vw, 68px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.error-code {
  margin: 0;
  color: var(--forest);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
}

/* Desktop typography and section rhythm */

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.section {
  padding-block: clamp(64px, 6vw, 84px);
}

main > .section + .section,
main > .cta-band + .section {
  padding-top: 0;
}

main > .page-hero + .section {
  padding-top: 0;
}

.split {
  align-items: start;
}

.section-heading:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.section-heading:has(> :only-child) > * {
  width: 100%;
  max-width: 820px;
}

.split > :where(div, article) > .section-heading {
  grid-template-columns: minmax(0, 1fr);
}

:where(.split > div > p:not(.eyebrow, .section-kicker),
       .split > article > p:not(.eyebrow, .section-kicker)) {
  margin: 0;
}

.split > :where(div, article) > h2 + p,
.split > :where(div, article) > .section-heading + :where(p, ol, ul) {
  margin-top: 20px;
}

.split > :where(div, article) > p + p {
  margin-top: 16px;
}

.split > :where(div, article) > p + :where(.button, .button-row) {
  margin-top: 24px;
}

.section-heading + .split {
  margin-top: clamp(30px, 3vw, 38px);
}

.section-heading + .feature-list {
  margin-top: 26px;
}

.section > .split + .info-card {
  margin-top: 24px;
}

.page-hero {
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
  gap: clamp(36px, 4vw, 56px);
  padding-block: 36px 64px;
}

.page-hero-copy h1 {
  overflow-wrap: normal;
  font-size: clamp(2.65rem, 4.4vw, 4.5rem);
  line-height: 1.02;
}

.section-heading h2,
.split h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.08;
}

.cta-band h2 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3vw, 3rem);
  overflow-wrap: normal;
}

:where(.section-heading > p,
       .split > div > p:not(.eyebrow, .section-kicker),
       .split > article > p:not(.eyebrow, .section-kicker)) {
  max-width: 68ch;
}

.page-hero-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
}

.page-hero-copy > :where(.hero-actions, .button-row) {
  margin-top: 28px;
}

.cta-band {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  gap: clamp(32px, 4vw, 48px);
}

.cta-band > :where(.cta-actions, .button-row, .hero-actions) {
  display: grid;
  width: 100%;
  max-width: 340px;
  margin-top: 0;
  justify-self: end;
}

.cta-band > :where(.cta-actions, .button-row, .hero-actions) .button {
  width: 100%;
}

.info-card > :first-child {
  margin-top: 0;
}

.info-card > :last-child {
  margin-bottom: 0;
}

.info-card > .feature-list:not(:first-child) {
  margin-top: 16px;
}

.info-card > p + a:not(.button) {
  display: inline-block;
  margin-top: 10px;
}

.info-card a:not(.button) {
  color: var(--accent-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

figure.info-card {
  margin: 0;
}

figure.info-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.fact-grid-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-grid-two,
.gallery-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fact-grid > div:not([class]) {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 100%;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.fact-grid > div:not([class]) strong,
a.info-card > strong {
  display: block;
  color: var(--forest-dark);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.fact-grid > div:not([class]) span,
a.info-card > span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

a.info-card {
  display: grid;
  align-content: start;
  gap: 8px;
  text-decoration: none;
}

a.info-card:hover,
a.info-card:focus-visible {
  border-color: var(--forest);
  box-shadow: 0 12px 30px rgba(12, 36, 31, 0.1);
}

.fact-grid > article.info-card {
  display: flex;
  flex-direction: column;
}

.fact-grid > article.info-card > a:last-child {
  margin-top: auto;
  padding-top: 18px;
}

.card-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 18px;
}

.card-link-group a {
  display: inline-block;
}

@media (max-width: 1180px) {
  .header-inner {
    display: flex;
    min-height: 68px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 800;
  }

  .lightbox-nav {
    top: auto;
    bottom: -58px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .lightbox p {
    margin-right: 0;
    padding-bottom: 54px;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .cta-band,
  .apartment-card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 20px;
  }

  .fact-grid-stats,
  .fact-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band > :where(.cta-actions, .button-row, .hero-actions) {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 390px;
  }

  .fact-grid,
  .review-grid,
  .content-card-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apartment-card-media {
    height: 360px;
  }
}

@media (max-width: 620px) {
  .header-inner .brand-logo {
    width: 72px !important;
    max-width: 72px !important;
  }

  .dtv-rating {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .home-hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 3.4rem);
    line-height: 1.02;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 300px;
  }

  .fact-grid,
  .review-grid,
  .content-card-grid,
  .comparison-grid,
  .fact-strip {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 180px;
  }

  .gallery-grid-two {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-bottom: 64px;
  }

  .cta-actions,
  .cta-actions .button,
  .form-actions,
  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
