

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── Header fix ─── */
.header, .header.scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 24px rgba(11,47,107,.07) !important;
}

/* ─── Variablen ─── */
.ship-page {
  --navy:   #0b2f6b;
  --deep:   #071e3d;
  --mid:    #1a4f8a;
  --steel:  #4a7fad;
  --ice:    #a8c8e8;
  --frost:  #f0f4fb;
  --white:  #ffffff;
  --text:   #0d1f3c;
  --muted:  #5a7090;
  --line:   rgba(11,47,107,.09);
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   36px;
  --shadow-sm:  0 4px 16px rgba(11,47,107,.07);
  --shadow-md:  0 12px 40px rgba(11,47,107,.11);
  --shadow-lg:  0 24px 70px rgba(11,47,107,.15);
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--frost);
  color: var(--text);
}

/* ─── Container / Section ─── */
.ship-page .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: center;
}
.ship-page .content { max-width: 900px; width: 100%; }
.ship-page .section {
  padding: 88px 0;
  background: var(--white);
}
.ship-page .section:nth-child(even) { background: var(--frost); }
@media (max-width: 700px) { .ship-page .section { padding: 60px 0; } }

/* ─── Eyebrow ─── */
.ship-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--steel);
  background: rgba(74,127,173,.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ship-page .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  border: 1.5px solid var(--steel);
}

/* ─── Typografie ─── */
.ship-page h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0;
}
.ship-page .lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-top: 16px;
  font-weight: 300;
}
.ship-page p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.92rem;
  margin-top: 14px;
}

/* ─── Buttons ─── */
.ship-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 0.72rem;
  text-decoration: none;
  border: 1.5px solid rgba(11,47,107,.2);
  background: var(--white);
  color: var(--navy);
  transition: all .25s ease;
  white-space: nowrap;
}
.ship-page .btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ship-page .btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 32px rgba(11,47,107,.25);
}
.ship-page .btn-primary:hover {
  background: var(--mid);
  border-color: var(--mid);
}
.ship-page .btn-ghost {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  color: var(--navy);
}
.ship-page .cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.ship-page .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep);
}
.ship-page .hero > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
  display: block !important;
  max-width: none !important;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ship-page .hero:hover > img { transform: scale(1.0); }

.ship-page .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,30,61,.96) 0%, rgba(7,30,61,.3) 60%, transparent 100%),
    linear-gradient(to right, rgba(7,30,61,.4) 0%, transparent 60%);
}
/* Blauer Glanz-Akzent oben */
.ship-page .hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--ice) 40%, var(--steel) 60%, transparent 100%);
  z-index: 3;
}
.ship-page .hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0 60px;
  color: #fff;
}

/* Breadcrumbs */
.ship-page .breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ship-page .breadcrumbs a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}
.ship-page .breadcrumbs a:hover { color: var(--ice); }
.ship-page .breadcrumbs span[aria-current] { color: var(--ice); }

.ship-page .hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.ship-page .hero .sub {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 620px;
  font-weight: 300;
}
/* Dekorativer Strich */
.ship-page .hero .content::before {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--steel));
  border-radius: 2px;
  margin-bottom: 20px;
}
/* Glasmorphism CTA-Row im Hero */
.ship-page .hero .cta-row {
  margin-top: 30px;
}
.ship-page .hero .btn-ghost {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(12px);
}
.ship-page .hero .btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   FACTS – weiche Karten
═══════════════════════════════════════ */
.ship-page .facts {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .ship-page .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .ship-page .facts { grid-template-columns: 1fr 1fr; } }

.ship-page .fact {
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: transform .25s, box-shadow .25s;
}
.ship-page .fact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ship-page .fact .k {
  font-size: 0.62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 8px;
}
.ship-page .fact .v {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.3;
}

/* ─── Bullets ─── */
.ship-page .bullets {
  margin-top: 22px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
@media (max-width: 860px) { .ship-page .bullets { grid-template-columns: 1fr; } }

.ship-page .bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.88rem;
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.ship-page .bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  border: 1.5px solid var(--steel);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ─── SEO ─── */
.ship-page .seo {
  background: linear-gradient(160deg, var(--frost) 0%, var(--white) 100%);
}

/* ═══════════════════════════════════════
   GALERIE
═══════════════════════════════════════ */
.ship-page .gallery {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
/* Erstes Bild groß */
.ship-page .gallery .g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .ship-page .gallery { grid-template-columns: repeat(2, 1fr); }
  .ship-page .gallery .g-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .ship-page .gallery { grid-template-columns: 1fr; }
  .ship-page .gallery .g-item:first-child { grid-column: span 1; }
}

.ship-page .g-item {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.ship-page .g-item:first-child { aspect-ratio: 4/3; }

.ship-page .g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,30,61,.65) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  border-radius: var(--r-lg);
}
.ship-page .g-item:hover::after { opacity: 1; }

.ship-page .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block !important;
  max-width: none !important;
  transition: transform .5s ease;
  border-radius: var(--r-lg);
}
.ship-page .g-item:hover img { transform: scale(1.06); }

.ship-page .g-item .badge {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 0.62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: rgba(7,30,61,.55);
  border: 1px solid rgba(168,200,232,.25);
  backdrop-filter: blur(10px);
  border-radius: 999px;
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.ship-page .lightbox, .lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5,10,25,.9);
  z-index: 2000;
  padding: 18px;
  backdrop-filter: blur(6px);
}
.ship-page .lightbox.open, .lightbox.open { display: flex; }

.lb-dialog {
  width: min(1080px, 100%);
  border-radius: var(--r-xl, 36px);
  overflow: hidden;
  border: 1px solid rgba(168,200,232,.12);
  background: rgba(11,47,107,.15);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
  display: flex;
  flex-direction: column;
}
.lb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(168,200,232,.1);
}
.lb-title {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.lb-btn {
  appearance: none;
  border: 1px solid rgba(168,200,232,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 0.68rem;
  transition: background .2s;
}
.lb-btn:hover { background: rgba(255,255,255,.16); }

.lb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  flex: 1;
}
.lb-stage img, #lbImg {
  max-width: 100%;
  max-height: 72vh;
  width: auto; height: auto;
  border-radius: var(--r-lg, 28px);
  border: 1px solid rgba(168,200,232,.1);
  display: block;
}
.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(168,200,232,.2);
  background: rgba(11,47,107,.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.4rem;
  transition: background .2s, transform .2s;
}
.lb-nav:hover { background: rgba(11,47,107,.7); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-foot {
  padding: 12px 18px;
  border-top: 1px solid rgba(168,200,232,.1);
  color: rgba(255,255,255,.65);
  font-size: 0.8rem;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.lb-count {
  font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; font-size: 0.65rem;
  color: var(--ice, #a8c8e8);
}

/* ═══════════════════════════════════════
   WHY – 2-col
═══════════════════════════════════════ */
.ship-page .two-col {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) { .ship-page .two-col { grid-template-columns: 1fr; } }

.ship-page .why ul {
  margin-top: 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ship-page .why li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.88rem;
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.ship-page .why li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  border: 1.5px solid var(--steel);
  flex-shrink: 0;
  margin-top: 6px;
}
.ship-page .why-media {
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.ship-page .why-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block !important;
  max-width: none !important;
}

/* ═══════════════════════════════════════
   EVENTS GRID
═══════════════════════════════════════ */
.ship-page .events { background: var(--frost); }
.ship-page .event-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .ship-page .event-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ship-page .event-grid { grid-template-columns: 1fr; } }

.ship-page .event-card {
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .28s, box-shadow .28s;
  display: flex;
  flex-direction: column;
}
.ship-page .event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ship-page .event-card .img {
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.ship-page .event-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block !important;
  max-width: none !important;
  transition: transform .45s ease;
}
.ship-page .event-card:hover .img img { transform: scale(1.07); }
.ship-page .event-card .body { padding: 20px 20px 22px; }
.ship-page .event-card .tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--steel);
  background: rgba(74,127,173,.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.ship-page .event-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--text);
}
.ship-page .event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.75;
}
.ship-page .event-card .link {
  margin-top: 14px;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ═══════════════════════════════════════
   PREISE + KARTE
═══════════════════════════════════════ */
.ship-page .prices-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px) { .ship-page .prices-grid { grid-template-columns: 1fr; } }

.ship-page .table-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.ship-page table { width: 100%; border-collapse: collapse; }
.ship-page th, .ship-page td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  line-height: 1.55;
}
.ship-page th {
  background: rgba(11,47,107,.05);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 0.62rem;
}
.ship-page tr:last-child td { border-bottom: none; }
.ship-page td:nth-child(2) {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}
.ship-page .hint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.85;
  background: var(--frost);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.ship-page .map {
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.ship-page .map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ═══════════════════════════════════════
   FORMULAR
═══════════════════════════════════════ */
.ship-page #anfrage { background: var(--frost); }
.ship-page .form-wrap { max-width: 980px; }
.ship-page .form-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .ship-page .form-grid { grid-template-columns: 1fr; } }

.ship-page .field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.ship-page .field input,
.ship-page .field select,
.ship-page .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(11,47,107,.14);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color .2s, box-shadow .2s;
}
.ship-page .field input:focus,
.ship-page .field select:focus,
.ship-page .field textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 4px rgba(74,127,173,.1);
}
.ship-page .field textarea { min-height: 150px; resize: vertical; }
.ship-page .field.full { grid-column: 1 / -1; }
.ship-page .hp { display: none !important; }

.ship-page .submit-row {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.ship-page .btn-submit {
  appearance: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(11,47,107,.25);
  transition: background .22s, transform .22s, box-shadow .22s;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.ship-page .btn-submit:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(11,47,107,.3);
}
.ship-page .form-msg {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 14px;
  color: var(--muted);
}
.ship-page .form-msg.ok { color: #0b5c36; font-weight: 600; }
.ship-page .form-msg.err { color: #9b1c1c; font-weight: 600; }

/* ═══════════════════════════════════════
   ANIMATION
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ship-page .section { animation: fadeUp 0.55s ease both; }
.ship-page .section:nth-child(2) { animation-delay: .05s; }
.ship-page .section:nth-child(3) { animation-delay: .1s; }
.ship-page .section:nth-child(4) { animation-delay: .15s; }