:root {
  --color-navy:       #003366;
  --color-navy-light: #0a4a8a;
  --color-sand:       #f5efe6;
  --color-sand-dark:  #e8d9c0;
  --color-gold:       #c9923a;
  --color-white:      #ffffff;
  --color-text:       #2c2c2c;
  --color-text-light: #666666;
  --color-border:     #ddd3c0;

  --font-display: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  --font-body:    'Trebuchet MS', Helvetica, Arial, sans-serif;

  --radius:        8px;
  --shadow:        0 4px 20px rgba(0,51,102,0.12);
  --shadow-hover:  0 8px 32px rgba(0,51,102,0.22);
  --transition:    0.3s ease;
  --navbar-height: 64px;
  --container-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--color-sand);
  color: var(--color-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.2;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-gold); }

.has-text-centered { text-align: center; }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.layout-sidebar {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.layout-sidebar .col-main {
  flex: 0 0 68%;
  max-width: 68%;
  box-sizing: border-box;
}

.layout-sidebar .col-sidebar {
  flex: 0 0 calc(32% - 2rem);
  max-width: calc(32% - 2rem);
  box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
  .layout-sidebar {
    flex-direction: column;
    gap: 1.5rem;
  }
  .layout-sidebar .col-main,
  .layout-sidebar .col-sidebar {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: var(--navbar-height);
  border-bottom: 2px solid var(--color-sand-dark);
  transition: box-shadow var(--transition), background var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,51,102,0.15);
  background: #fff;
}

#navbar .container {
  display: flex;
  align-items: stretch;
  min-height: var(--navbar-height);
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-anchor {
  display: flex;
  align-items: center;
  padding: 0 0.4rem 0 0;
  color: var(--color-navy);
  font-size: 1.5rem;
}
.navbar-anchor:hover { color: var(--color-gold); }
.navbar-logo-icon { font-size: 1.5rem; }

.navbar-name {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  padding: 0 0.75rem;
  white-space: nowrap;
}
.navbar-name:hover { color: var(--color-gold); }

.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: var(--navbar-height);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.navbar-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-burger.is-active span:nth-child(2) { opacity: 0; }
.navbar-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar-menu {
  display: flex;
  flex-grow: 1;
  align-items: stretch;
}

.navbar-end {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-item {
  display: flex;
  align-items: center;
  color: var(--color-navy);
  padding: 0 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-item.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.navbar-item.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}
.navbar-item.nav-link:hover::after { width: 60%; }
.navbar-item.nav-link:hover { color: var(--color-gold); }

.navbar-cta {
  background: var(--color-navy);
  color: var(--color-white) !important;
  border-radius: 4px;
  padding: 0.4rem 1.1rem;
  margin: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background var(--transition);
}
.navbar-cta:hover { background: var(--color-gold); color: #fff !important; }

@media screen and (max-width: 768px) {
  .navbar-burger { display: flex; }
  .navbar-name   { font-size: 0.95rem; }

  .navbar-menu {
    display: none;
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 24px rgba(0,51,102,0.15);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    z-index: 99;
  }
  .navbar-menu.is-active { display: flex; }

  .navbar-end {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
  }

  .navbar-item.nav-link {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-sand-dark);
    justify-content: flex-start;
  }
  .navbar-item.nav-link::after { display: none; }

  .navbar-cta {
    margin: 0.75rem 1.5rem;
    justify-content: center;
    text-align: center;
  }
}

#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-navy);       
  background-image: url('../bilder/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,30,60,0.65) 0%,
    rgba(0,51,102,0.72) 60%,
    rgba(0,20,40,0.85) 100%
  );
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--color-sand);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.hero-body-inner {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem;
  width: 100%;
  animation: heroFadeUp 1.2s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle-tag {
  display: inline-block;
  background: rgba(201,146,58,0.25);
  border: 1px solid rgba(201,146,58,0.6);
  color: #f5d59a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.35em 1.2em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: #f5d59a; }

.hero-location {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-gold);
  color: #fff;
  border: 2px solid var(--color-gold);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201,146,58,0.4);
}
.btn-primary:hover {
  background: #b8812e;
  border-color: #b8812e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,146,58,0.55);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block;
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  margin: -8px auto;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.site-section {
  padding: 5rem 1.5rem;
}

.site-section:nth-of-type(even) { background: #fff; }

section[id] { scroll-margin-top: calc(var(--navbar-height) + 8px); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-navy));
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

#ueber { background: var(--color-sand); }

.ueber-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.highlights-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

@media screen and (min-width: 1024px) {
  .highlights-box {
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
  }
}

.highlights-box h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-sand-dark);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-sand-dark);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .icon { color: var(--color-gold); margin-top: 2px; }

#galerie { background: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.gallery-item:hover { box-shadow: var(--shadow-hover); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.75);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(0,30,60,0.9), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  gap: 0.5rem;
}
.gallery-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.5; }
.gallery-placeholder .ph-num  { font-size: 0.7rem; opacity: 0.5; font-weight: 700; letter-spacing: 1px; }

#ausstattung { background: var(--color-sand); }

.ausstattung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.ausstattung-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,51,102,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ausstattung-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.ausstattung-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

.ausstattung-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}
.ausstattung-info span {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

#bewertungen {
  background: var(--color-navy);
  color: #fff;
}
#bewertungen .section-title    { color: #fff; }
#bewertungen .section-eyebrow  { color: #f5d59a; }
#bewertungen .section-subtitle { color: rgba(255,255,255,0.75); }
#bewertungen .section-divider  { background: linear-gradient(90deg, #f5d59a, rgba(255,255,255,0.4)); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background var(--transition), transform var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.review-stars {
  color: #f5d59a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.review-author { display: flex; align-items: center; gap: 0.75rem; }

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #e0a84e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-author-info strong { display: block; font-size: 0.9rem; color: #fff; font-weight: 700; }
.review-author-info span   { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.review-summary {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.review-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: #f5d59a;
  line-height: 1;
}
.review-score-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

#buchung { background: #fff; }

.buchung-wrapper {
  background: var(--color-sand);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.smoobu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-border);
}

.smoobu-tab {
  padding: 0.65rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
}
.smoobu-tab:hover { color: var(--color-navy); }
.smoobu-tab.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

.smoobu-panel { display: none; }
.smoobu-panel.active { display: block; }

.calendarWidget { min-height: 300px; }

#apartmentIframeAll { min-height: 500px; }
#apartmentIframeAll iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius);
}

.buchung-privacy {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.6;
  padding: 0.75rem;
  background: rgba(0,51,102,0.04);
  border-radius: 4px;
  border-left: 3px solid var(--color-navy);
}

.kontakt-box {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: sticky;
  top: calc(var(--navbar-height) + 1rem);
}

.kontakt-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.ki-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; color: #f5d59a; }
.kontakt-item a { color: rgba(255,255,255,0.88); }
.kontakt-item a:hover { color: #f5d59a; }

#footer {
  background: #0a1829;
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color var(--transition); }
.footer-nav a:hover { color: #f5d59a; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,10,20,0.93);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: #f5d59a; }

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .site-section { padding: 3.5rem 1.2rem; }
  #hero { background-attachment: scroll; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .gallery-grid    { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .ausstattung-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: 1fr; }

  .buchung-wrapper { padding: 1.25rem; }

  .smoobu-tabs { overflow-x: auto; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media screen and (max-width: 480px) {
  .gallery-grid    { grid-template-columns: 1fr; }
  .ausstattung-grid { grid-template-columns: 1fr; }
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 25, 0.75);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: modalFadeIn 0.2s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
  margin: auto;
  animation: modalSlideIn 0.25s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 1rem 1rem 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-sand);
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 1;
}
.modal-close:hover {
  background: var(--color-navy);
  color: #fff;
}

.modal-content {
  padding: 0 2.5rem 2.5rem;
  clear: both;
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-sand-dark);
}

.modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-navy);
  margin: 1.75rem 0 0.5rem;
}

.modal-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.modal-content ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0 0.75rem;
}

.modal-content ul li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.modal-content a {
  color: var(--color-navy);
  text-decoration: underline;
}
.modal-content a:hover { color: var(--color-gold); }

.modal-legal-hint {
  font-size: 0.78rem !important;
  color: #7a5c00 !important;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 4px;
  padding: 0.5rem 0.75rem !important;
  margin: 0.75rem 0 1.5rem !important;
}

body.modal-open { overflow: hidden; }

@media screen and (max-width: 600px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: 0;
  }
  .modal-content { padding: 0 1.5rem 2rem; }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #0a1829;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--color-gold);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
}

.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.cookie-text p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.cookie-text a {
  color: #f5d59a;
  text-decoration: underline;
}
.cookie-text a:hover { color: var(--color-gold); }

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-gold);
  color: #fff;
  border-color: var(--color-gold);
}
.cookie-btn-accept:hover {
  background: #b8812e;
  border-color: #b8812e;
}

.cookie-btn-info {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.4);
}
.cookie-btn-info:hover {
  border-color: #fff;
  color: #fff;
}

.smoobu-consent-gate {
  min-height: 320px;
  background: linear-gradient(135deg, var(--color-sand), #ede3d5);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  gap: 1rem;
}

.consent-icon {
  font-size: 2.75rem;
  opacity: 0.5;
  line-height: 1;
}

.smoobu-consent-gate h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin: 0;
}

.smoobu-consent-gate p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  max-width: 420px;
  line-height: 1.7;
  margin: 0;
}

.consent-privacy-link {
  font-size: 0.82rem;
  color: var(--color-navy);
  text-decoration: underline;
}
.consent-privacy-link:hover { color: var(--color-gold); }

.consent-btn {
  background: var(--color-navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}
.consent-btn:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

.modal-legal-caps {
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
  color: #333 !important;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem !important;
  font-weight: 600;
}

.review-summary-text {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.review-summary-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}
