:root {
  --ink: #123e49;
  --sea: #146b78;
  --paper: #faf9f5;
  --line: #d9e0dc;
  --gold: #c38e3e;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    17px/1.7 "Segoe UI",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
header {
  max-width: 1400px;
  margin: auto;
  padding: 23px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  text-decoration: none;
  font:
    24px/1.2 Georgia,
    serif;
}
.brand small {
  display: block;
  font:
    11px/2.4 "Segoe UI",
    sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav a {
  font-size: 14px;
  text-decoration: none;
}
nav a[aria-current] {
  border-bottom: 2px solid var(--gold);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 15px;
}
.button:hover {
  background: var(--sea);
}
.button.light {
  background: white;
  color: var(--ink);
  border-color: white;
}
.textlink {
  display: inline-block;
  margin: 12px 0;
}
.wrap {
  max-width: 1240px;
  padding: 0 5%;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 610px;
  margin: 20px auto 0;
  max-width: 1400px;
}
.hero-copy {
  padding: 68px 11% 65px;
  background: #e8eeea;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.7px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--sea);
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}
h1 {
  font-size: clamp(42px, 5.2vw, 74px);
  margin: 0 0 25px;
  letter-spacing: -2px;
}
h1 em,
h2 em {
  color: var(--sea);
  font-weight: 400;
}
h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin: 0 0 23px;
}
h3 {
  font-size: 27px;
  margin: 0 0 16px;
}
p {
  margin: 0 0 21px;
}
.hero-copy p:not(.eyebrow) {
  max-width: 390px;
}
.hero-photo {
  position: relative;
  min-height: 450px;
}
.hero-photo img {
  height: 100%;
  position: absolute;
  object-position: 52% center;
}
.photo-label {
  position: absolute;
  bottom: 23px;
  left: 28px;
  background: #fffef2ed;
  padding: 6px 16px;
  font-size: 13px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  font-size: 14px;
}
.facts strong {
  display: block;
  font:
    26px Georgia,
    serif;
  margin-bottom: 6px;
}
.section {
  padding: 90px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img {
  height: 470px;
}
.split .portrait {
  height: 490px;
  object-fit: contain;
  background: #e9ede8;
}
.section-title {
  max-width: 650px;
  margin-bottom: 42px;
}
.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.room img {
  height: 340px;
  margin-bottom: 26px;
}
.room p {
  max-width: 490px;
}
.tint {
  background: #e8eeea;
}
.small-room {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  margin-top: 35px;
  align-items: center;
}
.small-room img {
  height: 155px;
}
.small-room h3 {
  font-size: 24px;
}
.small-room p {
  margin: 0;
}
.cta {
  background: var(--ink);
  color: white;
  padding: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  font-size: 39px;
  margin: 0 0 12px;
}
.cta p {
  margin: 0;
  color: #dbe8e7;
}
footer {
  max-width: 1240px;
  margin: auto;
  padding: 48px 5% 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
}
footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.page-head {
  padding: 65px 0 45px;
  max-width: 830px;
}
.page-head h1 {
  font-size: 62px;
}
.page-head p {
  font-size: 19px;
}
.prose {
  max-width: 800px;
  padding-bottom: 75px;
}
.prose h2 {
  font-size: 30px;
  margin-top: 35px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price {
  padding: 32px;
  background: #e9eeea;
  border-top: 3px solid var(--sea);
}
.price.primary {
  background: var(--ink);
  color: white;
}
.price b {
  font:
    46px Georgia,
    serif;
}
.price h3 {
  font-size: 23px;
}
.price small {
  display: block;
}
.tabs {
  display: flex;
  gap: 10px;
  margin: 25px 0;
}
.tabs button {
  padding: 10px 30px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.tabs button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 35px;
}
th,
td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
th {
  font-weight: 600;
  font-size: 14px;
  background: #e9eeea;
}
td {
  font-size: 15px;
}
.note {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  background: #f0eee5;
  margin: 28px 0;
}
.muted {
  font-size: 14px;
  color: #53666a;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 65px;
  padding-bottom: 80px;
}
.contact-card {
  background: var(--ink);
  color: white;
  padding: 40px;
}
.contact-card a {
  overflow-wrap: anywhere;
}
.contact-card .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c7dada;
  margin: 23px 0 5px;
}
.contact-card h2 {
  font-size: 36px;
}
.steps {
  padding-left: 25px;
}
.steps li {
  padding-left: 10px;
  margin-bottom: 20px;
}
.map {
  height: 440px;
  background: #e8eeea;
  border: 1px solid var(--line);
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}
.map > div {
  max-width: 540px;
  padding: 25px;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-caption {
  font-size: 13px;
  margin-top: 9px;
}
.skip {
  position: absolute;
  top: -100px;
}
.skip:focus {
  top: 0;
  background: white;
  padding: 15px;
  z-index: 100;
}
.menu {
  display: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}
.number {
  font:
    64px Georgia,
    serif;
  color: #a1b8b9;
  margin-bottom: 20px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
}
.legal-tag {
  font-size: 13px;
  background: #f5ead3;
  padding: 12px 18px;
  margin-bottom: 20px;
}
@media (max-width: 950px) {
  header {
    flex-wrap: wrap;
  }
  nav {
    gap: 17px;
  }
  .hero {
    min-height: 530px;
  }
  .hero-copy {
    padding: 45px 9%;
  }
  .split {
    gap: 35px;
  }
  .room img {
    height: 260px;
  }
}
@media (max-width: 700px) {
  header {
    padding: 20px 6%;
  }
  .menu {
    display: block;
    background: none;
    border: 1px solid var(--line);
    padding: 7px 12px;
  }
  nav {
    display: none;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }
  nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .hero-copy {
    padding: 44px 7%;
  }
  .hero-photo {
    min-height: 330px;
    grid-row: 2;
  }
  .hero h1 {
    font-size: 49px;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 23px;
  }
  .wrap {
    padding: 0 7%;
  }
  .section {
    padding: 55px 0;
  }
  .split,
  .rooms,
  .contact-grid,
  .price-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split img,
  .split .portrait {
    height: 330px;
  }
  .room img {
    height: auto;
  }
  .small-room {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }
  .small-room img {
    height: 130px;
  }
  .cta {
    padding: 35px 25px;
    display: block;
  }
  .cta .button {
    margin-top: 25px;
  }
  footer {
    flex-direction: column;
    padding: 35px 7%;
  }
  .page-head {
    padding-top: 40px;
  }
  .page-head h1 {
    font-size: 44px;
  }
  .contact-card {
    padding: 28px;
  }
  .map {
    height: 390px;
  }
  th,
  td {
    padding: 12px 10px;
    min-width: 115px;
  }
}

.price-section {
  padding-top: 0;
}
.season-summary th,
.season-summary td {
  vertical-align: top;
  padding: 23px 20px;
}
.season-summary tbody th {
  background: transparent;
  font-size: 17px;
  width: 23%;
}
.season-summary td:last-child {
  width: 18%;
  white-space: nowrap;
  font-size: 21px;
}
.season-dates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 25px;
}
.season-dates span {
  white-space: nowrap;
}
.note h2 {
  font-size: 28px;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .season-summary th,
  .season-summary td {
    padding: 16px 7px;
    min-width: 0;
  }
  .season-summary tbody th {
    font-size: 14px;
    width: 33%;
    overflow-wrap: anywhere;
  }
  .season-summary td:last-child {
    font-size: 17px;
    width: 19%;
  }
  .season-summary thead th {
    font-size: 13px;
  }
  .season-dates {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 13px;
  }
  .price-section h2 {
    font-size: 30px;
  }
}

.island-flag {
  margin: 30px 0 40px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.island-flag img {
  width: 270px;
  height: 180px;
  object-fit: contain;
}
.island-flag figcaption {
  max-width: 560px;
  font-size: 16px;
}
@media (max-width: 700px) {
  .island-flag {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .island-flag img {
    width: min(100%, 270px);
  }
}

.house-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.house-gallery figure {
  margin: 0;
  background: #f0f3ef;
}
.house-gallery a {
  display: block;
}
.house-gallery img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: contain;
}
.house-gallery figcaption {
  padding: 14px 18px;
  font-size: 15px;
}
.house-gallery a:focus-visible {
  outline: 3px solid #146b78;
  outline-offset: 4px;
}
@media (max-width: 900px) {
  .house-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 550px) {
  .house-gallery {
    grid-template-columns: 1fr;
  }
  .house-gallery img {
    height: auto;
    max-height: 440px;
  }
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
}
.amenities li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: #edf2ee;
  border-radius: 5px;
}
.amenities li span {
  font-size: 25px;
  min-width: 34px;
  text-align: center;
}
.amenities-section,
.house-description {
  padding-top: 20px;
}
.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.nearby-grid div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.nearby-grid dd {
  margin: 0;
  font-weight: bold;
  white-space: nowrap;
}
.occupancy-prices small {
  display: block;
  font-weight: normal;
  margin-top: 8px;
}
.occupancy-prices td {
  font-size: 24px;
  font-weight: bold;
}
.occupancy-prices th,
.occupancy-prices td {
  text-align: left;
  padding: 22px;
}
.occupancy-prices tbody th {
  background: transparent;
}
@media (max-width: 700px) {
  .amenities {
    grid-template-columns: 1fr 1fr;
  }
  .nearby-grid {
    grid-template-columns: 1fr;
  }
  .occupancy-prices th,
  .occupancy-prices td {
    padding: 14px 8px;
    font-size: 16px;
    min-width: 0;
  }
}
@media (max-width: 430px) {
  .amenities {
    grid-template-columns: 1fr;
  }
}

.outdoor-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 40px;
}
.outdoor-photos figure {
  margin: 0;
}
.outdoor-photos img {
  display: block;
  height: 460px;
  object-fit: contain;
  background: #edf2ee;
}
.outdoor-photos .wintergarden-photo img {
  height: 320px;
}
.outdoor-photos figcaption {
  font-size: 15px;
  padding-top: 12px;
}
.outdoor-photos a:focus-visible {
  outline: 3px solid #146b78;
  outline-offset: 4px;
}
@media (max-width: 700px) {
  .outdoor-photos {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .outdoor-photos img {
    height: 380px;
  }
  .outdoor-photos .wintergarden-photo {
    max-width: 320px;
  }
  .outdoor-photos .wintergarden-photo img {
    height: 280px;
  }
}

.amenity-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.amenity-group {
  padding: 30px 26px;
  background: #f4f5ef;
  border: 1px solid #dce4de;
  border-radius: 14px;
}
.amenity-group h3 {
  font-size: 25px;
  margin: 0 0 8px;
}
.amenity-subtitle {
  font-size: 14px;
  color: #53666a;
  margin: 0 0 25px;
}
.amenity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-group li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #dce4de;
  font-size: 15px;
  line-height: 1.5;
}
.amenity-group svg,
.house-rules svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  color: #146b78;
}
.house-rules {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px 4px 0;
  color: #53666a;
  font-size: 15px;
}
.house-rules > span {
  display: flex;
  align-items: center;
  gap: 11px;
}
@media (max-width: 950px) {
  .amenity-groups {
    gap: 14px;
  }
  .amenity-group {
    padding: 24px 18px;
  }
}
@media (max-width: 760px) {
  .amenity-groups {
    grid-template-columns: 1fr;
  }
  .amenity-group {
    padding: 27px;
  }
  .amenity-group li {
    font-size: 16px;
  }
  .house-rules {
    gap: 18px 28px;
  }
}

/* Barrierearme Darstellung: Kontrast, Textumbruch und Tastaturfokus */
.number {
  color: #536e70;
}
h1,
h2,
h3,
p,
li,
a,
dt,
dd {
  overflow-wrap: anywhere;
}
.split > *,
.rooms > *,
.contact-grid > *,
.hero > * {
  min-width: 0;
}
:focus-visible {
  outline: 3px solid #123e49;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px #fff;
}
main:focus {
  outline: none;
}
.skip:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
}
.menu {
  min-height: 44px;
  min-width: 44px;
  border-color: #53666a;
}
nav a,
.tabs a,
footer .links a {
  min-height: 24px;
}
.table-wrap:focus-visible {
  outline: 3px solid #123e49;
  outline-offset: 3px;
}
