:root {
  --paper: #fbfaf6;
  --surface: #ffffff;
  --ink: #16221f;
  --muted: #5f6a66;
  --forest: #155e4c;
  --forest-dark: #0f3f36;
  --alpine: #2f6f8f;
  --accent: #edb059;
  --accent-dark: #b46a16;
  --accent-soft: #fff1dc;
  --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::before {
  transform: translateY(-7px);
}

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

.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,
.split p,
.activity-content > p {
  margin: 0;
  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: var(--accent);
}

.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;
}

.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 rgba(237, 176, 89, 0.35);
  outline-offset: 2px;
}

.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;
  }
}
