:root {
  --ink: #2e3741;
  --headline: #526057;
  --headline-deep: #465349;
  --muted: #62706a;
  --line: #d9ded5;
  --paper: #fffdf8;
  --soft: #f4f0e8;
  --sage-light: #819468;
  --sage: #607556;
  --sage-dark: #394d36;
  --terra: #de632a;
  --terra-soft: #d66931;
  --olive-gold: #b2a675;
  --deck-blue: #373b4d;
  --sea: #2b7180;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(46, 55, 65, 0.14);
  --max: 1180px;
  --font-serif: Georgia, Palatino, "Book Antiqua", "Palatino Linotype", serif;
  --font-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
}

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

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  animation: site-intro-out 980ms ease-out forwards;
}

.site-intro.is-skipped {
  display: none;
}

.site-intro-logo {
  width: min(260px, 48vw);
  height: auto;
  opacity: 0;
  transform: scale(0.94);
  animation: site-intro-logo-desktop 920ms cubic-bezier(0.22, 0.78, 0.3, 1) forwards;
}

@keyframes site-intro-logo-desktop {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  38% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1.025);
  }
  100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

@keyframes site-intro-out {
  0%,
  82% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes site-intro-logo-mobile {
  0% {
    opacity: 0;
    transform: scale(0.68);
  }
  32% {
    opacity: 1;
    transform: scale(0.9);
  }
  55% {
    opacity: 1;
    transform: scale(1);
  }
  82% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro {
    display: none;
  }
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: var(--font-sans);
  font-size: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    ". brand phone"
    "nav nav nav";
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 184px;
  padding: 1.7rem clamp(1rem, 3vw, 2.5rem) 1.45rem;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(57, 77, 54, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  grid-area: brand;
  justify-self: center;
}

.brand img {
  width: 189px;
  height: auto;
}

.site-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.7rem);
  color: var(--sage-dark);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

.site-nav a,
.footer-actions a,
.contact-links a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--terra);
}

.header-tools {
  grid-area: phone;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem;
  border: 1px solid rgba(96, 117, 86, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.language-switch a {
  min-width: 2.1rem;
  border-radius: 999px;
  padding: 0.42rem 0.5rem;
  color: var(--sage-dark);
  text-align: center;
  text-decoration: none;
}

.language-switch a.is-active {
  color: var(--white);
  background: var(--sage);
}

.language-switch a:not(.is-active):hover,
.language-switch a:not(.is-active):focus-visible {
  background: rgba(96, 117, 86, 0.1);
}

.header-phone {
  color: var(--white);
  background: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(96, 117, 86, 0.24);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(46, 55, 65, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--sage-dark);
  margin: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--white);
  border-color: rgba(96, 117, 86, 0.4);
}

.site-header.nav-open .menu-toggle span:first-of-type {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-of-type(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-anchor {
  scroll-margin-top: 156px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 178px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  background: var(--sage-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  --ken-x: -1.2%;
  --ken-y: -0.8%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translate3d(var(--ken-x), var(--ken-y), 0) scale(1.12);
  transition: opacity 950ms ease;
}

.hero-media img:nth-child(2) {
  --ken-x: 1.35%;
  --ken-y: -0.9%;
  transform-origin: 55% 42%;
}

.hero-media img:nth-child(3) {
  --ken-x: -1%;
  --ken-y: 1.15%;
  transform-origin: 46% 58%;
}

.hero-media img:nth-child(4) {
  --ken-x: 1.2%;
  --ken-y: 0.8%;
  transform-origin: 58% 52%;
}

.hero-media img:nth-child(5) {
  --ken-x: -1.35%;
  --ken-y: 0.7%;
  transform-origin: 42% 48%;
}

.hero-media img.active {
  opacity: 1;
  animation: heroKenBurns 7.4s ease-out forwards;
}

.hero-media img.is-leaving {
  opacity: 0;
  animation: heroKenBurns 7.4s ease-out forwards;
}

.slideshow-toggle {
  position: absolute;
  right: clamp(0.85rem, 2vw, 1.35rem);
  bottom: clamp(0.85rem, 2vw, 1.35rem);
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--white);
  background: rgba(32, 42, 36, 0.46);
  box-shadow: 0 10px 24px rgba(16, 20, 19, 0.18);
  cursor: pointer;
}

.slideshow-toggle span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.slideshow-toggle:hover,
.slideshow-toggle:focus-visible {
  background: rgba(32, 42, 36, 0.72);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

@keyframes heroKenBurns {
  from {
    transform: translate3d(var(--ken-x), var(--ken-y), 0) scale(1.12);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-content {
  position: relative;
  grid-column: 2;
  justify-self: center;
  width: min(465px, calc(50vw - 0.5rem));
  margin: clamp(1.5rem, 5vh, 3rem) 0;
  padding: clamp(1.55rem, 4.2vw, 3.1rem) clamp(1.5rem, 4.5vw, 3.55rem) clamp(2rem, 4.5vw, 2.95rem);
  color: var(--white);
  text-align: left;
  text-shadow: none;
  background: rgba(129, 148, 104, 0.94);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(46, 55, 65, 0.28);
  transform: translateY(10%);
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.longstay-copy h2,
.contact-copy h2,
.site-footer h2 {
  font-family: var(--font-serif);
  line-height: 1.13;
  font-weight: 400;
  margin: 0;
}

.hero h1 {
  color: rgba(46, 55, 65, 0.82);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-style: italic;
  margin-top: 0.65rem;
}

.hero p:not(.eyebrow) {
  max-width: none;
  margin: 0.95rem 0 0;
  font-size: 1rem;
  font-style: normal;
}

.hero .eyebrow {
  color: rgba(46, 55, 65, 0.78);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hero-actions,
.section-actions,
.longstay-actions,
.footer-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.section-actions {
  justify-content: center;
  margin-top: 2.4rem;
}

.longstay-actions {
  margin-top: 1.4rem;
}

.longstay-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-actions .button {
  flex: 1 1 0;
  min-width: 0;
  padding-inline: 0.85rem;
  white-space: nowrap;
}

.hero .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .button.primary {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-family: var(--font-serif);
  font-style: italic;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.button.compact {
  color: var(--sage-dark);
  background: var(--white);
}

.external-link-icon {
  position: relative;
  flex: 0 0 0.82rem;
  width: 0.82rem;
  height: 0.82rem;
  margin-left: 0.5rem;
  color: currentColor;
  transition: transform 180ms ease;
}

.external-link-icon::before {
  content: "";
  position: absolute;
  top: 0.04rem;
  right: 0.02rem;
  width: 0.48rem;
  height: 0.48rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.external-link-icon::after {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0.05rem;
  width: 0.7rem;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.button:hover .external-link-icon,
.button:focus-visible .external-link-icon {
  transform: translate(2px, -2px);
}

.apartment-find-dot {
  flex: 0 0 auto;
  width: clamp(7.4rem, 12vw, 9rem);
  aspect-ratio: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-self: center;
  padding: 0.85rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 16px 30px rgba(57, 77, 54, 0.22);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-style: italic;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
}

.apartment-find-dot strong,
.apartment-find-dot span {
  display: block;
}

.apartment-find-dot strong {
  margin: 0;
  font-size: 1em;
  font-weight: 400;
}

.apartment-find-dot:hover,
.apartment-find-dot:focus-visible {
  background: var(--sage-dark);
  outline: 2px solid rgba(57, 77, 54, 0.24);
  outline-offset: 4px;
}

.section,
.intro-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 680ms ease var(--reveal-delay, 0ms),
    transform 680ms ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-band {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.intro-grid > p {
  font-size: 1.08rem;
}

.intro-grid h2,
.section-heading h2,
.longstay-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.intro-grid h2,
.home-gallery .section-heading h2,
.apartments .section-heading h2,
.good-to-know .section-heading h2,
.bike .section-heading h2,
.recommendations .section-heading h2,
.contact-copy h2 {
  color: var(--headline);
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.text-link {
  color: var(--sea);
  font-weight: 700;
  white-space: nowrap;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 1rem;
}

.photo-mosaic figure,
.host-grid figure {
  margin: 0;
}

.photo-mosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  isolation: isolate;
}

.photo-mosaic figure:first-child {
  grid-row: span 2;
}

.photo-mosaic figure:nth-child(4) {
  grid-column: span 2;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
  transition: opacity 720ms ease, transform 1300ms ease;
}

.photo-mosaic figure.is-switching img {
  opacity: 0;
  transform: scale(1.045);
}

.photo-mosaic figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  max-width: calc(100% - 1.6rem);
  color: var(--white);
  background: rgba(46, 55, 65, 0.72);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.88rem;
  transition: opacity 420ms ease, transform 420ms ease;
}

.photo-mosaic figure.is-switching figcaption {
  opacity: 0;
  transform: translateY(0.25rem);
}

.reviews {
  background: var(--sage-dark);
  color: var(--white);
}

.reviews .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
}

.guestbook-heading {
  position: sticky;
  top: 168px;
}

.guestbook-heading .eyebrow {
  color: #f1c58f;
}

.guestbook-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
}

.guestbook-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  grid-column: 2;
}

.quote-card {
  display: grid;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: clamp(1rem, 2.4vw, 1.45rem);
  background: rgba(255, 255, 255, 0.08);
}

.quote-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
}

.quote-card p {
  margin: 0;
}

.apartments {
  background: var(--soft);
}

.booking-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 2rem;
}

.booking-guide article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.25rem 0.75rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.booking-guide span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  padding-top: 0.04rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.booking-guide h3 {
  margin: 0;
  color: var(--headline-deep);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 400;
}

.booking-guide p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.apartment-list {
  display: grid;
  gap: 1.35rem;
}

.apartment-card {
  --apt-bg: var(--sage-light);
  --apt-accent: var(--sage);
  --apt-text: var(--white);
  --apt-muted: rgba(255, 255, 255, 0.82);
  --apt-soft: rgba(255, 255, 255, 0.13);
  --apt-border: rgba(255, 255, 255, 0.28);
  --apt-shadow: rgba(46, 55, 65, 0.18);
  --apt-button-text: var(--ink);
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--apt-bg);
  box-shadow: 0 16px 42px var(--apt-shadow);
}

.apartment-card--oberdeck {
  --apt-bg: var(--sage-light);
  --apt-accent: var(--sage);
}

.apartment-card--promenadendeck {
  --apt-bg: var(--olive-gold);
  --apt-accent: #8e824c;
  --apt-text: var(--ink);
  --apt-muted: rgba(46, 55, 65, 0.78);
  --apt-soft: rgba(255, 255, 255, 0.24);
  --apt-border: rgba(46, 55, 65, 0.18);
  --apt-shadow: rgba(101, 92, 47, 0.22);
}

.apartment-card--promenadendeck .apartment-content h3 {
  color: var(--headline-deep);
}

.apartment-card--bootsdeck {
  --apt-bg: var(--terra-soft);
  --apt-accent: #94421c;
  --apt-shadow: rgba(148, 66, 28, 0.24);
}

.apartment-card--kajute,
.apartment-card--studio {
  --apt-bg: var(--deck-blue);
  --apt-accent: var(--ink);
  --apt-shadow: rgba(46, 55, 65, 0.24);
}

.apartment-card--gartenapartment {
  --apt-bg: var(--sage);
  --apt-accent: var(--sage-dark);
  --apt-shadow: rgba(57, 77, 54, 0.24);
}

.apartment-main-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--apt-accent);
}

.apartment-main-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 1600ms ease;
}

.apartment-main-image img.active {
  opacity: 1;
  transform: scale(1);
}

.apartment-image-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  touch-action: pan-y;
}

.apartment-image-open:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -7px;
}

.apartment-slide-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: var(--white);
  background: rgba(46, 55, 65, 0.42);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.apartment-slide-nav:hover,
.apartment-slide-nav:focus-visible {
  background: rgba(46, 55, 65, 0.64);
}

.apartment-slide-prev {
  left: 0.8rem;
}

.apartment-slide-next {
  right: 0.8rem;
}

.apartment-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 1rem;
  padding: clamp(1.25rem, 3.4vw, 2.15rem);
  color: var(--apt-text);
  background: var(--apt-bg);
}

.apartment-content > * {
  min-width: 0;
}

.apartment-content h3 {
  margin: 0;
  color: var(--apt-text);
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 400;
}

.apartment-title {
  padding-right: 7.2rem;
}

.apartment-name {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
}

.apartment-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.38rem 0.5rem;
  border: 1px solid var(--apt-border);
  border-radius: 6px;
  color: var(--apt-text);
  background: var(--apt-soft);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.apartment-content p {
  font-family: var(--font-serif);
  margin: 0;
}

.apartment-subtitle {
  color: var(--apt-muted);
  font-style: italic;
  margin: 0.1rem 0 0;
}

.apartment-card-head {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding-bottom: 0.15rem;
}

.apartment-badge-block {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.apartment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.apartment-copy {
  display: grid;
  gap: 0.65rem;
  max-width: 68ch;
  padding-top: 0.95rem;
  border-top: 1px solid var(--apt-border);
}


.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.apartment-badges span {
  border: 1px solid var(--apt-border);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--apt-text);
  font-size: 0.82rem;
  line-height: 1.25;
}

.benefit-grid article {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.9rem;
}

.apartment-actions {
  display: grid;
  justify-items: start;
  gap: 0.8rem;
  margin: 0;
}

.apartment-content .apartment-price-example {
  max-width: 31ch;
  color: var(--apt-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.apartment-actions .button.secondary {
  color: var(--apt-text);
  background: var(--apt-soft);
  border-color: var(--apt-border);
}

.apartment-actions .button.primary {
  color: var(--apt-button-text);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}

.apartment-booking-row {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.95rem;
  border-top: 1px solid var(--apt-border);
}

.apartment-details {
  margin-top: 0.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--apt-border);
}

.apartment-details summary {
  cursor: pointer;
  color: var(--apt-text);
  font-weight: 700;
}

.apartment-details summary:focus-visible {
  outline: 2px solid var(--apt-text);
  outline-offset: 4px;
}

.apartment-amenities-panel {
  margin-top: 0.75rem;
}

.gallery-strip {
  display: flex;
  min-width: 0;
  max-width: 100%;
  gap: 0.55rem;
  margin-top: 0.75rem;
  padding: 0.2rem 0.55rem 0.55rem;
  overflow-x: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-strip button {
  flex: 0 0 clamp(76px, 18%, 118px);
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  opacity: 0.58;
  transform: translateY(0);
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-strip button.is-active {
  border-color: var(--apt-text);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(46, 55, 65, 0.16);
}

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

.availability-mini {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid var(--apt-border);
  border-radius: 8px;
  background: var(--apt-soft);
}

.availability-mini summary {
  padding: 0.76rem 0.85rem;
  color: var(--apt-text);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
}

.availability-mini summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -3px;
}

.availability-mini[open] summary {
  border-bottom: 1px solid var(--apt-border);
}

.availability-panel {
  padding: 0.6rem 0.75rem 0.75rem;
}

.availability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  margin-bottom: 0.42rem;
}

.availability-title {
  display: grid;
  gap: 0.1rem;
}

.availability-title strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

.availability-title span {
  color: var(--apt-muted);
  font-size: 0.68rem;
}

.availability-controls {
  display: flex;
  align-items: center;
  gap: 0.18rem;
}

.availability-controls button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--apt-border);
  border-radius: 999px;
  color: var(--apt-text);
  background: var(--apt-soft);
  cursor: pointer;
}

.availability-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-month-label {
  min-width: 98px;
  text-align: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0.1rem;
}

.calendar-weekday,
.calendar-day {
  min-width: 0;
  width: 100%;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 3px;
  font-size: 0.78rem;
}

.calendar-weekday {
  height: 0.95rem;
  color: var(--apt-muted);
  font-weight: 700;
  font-size: 0.68rem;
}

.calendar-day {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  color: var(--apt-text);
}

.calendar-day.is-occupied,
.calendar-day.is-check-in,
.calendar-day.is-check-out {
  text-decoration: none;
}

.calendar-day.is-occupied::after,
.calendar-day.is-check-in::after,
.calendar-day.is-check-out::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  content: "";
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.calendar-day.is-outside {
  visibility: hidden;
}

.calendar-day.is-unknown {
  background: transparent;
}

.availability-error {
  margin: 0;
  color: var(--apt-text);
}

.good-to-know {
  background: var(--paper);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.info-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-grid h3,
.location-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--headline-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
}

.info-grid p,
.location-copy p {
  margin: 0;
  color: var(--muted);
}

.location-block {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.location-copy {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.location-addresses {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.location-addresses a {
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--sage-dark);
  background: var(--paper);
  text-decoration: none;
}

.location-addresses strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.location-addresses span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.location-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 46%, rgba(255, 255, 255, 0.8) 47% 51%, transparent 52%),
    linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0.62) 35% 39%, transparent 40%),
    var(--soft);
}

.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-consent {
  position: relative;
  z-index: 3;
  width: min(82%, 340px);
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(46, 55, 65, 0.13);
  text-align: center;
}

.map-consent strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
}

.map-consent p {
  margin: 0.45rem 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.map-load-button {
  margin-inline: auto;
}

.location-map.is-loaded .map-consent {
  display: none;
}

.form-privacy {
  margin: -0.25rem 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.45;
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.08rem;
  min-width: 128px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(57, 77, 54, 0.92);
  box-shadow: 0 8px 20px rgba(46, 55, 65, 0.22);
  font-family: var(--font-serif);
  text-decoration: none;
  transform: translate(-50%, -100%);
}

.map-marker::after {
  position: absolute;
  left: 50%;
  bottom: -0.36rem;
  width: 0.72rem;
  height: 0.72rem;
  content: "";
  background: rgba(57, 77, 54, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  transform: translateX(-50%) rotate(45deg);
}

.map-marker strong {
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 400;
}

.map-marker span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  line-height: 1.2;
  opacity: 0.9;
}

.map-marker--haus-lisa {
  left: 34%;
  top: 67%;
}

.map-marker--kapitaenshaus {
  left: 66%;
  top: 33%;
}

.bike {
  background: var(--paper);
}

.feature-rows {
  display: grid;
  gap: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-row img {
  width: 100%;
  min-height: 300px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy h3,
.recommendation-category h3,
.legal-card summary {
  margin: 0 0 0.8rem;
  color: var(--headline-deep);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
}

.longstay {
  background: var(--sage-dark);
  color: var(--white);
}

.longstay .eyebrow {
  color: #f1c58f;
}

.longstay-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

.longstay-copy .callout {
  border-left: 3px solid var(--terra);
  padding-left: 1rem;
  font-style: italic;
  font-weight: 700;
}

.longstay-media {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.85rem;
  align-items: end;
}

.longstay-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.longstay-media img:nth-child(2) {
  height: 390px;
  margin-bottom: -2.5rem;
}

.benefit-grid {
  margin-top: 4rem;
}

.benefit-grid article {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.recommendations {
  background: var(--white);
}

.local-events-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem 2.5rem;
  margin: -0.75rem 0 2.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 8px;
  color: var(--white);
  background: var(--sage-dark);
}

.local-events-link .eyebrow {
  margin-bottom: 0.25rem;
  color: #f1c58f;
}

.local-events-link h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
}

.local-events-link p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
}

.local-events-link .button {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}

.recommendation-list {
  column-count: 2;
  column-gap: 1.2rem;
}

.recommendation-category {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.2rem;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background: var(--paper);
}

.recommendation-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.recommendation-icon {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--sage);
  background: rgba(96, 117, 86, 0.12);
}

.recommendation-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.recommendation-items {
  display: grid;
  gap: 0.9rem;
}

.recommendation-item {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.recommendation-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.recommendation-item h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--headline-deep);
  font-size: 1rem;
}

.recommendation-item p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.recommendation-item .address {
  color: var(--sage-dark);
  font-size: 0.92rem;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  border: 1px solid rgba(222, 99, 42, 0.28);
  border-radius: 999px;
  padding: 0.12rem 0.48rem;
  color: var(--terra);
  background: rgba(222, 99, 42, 0.08);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 1.6rem);
  margin: 1.5rem 0;
  align-items: start;
}

.host-grid figure {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.host-portrait {
  width: min(100%, 210px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(46, 55, 65, 0.16);
}

.host-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-portrait--jan img {
  object-position: 50% 40%;
}

.host-portrait--parents img {
  object-position: 50% 50%;
  transform: scale(1.12);
}

.host-grid figcaption {
  padding: 0;
  color: var(--headline-deep);
  text-align: center;
  font-weight: 700;
}

.contact-links a,
.footer-actions a {
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--sage-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(222, 99, 42, 0.24);
  border-color: var(--terra);
}

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

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.legal {
  background: var(--paper);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.legal .section-inner {
  display: grid;
  max-width: 820px;
  gap: 0.6rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-card summary {
  margin: 0;
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.legal-copy {
  max-height: 52vh;
  overflow: auto;
  padding: 0 0.95rem 0.95rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-copy h3 {
  color: var(--headline-deep);
  margin: 1.4rem 0 0.25rem;
}

.legal-copy p {
  margin: 0.45rem 0;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
  padding: 3rem 0 1rem;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.8fr) minmax(220px, 0.7fr);
  gap: 2rem;
}

.site-footer h2 {
  font-size: 2rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: min(154px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: inherit;
}

.footer-actions {
  align-content: start;
}

.footer-actions a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.copyright {
  width: min(var(--max), calc(100% - 2rem));
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.image-dialog {
  width: min(960px, calc(100vw - 2rem));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.image-dialog::backdrop {
  background: rgba(16, 20, 19, 0.72);
}

.image-dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #111;
  touch-action: pan-y;
  user-select: none;
}

.image-dialog p {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
}

.dialog-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.dialog-nav:hover,
.dialog-nav:focus-visible,
.dialog-close:hover,
.dialog-close:focus-visible {
  background: rgba(0, 0, 0, 0.62);
}

.dialog-prev {
  left: 0.8rem;
}

.dialog-next {
  right: 0.8rem;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
    grid-template-areas: "menu brand phone";
  }

  .menu-toggle {
    grid-area: menu;
    display: inline-flex;
    justify-self: start;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(46, 55, 65, 0.1);
    transition: max-height 220ms ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 420px;
  }

  .site-nav a {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .header-tools {
    justify-self: end;
  }

  .brand {
    justify-self: center;
  }

  .intro-grid,
  .apartment-card,
  .location-block,
  .feature-row,
  .feature-row:nth-child(even),
  .longstay-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .apartment-main-image,
  .apartment-content,
  .location-copy,
  .location-map,
  .contact-copy,
  .contact-form,
  .footer-inner > * {
    min-width: 0;
  }

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

  .booking-guide {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: initial;
  }

  .apartment-main-image {
    min-height: 320px;
  }

  .reviews .section-inner,
  .guestbook-quotes {
    grid-template-columns: 1fr;
  }

  .recommendation-list {
    column-count: 1;
    column-gap: 0;
  }

  .guestbook-heading,
  .guestbook-quotes {
    grid-column: auto;
  }

  .guestbook-heading {
    position: static;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .photo-mosaic figure:first-child,
  .photo-mosaic figure:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.55rem;
  }

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

@media (max-width: 640px) {
  body {
    line-height: 1.55;
  }

  .site-intro {
    animation-duration: 1.32s;
  }

  .site-intro-logo {
    width: min(279px, 68.4vw);
    animation-name: site-intro-logo-mobile;
    animation-duration: 1.24s;
  }

  .site-header {
    min-height: 118px;
    gap: 0.45rem;
    padding: 0.78rem 0.7rem;
  }

  .brand img {
    width: min(202px, 52.2vw);
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
    gap: 4.5px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .language-switch {
    font-size: 0.72rem;
  }

  .language-switch a {
    min-width: 1.85rem;
    padding: 0.38rem 0.4rem;
  }

  .header-phone {
    display: none;
  }

  .header-tools {
    gap: 0;
  }

  .section-anchor {
    scroll-margin-top: 88px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(480px, 70svh, 590px);
    margin-bottom: 18rem;
    overflow: visible;
  }

  .hero-media {
    overflow: hidden;
  }

  .hero-content {
    grid-column: 1;
    justify-self: center;
    width: min(100% - 1rem, 720px);
    margin: auto 0.5rem 0;
    padding: 1.18rem 1.08rem 1.28rem;
    transform: translateY(70%);
  }

  .hero .eyebrow {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .hero h1 {
    margin-top: 0.5rem;
    font-size: clamp(1.45rem, 7.2vw, 1.78rem);
    line-height: 1.08;
  }

  .hero p:not(.eyebrow) {
    margin-top: 0.78rem;
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-top: 1.05rem;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 0.48rem;
    font-size: 0.86rem;
  }

  .apartment-find-dot {
    width: 6.9rem;
    justify-self: start;
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .section,
  .intro-band {
    padding: 3.4rem 0;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .intro-grid h2,
  .section-heading h2,
  .longstay-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.82rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .booking-guide {
    gap: 1.1rem;
    margin-bottom: 1.6rem;
  }

  .booking-guide article,
  .info-grid article {
    padding: 0.85rem;
  }

  .apartment-list {
    gap: 1.5rem;
  }

  .apartment-card {
    border-radius: 6px;
  }

  .apartment-main-image {
    min-height: 0;
    height: clamp(238px, 70vw, 300px);
  }

  .apartment-slide-nav {
    width: 36px;
    height: 36px;
  }

  .apartment-content {
    gap: 0.82rem;
    padding: 1.05rem;
  }

  .apartment-card-head {
    gap: 0.25rem;
  }

  .apartment-name {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
    line-height: 1.06;
  }

  .apartment-number {
    font-size: 0.8rem;
  }

  .apartment-subtitle {
    line-height: 1.35;
  }

  .apartment-badge-block {
    padding: 0;
  }

  .apartment-badges {
    gap: 0.35rem;
  }

  .apartment-badges span {
    padding: 0.24rem 0.46rem;
    font-size: 0.78rem;
  }

  .apartment-copy {
    gap: 0.55rem;
    padding-top: 0.75rem;
  }

  .apartment-booking-row {
    gap: 0.65rem;
    padding-top: 0.75rem;
  }

  .section-heading.split,
  .apartment-booking-row,
  .info-grid,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .info-grid,
  .guestbook-quotes {
    gap: 1.15rem;
  }

  .apartment-actions .button {
    width: 100%;
  }

  .availability-mini summary {
    padding: 0.65rem 0.72rem;
  }

  .availability-panel {
    padding: 0.55rem 0.62rem 0.65rem;
  }

  .calendar-day {
    height: 1.38rem;
  }

  .gallery-strip {
    gap: 0.45rem;
    margin-top: 0.55rem;
    padding: 0.15rem 0.45rem 0.45rem;
  }

  .gallery-strip button {
    flex-basis: 82px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
    gap: 0.7rem;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .map-marker {
    min-width: 112px;
    padding: 0.45rem 0.55rem;
  }

  .feature-rows {
    gap: 2rem;
  }

  .feature-row img {
    min-height: 235px;
  }

  .recommendation-category {
    margin-bottom: 1.5rem;
    padding: 0.95rem;
  }

  .local-events-link {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin: -0.25rem 0 2rem;
    padding: 1.35rem 1.15rem 1.45rem;
  }

  .local-events-link .button {
    justify-self: stretch;
    white-space: normal;
  }

  .recommendation-heading {
    align-items: flex-start;
    gap: 0.55rem;
  }

  .recommendation-icon {
    width: 1.95rem;
    height: 1.95rem;
  }

  .contact-grid {
    gap: 2.5rem;
  }

  .host-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .host-portrait {
    width: min(100%, 145px);
  }

  .host-grid figcaption {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .contact-links a,
  .footer-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .contact-form {
    padding: 1rem;
  }

  .legal {
    padding-top: 2.1rem;
    padding-bottom: 2rem;
  }

  .site-footer {
    padding-top: 2.25rem;
  }

  .footer-inner {
    gap: 1.8rem;
  }

  .longstay-media {
    grid-template-columns: 1fr;
  }

  .longstay-media img,
  .longstay-media img:nth-child(2) {
    height: 310px;
    margin-bottom: 0;
  }

  .image-dialog {
    width: calc(100vw - 0.75rem);
  }

  .dialog-nav {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1.65rem;
  }

  .dialog-prev {
    left: 0.35rem;
  }

  .dialog-next {
    right: 0.35rem;
  }

  .dialog-close {
    right: 0.45rem;
    top: 0.45rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: minmax(62px, 1fr) auto minmax(62px, 1fr);
    padding-inline: 0.55rem;
  }

  .brand img {
    width: min(208px, 58vw);
  }

  .menu-toggle {
    width: 2.4rem;
    height: 2.4rem;
    gap: 4px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .language-switch a {
    min-width: 1.68rem;
    padding-inline: 0.32rem;
  }

  .hero-actions .button {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img,
  .hero-media img.active {
    animation: none;
    transform: none;
    transition: opacity 300ms ease;
  }

  .slideshow-toggle {
    display: none;
  }
}

/* Focused topic pages */
.site-nav a[aria-current="page"] {
  border-color: var(--terra);
}

.subpage h1,
.subpage h2,
.subpage h3 {
  color: var(--headline-deep);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.subpage h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.12;
}

.subpage h3 {
  margin: 0 0 0.55rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.subpage-hero {
  position: relative;
  min-height: min(610px, calc(100svh - 180px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--sage-dark);
}

.subpage-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-bike .subpage-hero-media {
  object-position: center 52%;
}

.subpage-longstay .subpage-hero-media {
  object-position: center 58%;
}

.subpage-season .subpage-hero-media {
  object-position: center 58%;
}

.subpage-hero-slides {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.subpage-hero-slides img {
  --season-ken-x: -0.8%;
  --season-ken-y: -0.5%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  opacity: 0;
  transform: translate3d(var(--season-ken-x), var(--season-ken-y), 0) scale(1.085);
  transition: opacity 1200ms ease-in-out;
}

.subpage-hero-slides img:first-child {
  --season-ken-y: 0%;
  object-position: center 25%;
  transform-origin: center 25%;
}

.subpage-hero-slides img:nth-child(2) {
  --season-ken-x: 0.75%;
  --season-ken-y: -0.35%;
  object-position: center 58%;
  transform-origin: 54% 52%;
}

.subpage-hero-slides img:nth-child(3) {
  --season-ken-x: -0.65%;
  --season-ken-y: 0.45%;
  object-position: center 82%;
  transform-origin: 56% 74%;
}

.subpage-hero-slides img:nth-child(4) {
  --season-ken-x: 0.7%;
  --season-ken-y: -0.25%;
  object-position: center 32%;
  transform-origin: 55% 28%;
}

.subpage-hero-slides img:nth-child(5) {
  --season-ken-x: -0.65%;
  --season-ken-y: 0.45%;
  object-position: center 56%;
  transform-origin: 46% 48%;
}

.subpage-hero-slides img:nth-child(6) {
  --season-ken-x: -0.55%;
  --season-ken-y: 0.25%;
  object-position: center 60%;
  transform-origin: 48% 54%;
}

.subpage-hero-slides--longstay img:first-child {
  --season-ken-x: -0.45%;
  --season-ken-y: -0.25%;
  object-position: center 52%;
  transform-origin: 48% 50%;
}

.subpage-hero-slides--longstay img:nth-child(2) {
  --season-ken-x: 0.55%;
  --season-ken-y: -0.3%;
  object-position: center 54%;
  transform-origin: 54% 50%;
}

.subpage-hero-slides--longstay img:nth-child(3) {
  --season-ken-x: -0.55%;
  --season-ken-y: 0.2%;
  object-position: center 53%;
  transform-origin: 47% 52%;
}

.subpage-hero-slides--longstay img:nth-child(4) {
  --season-ken-x: 0.5%;
  --season-ken-y: -0.2%;
  object-position: center 53%;
  transform-origin: 54% 50%;
}

.subpage-hero-slides--longstay img:nth-child(5) {
  --season-ken-x: -0.4%;
  --season-ken-y: 0.35%;
  object-position: center 58%;
  transform-origin: 48% 55%;
}

.subpage-hero-slides--longstay img:nth-child(6) {
  --season-ken-x: 0.45%;
  --season-ken-y: -0.2%;
  object-position: center 55%;
  transform-origin: 53% 51%;
}

.subpage-hero-slides--longstay img:nth-child(7) {
  --season-ken-x: -0.45%;
  --season-ken-y: 0.2%;
  object-position: center 54%;
  transform-origin: 47% 52%;
}

.subpage-hero-slides--longstay img:nth-child(8) {
  --season-ken-x: 0.5%;
  --season-ken-y: -0.2%;
  object-position: center 55%;
  transform-origin: 54% 51%;
}

.subpage-hero-slides img.active,
.subpage-hero-slides img.is-leaving {
  animation: seasonHeroKenBurns 8.6s ease-out forwards;
}

.subpage-hero-slides img.active {
  opacity: 1;
}

.subpage-hero-slides img.is-leaving {
  opacity: 0;
}

@keyframes seasonHeroKenBurns {
  from {
    transform: translate3d(var(--season-ken-x), var(--season-ken-y), 0) scale(1.085);
  }

  to {
    transform: translate3d(0, 0, 0) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  .subpage-hero-slides img,
  .subpage-hero-slides img.active,
  .subpage-hero-slides img.is-leaving {
    animation: none;
    transform: none;
    transition: opacity 300ms ease;
  }
}

.subpage-hero-content {
  grid-column: 1;
  justify-self: center;
  width: min(500px, calc(100% - 2rem));
  margin: 0;
  padding: 2.2rem 2.35rem 2.45rem;
  color: var(--white);
  background: rgba(129, 148, 104, 0.94);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(46, 55, 65, 0.24);
}

.subpage-hero--longstay .subpage-hero-content {
  grid-column: 1;
  justify-self: center;
}

.subpage-hero .eyebrow {
  color: rgba(46, 55, 65, 0.78);
  font-size: 1rem;
  text-transform: none;
}

.subpage-hero h1 {
  margin: 0.55rem 0 0;
  color: rgba(46, 55, 65, 0.88);
  font-size: 3.2rem;
  font-style: italic;
  line-height: 1.04;
}

.subpage-hero-content > p:not(.eyebrow) {
  margin: 1rem 0 0;
  font-size: 1.04rem;
  line-height: 1.55;
}

.subpage .hero-actions {
  flex-wrap: wrap;
}

.subpage .hero-actions .button {
  flex: 1 1 12rem;
  white-space: normal;
}

.subpage-hero .button.primary {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.subpage-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.subpage-proof {
  padding: 1.35rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.subpage-proof .section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.subpage-proof span {
  display: grid;
  place-items: center;
  min-height: 3.5rem;
  padding: 0.35rem 1rem;
  border-right: 1px solid var(--line);
  color: var(--sage-dark);
  font-style: italic;
  text-align: center;
}

.subpage-proof span:last-child {
  border-right: 0;
}

.subpage-editorial {
  background: var(--paper);
}

.season-teaser {
  color: var(--white);
  background: var(--sage-dark);
}

.season-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.season-teaser .eyebrow {
  color: #f1c58f;
}

.season-teaser h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
}

.season-teaser-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.25rem 0 0;
}

.season-callout {
  padding-left: 1rem;
  border-left: 3px solid var(--terra);
  font-style: italic;
  font-weight: 700;
}


.season-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.season-teaser .button.primary {
  background: var(--sage);
  border-color: var(--sage);
}

.season-teaser .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
}

.season-teaser-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 0.85rem;
  align-items: end;
}

.season-teaser-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.season-teaser-media img:nth-child(2) {
  height: 390px;
  margin-bottom: -2.5rem;
}

.season-teaser-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 4rem;
}

.season-teaser-benefits span {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  font-size: 0.93rem;
  line-height: 1.2;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: center;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 42rem;
  font-size: 1.06rem;
}

.editorial-split > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-section,
.stay-reasons-section {
  background: var(--white);
}

.season-mosaic-section {
  padding: 0.8rem;
  background: var(--paper);
}

.season-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 0.8rem;
  max-width: 1500px;
  margin: 0 auto;
}

.season-mosaic figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.season-mosaic-wide {
  grid-column: span 2;
}

.season-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.season-mosaic figure:hover img {
  transform: scale(1.025);
}

.season-mosaic figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.4rem 1rem 0.8rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(32, 42, 36, 0.72), transparent);
  font-style: italic;
}

.season-events-section {
  background: var(--white);
}

.season-events-section .section-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.season-event-list {
  border-top: 1px solid var(--line);
}

.season-event-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1.25fr) auto;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
}

.season-event-list span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--sage-dark);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.season-event-list h3,
.season-event-list p {
  margin: 0;
}

.season-event-list .text-link {
  white-space: nowrap;
}

.season-calendar-link {
  justify-content: flex-start;
  margin-top: 1.8rem;
}

.season-luebeck {
  background: var(--soft);
}

.season-luebeck .editorial-split > img {
  object-position: center;
}

.season-luebeck .button.secondary {
  color: var(--ink);
  border-color: rgba(53, 68, 58, 0.38);
}

.season-luebeck .button.secondary:hover,
.season-luebeck .button.secondary:focus-visible {
  color: var(--white);
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.season-comfort {
  background: var(--soft);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.route-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.route-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.route-grid article > div {
  padding: 1.15rem 1.2rem 1.3rem;
}

.route-grid p,
.stay-reasons p {
  margin: 0;
}

.bike-rental-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bike-rental-intro h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.bike-rental-intro p:not(.eyebrow) {
  margin: 0;
}

.bike-rental-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.bike-rental-list a {
  display: flex;
  min-width: 0;
  min-height: 9.5rem;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.bike-rental-list a:hover,
.bike-rental-list a:focus-visible {
  border-color: var(--sage-dark);
  box-shadow: 0 8px 22px rgba(46, 55, 65, 0.1);
  transform: translateY(-2px);
}

.bike-rental-list strong {
  margin-bottom: 0.45rem;
  color: var(--headline-deep);
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.2;
}

.bike-rental-list span {
  font-size: 0.92rem;
  line-height: 1.4;
}

.bike-rental-list small {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
}

.sail-bike-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  margin-top: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  border-radius: 8px;
  background: var(--sage-dark);
  color: var(--white);
}

.sail-bike-feature > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.sail-bike-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3.2rem);
}

.sail-bike-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.sail-bike-copy h3 {
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
}

.sail-bike-copy > p:not(.eyebrow) {
  margin: 0;
}

.sail-bike-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.8rem;
  margin-top: 1.1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.95rem;
}

.sail-bike-facts span {
  color: rgba(255, 255, 255, 0.78);
}

.sail-bike-copy .button {
  margin-top: 1.35rem;
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--white);
}

.sail-bike-copy small {
  display: block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.45;
}

.catamaran-tip {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}

.catamaran-media {
  position: relative;
  min-height: 330px;
  margin: 0;
}

.catamaran-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.catamaran-media figcaption {
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  padding: 0.2rem 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(32, 42, 36, 0.68);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  line-height: 1.25;
}

.catamaran-media figcaption a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.catamaran-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.7rem);
}

.catamaran-tip .eyebrow {
  margin-bottom: 0.2rem;
}

.catamaran-tip h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.catamaran-tip p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 0 0.8rem;
}

.catamaran-tip .button {
  margin-top: 0.5rem;
  white-space: nowrap;
}

.apartment-match-section {
  background: var(--soft);
}

.apartment-match-list {
  border-top: 1px solid rgba(57, 77, 54, 0.28);
}

.apartment-match-list a {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.52fr);
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid rgba(57, 77, 54, 0.22);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.apartment-match-list a:hover,
.apartment-match-list a:focus-visible {
  color: var(--sage-dark);
  padding-left: 0.7rem;
}

.apartment-match-list strong {
  color: var(--headline-deep);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
}

.apartment-match-list span {
  font-family: var(--font-sans);
  font-size: 0.94rem;
}

.subpage-faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.1rem 2rem 1.1rem 0;
  color: var(--headline-deep);
  font-size: 1.08rem;
  font-style: italic;
  cursor: pointer;
}

.faq-list p {
  margin: -0.25rem 0 1.15rem;
  max-width: 46rem;
}

.subpage-cta {
  padding: 4.5rem 0;
  background: var(--olive-gold);
  text-align: center;
}

.subpage-cta h2 {
  max-width: 780px;
  margin: 0 auto;
}

.subpage-cta--dark {
  color: var(--white);
  background: var(--sage-dark);
}

.subpage-cta--dark h2 {
  color: var(--white);
}

.subpage-cta--dark .eyebrow {
  color: #f1c58f;
}

.subpage-cta--dark .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
}

.stay-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
}

.stay-reasons article {
  min-height: 150px;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.inquiry-section {
  color: var(--white);
  background: var(--deck-blue);
}

.inquiry-section h2 {
  color: var(--white);
}

.inquiry-section .eyebrow {
  color: #f1c58f;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 5.5rem);
  align-items: start;
}

.inquiry-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: inquiry-step;
}

.inquiry-layout li {
  counter-increment: inquiry-step;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-layout li::before {
  content: counter(inquiry-step);
  color: #f1c58f;
  font-style: italic;
}

.inquiry-layout li strong,
.inquiry-layout li span {
  grid-column: 2;
}

.inquiry-layout li strong {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
}

.inquiry-layout li span {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  opacity: 0.88;
}

@media (max-width: 940px) {
  .editorial-split,
  .faq-layout,
  .inquiry-layout,
  .season-teaser-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .season-teaser-media {
    max-width: 760px;
  }

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

  .bike-rental-block {
    grid-template-columns: minmax(0, 1fr);
  }

  .sail-bike-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .sail-bike-feature > img {
    min-height: 0;
    height: 360px;
  }

  .catamaran-tip {
    grid-template-columns: minmax(0, 1fr);
  }

  .catamaran-media,
  .catamaran-media img {
    min-height: 0;
    height: 330px;
  }

  .editorial-split > img {
    height: 390px;
  }

  .season-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .season-event-list article {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  }

  .season-event-list .text-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .subpage h2 {
    font-size: 2.15rem;
  }

  .subpage-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 590px;
    align-items: end;
    margin-bottom: 18rem;
    overflow: visible;
  }

  .subpage-hero-content,
  .subpage-hero--longstay .subpage-hero-content {
    grid-column: 1;
    justify-self: stretch;
    width: auto;
    margin: 0 0.5rem 0.75rem;
    padding: 1.15rem 1.05rem 1.25rem;
    transform: translateY(70%);
  }

  .subpage-hero h1 {
    font-size: 2.25rem;
  }

  .subpage-hero-content > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .subpage-proof .section-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-proof span {
    min-height: 4.4rem;
    padding: 0.45rem 0.65rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .subpage-proof span:nth-child(even) {
    border-right: 0;
  }

  .subpage-proof span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .editorial-split > img {
    height: 290px;
  }

  .season-mosaic-section {
    padding: 0.55rem;
  }

  .season-teaser h2 {
    font-size: 2.35rem;
  }

  .season-teaser-media {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 0.55rem;
  }

  .season-teaser-media img {
    height: 300px;
  }

  .season-teaser-media img:nth-child(2) {
    height: 230px;
    margin-bottom: -1.2rem;
  }

  .season-teaser-benefits {
    margin-top: 2.4rem;
  }

  .season-teaser-benefits span {
    font-size: 0.84rem;
  }

  .season-mosaic {
    grid-auto-rows: 210px;
    gap: 0.55rem;
  }

  .season-mosaic figure:not(.season-mosaic-wide) {
    grid-column: span 1;
  }

  .season-mosaic figcaption {
    padding: 2rem 0.7rem 0.65rem;
    font-size: 0.88rem;
  }

  .season-event-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1.35rem 0;
  }

  .season-event-list .text-link {
    grid-column: 1;
  }

  .route-grid,
  .stay-reasons {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .bike-rental-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .bike-rental-list a {
    min-height: 0;
  }

  .route-grid img {
    height: 210px;
  }

  .sail-bike-feature > img {
    height: 245px;
  }

  .sail-bike-feature {
    margin-top: 2.5rem;
  }

  .catamaran-tip {
    margin-top: 1.5rem;
  }

  .catamaran-media,
  .catamaran-media img {
    height: 235px;
  }

  .catamaran-copy {
    padding: 1.45rem 1.2rem 1.6rem;
  }

  .sail-bike-copy {
    padding: 1.5rem 1.2rem 1.65rem;
  }

  .sail-bike-copy h3 {
    font-size: 2rem;
  }

  .apartment-match-list a {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.25rem;
    padding: 1rem 0.15rem;
  }

  .apartment-match-list a:hover,
  .apartment-match-list a:focus-visible {
    padding-left: 0.4rem;
  }

  .stay-reasons article {
    min-height: 0;
  }

  .subpage-cta {
    padding: 3.5rem 0;
  }

  .subpage-cta .section-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
