:root {
  --brand-primary: #34A8E5;
  --brand-dark:    #145f8f;
  --brand-sand:    #EDE8DF;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Open Sans', Arial, sans-serif;
  --nav-h:         64px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
body { overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); color: #1a1a1a; background: #fff; }
img  { display: block; max-width: 100%; }
/* ── Hero ── */
.dh-hero {
  height: calc(var(--hero-h, 100svh) - 130px); min-height: 380px; position: relative; overflow: hidden;
  background: #111; isolation: isolate;
}
.dh-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  filter: brightness(0.75);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
.dh-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 80px 64px;
}
.dh-hero__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--brand-primary); margin-bottom: 14px;
}
.dh-hero__title {
  font-family: var(--font-display); font-size: clamp(42px, 7vw, 88px);
  font-weight: 300; color: #fff; line-height: 0.95; margin-bottom: 24px;
}
.dh-hero__facts {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.dh-hero__fact {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 8px;
  padding: 10px 18px; font-size: 13px; color: #fff; font-weight: 500;
}
.dh-hero__fact span { color: var(--brand-primary); font-weight: 700; }

/* ── Shared ── */
.dh-section { padding: 80px 80px; }
.dh-section--sand { background: var(--brand-sand); }
.dh-section--white { background: #fff; }
.dh-section--dark { background: #0d1f2d; color: #fff; }

.dh-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--brand-primary); margin-bottom: 16px;
}
.dh-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px);
  font-weight: 400; color: inherit; margin-bottom: 20px; line-height: 1.1;
}
.dh-text {
  font-size: 15px; font-weight: 300; line-height: 1.9; color: #555;
  max-width: 680px;
}
.dh-section--dark .dh-text { color: rgba(255,255,255,0.65); }

/* ── Intro ── */
.dh-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 400px; max-height: none; overflow: hidden;
  margin: 8px 8px 0;
}
.dh-intro__text {
  padding: 52px 80px; display: flex; flex-direction: column; justify-content: center;
  background: #fff;
}
.dh-intro__img { overflow: hidden; }
.dh-intro__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
@media (hover: hover) and (pointer: fine) {
  .dh-intro:hover .dh-intro__img img { transform: scale(1.04); }
}

/* ── Stats Bar ── */
.dh-stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--brand-dark); color: #fff;
  height: 130px;
}
.dh-stat {
  padding: 0 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-direction: column; justify-content: center;
}
.dh-stat:last-child { border-right: none; }
.dh-stat__num {
  font-family: var(--font-display); font-size: 42px; font-weight: 300;
  color: var(--brand-primary); line-height: 1; margin-bottom: 6px;
}
.dh-stat__label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* ── Photo Grid ── */
.dh-grid { display: grid; gap: 4px; padding: 0 8px; }
.dh-grid--2 { grid-template-columns: 1fr 1fr; margin-bottom: 0; }
.dh-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.dh-grid--2-1 { grid-template-columns: 2fr 1fr; }
.dh-grid__img {
  overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in;
}
.dh-grid__img--tall { aspect-ratio: 3/4; }
.dh-grid__img--wide { aspect-ratio: 16/9; }
.dh-grid__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .dh-grid__img:hover img { transform: scale(1.05); }
}

/* ── Feature Row ── */
.dh-feature {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; max-height: none; overflow: hidden; margin: 0 8px;
}
.dh-feature--rev .dh-feature__img { order: -1; }
.dh-feature__img { overflow: hidden; }
.dh-feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 7s ease; }
@media (hover: hover) and (pointer: fine) {
  .dh-feature:hover .dh-feature__img img { transform: scale(1.04); }
}
.dh-feature__content {
  padding: 52px 80px; display: flex; flex-direction: column; justify-content: center;
  background: #fff;
}
.dh-feature--sand .dh-feature__content { background: var(--brand-sand); }

/* ── Zimmer Cards ── */
.dh-rooms {
  padding: 80px 80px;
  background: #fff;
}
.dh-rooms__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px;
}
.dh-room-card {
  background: var(--brand-sand); border-radius: 12px; padding: 24px 20px; text-align: center;
}
.dh-room-card__icon { font-size: 24px; margin-bottom: 12px; }
.dh-room-card__title { font-size: 13px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.dh-room-card__beds { font-size: 13px; color: #555; font-weight: 300; line-height: 1.6; }

/* ── Ausstattung ── */
.dh-amenities {
  padding: 80px 80px; background: var(--brand-sand); margin-top: 0; position: relative; z-index: 1;
}
.dh-amenities__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 40px;
}
.dh-amenity-group__title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-primary);
}
.dh-amenity-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444; font-weight: 300; padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.dh-amenity-item::before { content: '✓'; color: var(--brand-primary); font-weight: 700; flex-shrink: 0; }

/* ── Regeln ── */
.dh-rules {
  padding: 60px 80px; background: #0d1f2d;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.dh-rule { text-align: center; }
.dh-rule__icon { font-size: 28px; margin-bottom: 10px; }
.dh-rule__label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 300; }
.dh-rule__value { font-size: 14px; color: #fff; font-weight: 600; margin-top: 4px; }

/* ── CTA ── */
.dh-cta {
  padding: 100px 80px; text-align: center; background: var(--brand-sand);
}
.dh-cta__price {
  font-family: var(--font-display); font-size: 18px; color: #888;
  margin-bottom: 8px; letter-spacing: 0.05em;
}
.dh-cta__title {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
  font-weight: 400; color: #1a1a1a; margin-bottom: 16px;
}
.dh-cta__sub { font-size: 15px; color: #777; font-weight: 300; max-width: 480px; margin: 0 auto 40px; line-height: 1.8; }
.dh-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.ob-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  padding: 15px 36px; border-radius: 2px; cursor: pointer; transition: all 0.3s;
  white-space: nowrap; border: 2px solid transparent;
}
.ob-btn--primary { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.ob-btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); }
.ob-btn--dark { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.ob-btn--dark:hover { background: #0d4b72; transform: translateY(-2px); }


/* ── Lightbox ── */
.dh-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.dh-lightbox.open { display: flex; }
.dh-lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.dh-lightbox__close, .dh-lightbox__prev, .dh-lightbox__next {
  position: fixed; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background 0.2s; z-index: 9001; line-height: 1;
}
.dh-lightbox__close:hover, .dh-lightbox__prev:hover, .dh-lightbox__next:hover { background: rgba(255,255,255,0.25); }
.dh-lightbox__close { top: 20px; right: 24px; font-size: 22px; }
.dh-lightbox__prev  { top: 50%; left: 20px; transform: translateY(-50%); }
.dh-lightbox__next  { top: 50%; right: 20px; transform: translateY(-50%); }
.dh-lightbox__counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dh-hero__content { padding: 0 28px 48px; }
  .dh-intro, .dh-feature { grid-template-columns: 1fr; }
  .dh-feature--rev .dh-feature__img { order: 0; }
  .dh-intro__img, .dh-feature__img { height: 320px; }
  .dh-intro__text, .dh-feature__content, .dh-section, .dh-rooms, .dh-amenities, .dh-cta { padding: 52px 24px; }
  .dh-stats { grid-template-columns: repeat(3, 1fr); height: auto; }
  .dh-stat { padding: 20px 16px; }
  .dh-stats .dh-stat:nth-child(4), .dh-stats .dh-stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.12); }
  .dh-grid--3 { grid-template-columns: 1fr 1fr; }
  .dh-rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .dh-amenities__grid { grid-template-columns: 1fr; gap: 32px; }
  .dh-rules { grid-template-columns: repeat(2, 1fr); padding: 48px 24px; }
}

/* ── Strand-Liste (ersetzt Inline-Styles des WP-Templates) ── */
.dh-beach-list {
  margin-top: 20px; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  padding: 0;
}
.dh-beach-list li {
  font-size: 14px; color: #555; font-weight: 300;
  display: flex; gap: 10px;
}
.dh-beach-list li span { color: var(--brand-primary); font-weight: 700; }
