/* =============================================
   Wattkieker – Ferienwohnung Direktbucher Website
   Coastal Design System
   ============================================= */

/* ===== CSS Custom Properties ===== */
:root {
  /* Colors – North Sea palette */
  --clr-ocean:       #0d5f8a;   /* primary – deep ocean */
  --clr-ocean-dark:  #09415e;   /* primary dark */
  --clr-ocean-light: #2d8ab5;   /* lighter blue */
  --clr-sky:         #a8d8f0;   /* sky blue */
  --clr-sand:        #f5ede0;   /* warm sand */
  --clr-amber:       #e8a830;   /* sunset amber – CTA */
  --clr-amber-dark:  #c98f1a;
  --clr-surf:        #e8f4f9;   /* light surf – section bg */
  --clr-bg:          #fafaf8;
  --clr-surface:     #ffffff;
  --clr-text:        #1a2332;
  --clr-text-muted:  #5a6a7e;
  --clr-border:      #ddeaf2;
  --clr-success:     #2ea044;
  --clr-booked:      #e2e8f0;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 80px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);

  /* Typography */
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  /* Layout */
  --container: 1200px;
  --nav-h:     72px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.section-tag {
  display: inline-block;
  background: rgba(13,95,138,.1);
  color: var(--clr-ocean);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-tag--gold {
  background: rgba(232,168,48,.15);
  color: #a06d10;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s ease;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn--amber {
  background: var(--clr-amber);
  color: #1a1a1a;
}
.btn--amber:hover { background: var(--clr-amber-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,168,48,.4); }
.btn--amber:disabled { background: #c5c5c5; color: #666; transform: none; box-shadow: none; cursor: not-allowed; }
.btn--ghost {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn--outline {
  border: 1.5px solid var(--clr-ocean);
  color: var(--clr-ocean);
  background: transparent;
}
.btn--outline:hover { background: var(--clr-ocean); color: #fff; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.scrolled {
  border-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.nav.hero-mode {
  background: transparent;
}
.nav.hero-mode .nav__logo-name { color: #fff; }
.nav.hero-mode .nav__logo-sub { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.nav.hero-mode .nav__links a { color: rgba(255,255,255,.85); }
.nav.hero-mode .nav__links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.hero-mode .nav__toggle span { background: #fff; }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav__logo-wave {
  font-size: 1.6rem;
  color: var(--clr-ocean);
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-ocean);
}
.nav__logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  border-left: 1px solid var(--clr-border);
  padding-left: 10px;
  margin-left: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--clr-text); background: var(--clr-surf); }

.nav__cta {
  background: var(--clr-amber) !important;
  color: #1a1a1a !important;
  padding: 9px 18px !important;
}
.nav__cta:hover { background: var(--clr-amber-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all .25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(232,168,48,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 15% 70%, rgba(45,138,181,.2) 0%, transparent 50%),
    linear-gradient(
      180deg,
      #87ceeb 0%,
      #5ba3c9 22%,
      #3b88b4 38%,
      #1e6a96 48%,
      #0d4a72 60%,
      #083952 80%,
      #052a3d 100%
    );
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800'%3E%3Ccircle cx='1100' cy='180' r='180' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='1300' cy='350' r='120' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") center/cover no-repeat;
  pointer-events: none;
}

.hero__sea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.hero__sea svg { width: 100%; height: 120px; display: block; }

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 120px;
}

.hero__location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.hero__title-serif {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
.hero__title-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  margin-top: 8px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Gallery ===== */
.gallery {
  position: relative;
  background: #000;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px;
}

.gallery__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__cell--main {
  grid-row: 1 / 3;
}
.gallery__cell--view {
  grid-column: 2 / 4;
}

.gallery__img {
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}
.gallery__cell:hover .gallery__img { transform: scale(1.05); }

/* Photo gradient simulations */
.gallery__img--living {
  background: linear-gradient(
    135deg,
    #e8d5b7 0%, #d4c4a0 20%,
    #c9d4e0 40%, #a8c5d6 60%,
    #7aaabb 75%, #5591a8 90%, #3d7a94 100%
  );
}
.gallery__img--bedroom1 {
  background: linear-gradient(
    160deg,
    #f0ebe0 0%, #e8d5c0 30%,
    #d4c8b0 50%, #c0b898 70%,
    #a09878 90%
  );
}
.gallery__img--bedroom2 {
  background: linear-gradient(
    150deg,
    #dde8f0 0%, #c8dde8 30%,
    #b0ccd8 55%, #8ab5c5 75%,
    #6a9ab0 100%
  );
}
.gallery__img--kitchen {
  background: linear-gradient(
    140deg,
    #f5f0e8 0%, #ede5d5 30%,
    #e0d4c0 50%, #d4c8aa 70%,
    #c8b890 100%
  );
}
.gallery__img--terrace {
  background: linear-gradient(
    160deg,
    #f5e8d0 0%, #f0d4b0 20%,
    #e8b870 35%,
    #5ba3c9 50%, #2d7a9e 70%,
    #0d5f8a 85%, #083952 100%
  );
}
.gallery__img--view {
  background: linear-gradient(
    180deg,
    #87ceeb 0%, #5ba3c9 25%,
    #3b88b4 40%, #1e6a96 52%,
    #0d4a72 65%, #083952 80%,
    #e8c97a 85%, #c8a050 95%, #8b6830 100%
  );
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.5));
  opacity: 0;
  transition: opacity .3s;
}
.gallery__overlay--view { opacity: 1; background: linear-gradient(transparent 40%, rgba(0,0,0,.4)); }
.gallery__cell:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery__overlay--view span { font-size: 1rem; }

.gallery__all-btn {
  position: absolute;
  bottom: 20px;
  right: 24px;
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
}
.gallery__all-btn:hover { background: #fff; transform: translateY(-1px); }

/* ===== Property Layout ===== */
.property-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 80px;
  align-items: start;
}

/* ===== Property Sections ===== */
.prop-section { padding: 36px 0; }
.prop-section__title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 24px;
  color: var(--clr-text);
}

.prop-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 0;
}

/* Intro */
.prop-intro__host {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.prop-intro__avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--clr-ocean) 0%, var(--clr-ocean-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.prop-intro__hosted-by { font-size: 0.95rem; margin-bottom: 2px; }
.prop-intro__since { font-size: 0.82rem; color: var(--clr-text-muted); }
.prop-intro__badges { display: flex; gap: 8px; margin-left: auto; }

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.badge--gold { background: rgba(232,168,48,.15); color: #a06d10; }
.badge--blue { background: rgba(13,95,138,.1); color: var(--clr-ocean); }

.prop-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--clr-surf);
  border-radius: var(--radius-md);
}
.prop-intro__hl {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.prop-intro__hl-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.prop-intro__hl strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.prop-intro__hl p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0; }

.prop-intro__desc p {
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.prop-intro__read-more {
  background: none;
  border: none;
  color: var(--clr-ocean);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prop-intro__read-more:hover { color: var(--clr-ocean-dark); }

/* Amenities */
.amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.amenity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.amenity__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.amenity strong { display: block; font-size: 0.9rem; margin-bottom: 1px; }
.amenity span { font-size: 0.8rem; color: var(--clr-text-muted); }

/* Location */
.location__map-placeholder {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--clr-border);
}
.location__map-bg {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 35% 60%, rgba(45,138,181,.3) 0%, transparent 40%),
    linear-gradient(
      160deg,
      #c8dde0 0%, #b0ccd6 20%,
      #e8e4d8 35%, #d8d0c0 50%,
      #c0b8a8 65%, #a8d8f0 75%,
      #78bcd8 90%
    );
}
.location__map-pin {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.location__map-pin-dot {
  width: 16px;
  height: 16px;
  background: var(--clr-amber);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,168,48,.3);
}
.location__map-pin span {
  background: var(--clr-ocean);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.location__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.location__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 30px;
}
.location__item strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.location__item span { font-size: 0.8rem; color: var(--clr-text-muted); }

.location__note {
  background: var(--clr-surf);
  border-left: 3px solid var(--clr-ocean-light);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.location__note strong { color: var(--clr-text); }

/* Reviews */
.reviews__header { margin-bottom: 28px; }
.reviews__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.review-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.review-cat span:first-child { width: 110px; flex-shrink: 0; }
.review-cat span:last-child { font-weight: 600; color: var(--clr-text); }
.review-bar {
  flex: 1;
  height: 4px;
  background: var(--clr-border);
  border-radius: 100px;
  overflow: hidden;
}
.review-bar__fill {
  height: 100%;
  background: var(--clr-ocean);
  border-radius: 100px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-ocean) 0%, var(--clr-ocean-light) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-card__header strong { font-size: 0.9rem; display: block; }
.review-card__header p { font-size: 0.78rem; color: var(--clr-text-muted); margin: 0; }
.review-card__stars { color: var(--clr-amber); font-size: 0.85rem; margin-left: auto; }
.review-card > p { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.6; font-style: italic; }

/* House Rules */
.rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.rules__group h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-ocean);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rules__group ul { display: flex; flex-direction: column; gap: 8px; }
.rules__group li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.45;
}
.rules__group li span:first-child { flex-shrink: 0; }

/* FAQ */
.faq__list { display: flex; flex-direction: column; gap: 4px; }
.faq__item { border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--clr-surface);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  transition: background .2s;
}
.faq__q:hover { background: var(--clr-surf); }
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--clr-ocean);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .3s, background .2s;
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--clr-ocean-dark);
}
.faq__a {
  padding: 16px 20px;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-surf);
}
.faq__a p { font-size: 0.88rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ===== Booking Widget ===== */
.booking-widget {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.booking-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.booking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booking-card__price-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-text);
}
.booking-card__price-unit { color: var(--clr-text-muted); font-size: 0.9rem; }
.booking-card__rating { font-size: 0.82rem; color: var(--clr-text-muted); }
.booking-card__rating-link { color: var(--clr-ocean); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Date selector */
.booking-dates {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.booking-dates__row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}
.booking-dates__field {
  padding: 12px 14px;
  cursor: pointer;
  transition: background .2s;
}
.booking-dates__field:hover,
.booking-dates__field--active { background: var(--clr-surf); }
.booking-dates__field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-text);
  margin-bottom: 3px;
}
.booking-dates__field span {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  display: block;
}
.booking-dates__field span.selected { color: var(--clr-text); font-weight: 600; }
.booking-dates__divider { background: var(--clr-border); }

.booking-guests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1.5px solid var(--clr-border);
}
.booking-guests label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-text);
}
.guests-picker { display: flex; align-items: center; gap: 14px; }
.guests-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--clr-border);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.guests-btn:hover:not(:disabled) { background: var(--clr-surf); border-color: var(--clr-ocean); }
.guests-btn:disabled { opacity: 0.35; cursor: not-allowed; }
#guestsCount { font-size: 1rem; font-weight: 600; min-width: 20px; text-align: center; }

/* Calendar */
.booking-calendar {
  margin: 12px 0;
  user-select: none;
}

.cal__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cal__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border);
  transition: background .2s, border-color .2s;
}
.cal__nav-btn:hover:not(:disabled) { background: var(--clr-surf); border-color: var(--clr-ocean); }
.cal__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cal__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cal__month-header {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--clr-border);
}

.cal__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal__day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 3px 0;
}

.cal__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
}
.cal__day:hover:not(.cal__day--disabled) {
  background: var(--clr-surf);
  color: var(--clr-ocean);
}
.cal__day--empty { cursor: default; }
.cal__day--disabled {
  color: var(--clr-booked);
  cursor: not-allowed;
}
.cal__day--booked {
  background: var(--clr-booked);
  border-radius: 4px;
  position: relative;
}
.cal__day--booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: #94a3b8;
  transform: translateY(-50%);
}
.cal__day--today {
  font-weight: 700;
  color: var(--clr-ocean);
}
.cal__day--today::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--clr-ocean);
  border-radius: 50%;
}
.cal__day--in-range {
  background: rgba(13,95,138,.1);
  border-radius: 0;
  color: var(--clr-ocean);
}
.cal__day--checkin {
  background: var(--clr-ocean) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-weight: 700;
}
.cal__day--checkout {
  background: var(--clr-ocean) !important;
  color: #fff !important;
  border-radius: 50% !important;
  font-weight: 700;
}

/* Calendar legend */
.cal-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cal-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}
.cal-legend__item::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cal-legend__item--available::before { background: var(--clr-surface); border: 1.5px solid var(--clr-border); }
.cal-legend__item--booked::before { background: var(--clr-booked); }
.cal-legend__item--selected::before { background: var(--clr-ocean); border-radius: 50%; }

/* Price breakdown */
.price-breakdown {
  background: var(--clr-surf);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--clr-text-muted);
}
.price-row--total {
  font-size: 1rem;
  color: var(--clr-text);
  padding-top: 8px;
}
.price-row--total strong { font-size: 1.1rem; font-weight: 800; }
.price-row__divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 8px 0;
}
.price-breakdown__note {
  font-size: 0.72rem;
  color: var(--clr-success);
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
}

.booking-card__btn {
  margin-bottom: 10px;
  font-size: 1rem;
  padding: 15px;
}
.booking-card__note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}
.booking-card__benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,160,68,.08);
  border: 1px solid rgba(46,160,68,.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #1a5c2a;
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 16px;
  box-shadow: var(--shadow-md);
}
.booking-form__title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--clr-text);
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Form fields */
.form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
}
.form__field input,
.form__field select,
.form__field textarea {
  padding: 11px 13px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--clr-ocean);
  box-shadow: 0 0 0 3px rgba(13,95,138,.1);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form__check-label input { margin-top: 2px; flex-shrink: 0; }
.form__check-label a { color: var(--clr-ocean); text-decoration: underline; }
.form__note {
  text-align: center;
  font-size: 0.74rem;
  color: var(--clr-text-muted);
}

/* ===== Direktbucher CTA ===== */
.direktbucher-cta {
  background: linear-gradient(135deg, var(--clr-ocean) 0%, var(--clr-ocean-dark) 100%);
  color: #fff;
  padding: 80px 0;
}
.direktbucher-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
}
.direktbucher-cta .section-tag--gold {
  background: rgba(232,168,48,.2);
  color: var(--clr-amber);
}
.direktbucher-cta h2 { margin-bottom: 12px; }
.direktbucher-cta p { color: rgba(255,255,255,.75); font-size: 0.95rem; max-width: 460px; }

.direktbucher-cta__stats { display: flex; gap: 32px; }
.dcta-stat { text-align: center; }
.dcta-stat__val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-amber);
}
.dcta-stat__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* ===== Footer ===== */
.footer {
  background: #071e34;
  color: rgba(255,255,255,.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 24px 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__wave { font-size: 2rem; color: var(--clr-ocean-light); }
.footer__brand strong { color: #fff; font-size: 1.1rem; font-family: var(--font-serif); }
.footer__brand p { font-size: 0.85rem; line-height: 1.6; }
.footer__contact-info { margin-top: 4px; }
.footer__contact-info a {
  display: block;
  color: var(--clr-amber);
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.footer__links h4 {
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer__links a:hover { color: rgba(255,255,255,.9); }

.footer__badge {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.footer__badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.footer__badge-card strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 2px; }
.footer__badge-card p { font-size: 0.78rem; color: rgba(255,255,255,.5); margin: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom-note { margin-top: 4px; }
.footer__bottom a { color: var(--clr-amber); }

/* ===== Mobile Booking Bar ===== */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-booking-bar__price { font-size: 1.1rem; font-weight: 800; color: var(--clr-text); }
.mobile-booking-bar__unit { font-size: 0.85rem; color: var(--clr-text-muted); }

/* ===== Fade-in animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .property-layout { grid-template-columns: 1fr 340px; gap: 40px; }
  .cal__months { grid-template-columns: 1fr; }
  .direktbucher-cta__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .property-layout { grid-template-columns: 1fr; }
  .booking-widget {
    position: static;
    order: -1;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery__cell--main { grid-row: 1 / 2; grid-column: 1 / 3; }
  .gallery__cell--view { grid-column: 1 / 3; }
  .cal__months { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .reviews__grid { grid-template-columns: 1fr; }
  .rules__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--clr-surface);
    flex-direction: column;
    border-bottom: 1px solid var(--clr-border);
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 16px; font-size: 1rem; color: var(--clr-text); }
  .nav__toggle { display: flex; }

  .mobile-booking-bar { display: flex; }
  body { padding-bottom: 64px; }

  .hero__inner { padding-bottom: 140px; }
  .hero__chips { gap: 8px; }
  .chip { font-size: 0.78rem; padding: 5px 12px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .gallery__cell--view { display: none; }

  .reviews__categories { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .direktbucher-cta__stats { gap: 20px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__cell--main { height: 220px; }
  .gallery__cell { height: 160px; }
  .form__row { grid-template-columns: 1fr; }
  .cal__months { grid-template-columns: 1fr; }
}
