:root{
  --bg:#f3ede3;
  --bg2:#f6f1e9;
  --card:#efe6d8;
  --stroke:#d8cbb6;
  --text:#16202a;
  --muted:#445160;
  --brand:#1f3550;
  --gold:#c9a35d;
  --radius:28px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  /* HERO POSITIONING */
  --hero-x: 58%;
  --hero-y: 100%;
  --hero-x-sub: 58%;
  --hero-y-sub: 62%;
}
*{box-sizing:border-box}
html,body{height:100%}
html{background:var(--bg)}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
}
a{color:inherit}
img{max-width:100%;display:block}
/* CONTAINER */
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}
/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(243,237,227,.90);
  border-bottom:1px solid rgba(216,203,182,.72);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  text-decoration:none;
  letter-spacing:.2px;
  color:var(--brand);
  white-space:nowrap;
}
.brand .dot{
  width:10px;height:10px;border-radius:999px;background:var(--brand);
  display:inline-block;
}
/* DESKTOP MENU */
.menu{
  display:flex;
  gap:18px;
  align-items:center;
}
.menu a{
  text-decoration:none;
  color:var(--brand);
  font-weight:650;
  padding:10px 14px;
  border-radius:999px;
}
.menu a:hover{background:rgba(31,53,80,.06)}
.menu a.active{background:rgba(31,53,80,.12)}
/* BURGER + OVERLAY */
.burger{
  display:none;
  width:44px;height:44px;
  border:1px solid rgba(216,203,182,.80);
  background:rgba(239,230,216,.6);
  border-radius:14px;
  padding:10px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--brand);
  border-radius:999px;
}
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:900;
}
.overlay.active{
  opacity:1;
  pointer-events:auto;
}
/* HERO WRAP */
.hero-wrap{padding:26px 0 28px}
.hero-media{
  width:100%;
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(216,203,182,.75);
  background:#e9ddcc;
}
.hero-media img{
  width:100%;
  height:100%;
  display:block;
}
/* HOMEPAGE HERO */
body.home .hero-media{ height:550px; }
body.home .hero-media img{
  object-fit:cover;
  object-position: var(--hero-x) var(--hero-y);
}
/* SUBPAGES HERO (BANNER) */
body.subpage .hero-media{
  aspect-ratio: 28 / 11;
  border:1px solid rgba(216,203,182,.55);
}
body.subpage .hero-media img{
  object-fit:cover;
  object-position: var(--hero-x-sub) var(--hero-y-sub);
}
/* TYPO */
h1{
  margin:0 0 10px;
  color:var(--brand);
  line-height:1.05;
}
body.home h1{font-size:52px}
body.subpage h1{font-size:54px}
.kicker{
  font-size:12px;
  letter-spacing:.22em;
  font-weight:800;
  color:var(--brand);
  text-transform:uppercase;
  margin:0 0 8px;
}
.subline{
  font-size:18px;
  line-height:1.55;
  color:var(--muted);
  margin:12px 0 0;
  max-width:78ch;
}
/* HERO CARD */
.hero-card{
  background:rgba(239,230,216,.92);
  border:1px solid rgba(216,203,182,.80);
  border-radius:var(--radius);
  padding:28px 28px 26px;
  box-shadow:var(--shadow);
}
body.home .hero-card{margin-top:16px}
/* Subpages: Card UNTER dem Banner (kein Overlap, kein Runterrutschen) */
body.subpage .hero-card{
  width:100%;
  max-width:min(900px, calc(100% - 40px));
  margin:16px auto 0;
}
/* PAGE */
.page{
  position:relative;
  padding:18px 0 34px;
}
.page.narrow{
  width:min(900px, calc(100% - 40px));
  margin:0 auto;
}
.page.center{ text-align:left; }
/* PANELS */
.panel{
  background:rgba(239,230,216,.92);
  border:1px solid rgba(216,203,182,.80);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 22px 18px;
  margin:0 0 16px;
}
.panel h2{
  margin:0 0 10px;
  color:var(--brand);
  line-height:1.15;
  font-size:28px;
}
.panel h3{
  margin:0 0 8px;
  color:var(--brand);
}
.panel .name{
  font-weight:900;
  color:var(--brand);
  margin:2px 0 10px;
}
.panel ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.55;
}
.panel li{ margin:6px 0; }
/* CTA ROW */
.cta-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}
/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(216,203,182,.85);
  background:rgba(243,237,227,.9);
  text-decoration:none;
  font-weight:750;
  color:var(--brand);
}
.btn:hover{ background:rgba(31,53,80,.06); }
.btn.primary{
  background:rgba(31,53,80,.12);
  border-color:rgba(31,53,80,.18);
}
.small{ font-size:13px; color:var(--muted); }
.small.hint{ margin:14px 0 0; }
/* FORM CARD */
.form-card{
  background:rgba(239,230,216,.92);
  border:1px solid rgba(216,203,182,.80);
  border-radius:var(--radius);
  padding:22px 22px 18px;
  box-shadow:var(--shadow);
}
.form-card h2{
  margin:0 0 12px;
  color:var(--brand);
  font-size:22px;
}
.notice{
  margin:0 0 14px;
  font-weight:800;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(216,203,182,.80);
  background:rgba(246,241,233,.75);
}
.notice.ok{ color:#1b6b3a; }
.notice.err{ color:#8a1d1d; }
.honey{ display:none; }
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:10px;
}
.form-grid .span-2{ grid-column: span 2; }
.form-grid .span-4{ grid-column: 1 / -1; }
label{
  display:block;
  font-weight:700;
  color:var(--brand);
  margin:0 0 6px;
  font-size:14px;
}
input, textarea, select{
  width:100%;
  border:1px solid rgba(216,203,182,.90);
  border-radius:16px;
  padding:12px 12px;
  font-size:16px;
  background:rgba(246,241,233,.85);
  color:var(--text);
  outline:none;
}
textarea{ min-height:140px; resize:vertical; }
input:focus, textarea:focus, select:focus{
  border-color:rgba(31,53,80,.45);
  box-shadow:0 0 0 4px rgba(31,53,80,.08);
}
.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
/* BUCHUNG LAYOUT */
.booking-layout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:32px;
  align-items:start;
  margin-top:26px;
}
.about{
  margin:0;
  display:grid;
  gap:16px;
}
.portrait{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(216,203,182,.75);
  background:#e9ddcc;
}
/* FOOTER */
.footer{
  margin-top:34px;
  padding:26px 0 36px;
  border-top:1px solid rgba(216,203,182,.72);
}
.footer-links{ margin-top:8px; }
/* RESPONSIVE */
@media (max-width:900px){
  .booking-layout{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  body.home .hero-media{height:420px}
  /* Burger sichtbar */
  .burger{ display:flex; }
  /* Mobile Menü als Drawer */
  .menu{
    position:fixed;
    top:72px;
    left:16px;
    right:16px;
    background:rgba(243,237,227,.98);
    border:1px solid rgba(216,203,182,.72);
    border-radius:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.14);
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:6px;
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    z-index:950;
  }
  .menu.open{
    opacity:1;
    transform: translateY(0);
    pointer-events:auto;
  }
  .menu a{ padding:12px 14px; }
  /* HOME – Mobile: ganze Figur sichtbar, kein Leerraum */
  body.home .hero-media{ height:auto; }
  body.home .hero-media img{
    width:100%;
    height:auto;
    object-fit:contain;
    object-position: var(--hero-x) var(--hero-y);
    display:block;
  }
}
@media (max-width:520px){
  body.subpage h1{font-size:44px}
  body.home h1{font-size:40px}
  .form-grid{ grid-template-columns: 1fr; }
  .form-grid .span-2,
  .form-grid .span-4{ grid-column:auto; }
}

/* =========================
   FIX – Bilder auf Buchungsseite NICHT croppen
   ========================= */
.booking-layout img,
.panel img{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* =========================
   FINAL – Buchungsseite: Bilder niemals croppen
   ========================= */
body.bookingpage img{
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}
body.bookingpage .panel,
body.bookingpage .form-card,
body.bookingpage .card,
body.bookingpage .media,
body.bookingpage .thumb,
body.bookingpage figure,
body.bookingpage .img,
body.bookingpage .image{
  height: auto !important;
  aspect-ratio: auto !important;
}
body.bookingpage .panel,
body.bookingpage .form-card,
body.bookingpage figure,
body.bookingpage .media,
body.bookingpage .thumb{
  overflow: visible !important;
}

/* ============ ANGEBOT / SHOOTING – Triptych Layout ============ */
body.offer-page .triptych{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  align-items:stretch;
}
body.offer-page .triptych img{
  width:100% !important;
  height:auto !important;
  object-fit:cover;
  border-radius: calc(var(--radius) - 8px);
  border:1px solid rgba(216,203,182,.75);
  box-shadow: var(--shadow);
  background:#e9ddcc;
}
@media (max-width:900px){
  body.offer-page .triptych{ grid-template-columns:1fr; }
}

/* ============ ANGEBOT / SHOOTING – Banner mobil stabil lassen ============ */
@media (max-width: 860px){
  body.subpage.offer-page .hero-media{
    aspect-ratio: 28 / 11 !important;
    height:auto !important;
  }
  body.subpage.offer-page .hero-media img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position: 58% 62% !important;
  }
}
	  /* FIX: Verhindert das Überlappen langer Wörter auf Mobilgeräten */
h1 {
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 480px) {
  body.subpage h1 {
    font-size: 32px; /* Verkleinert die Schrift nur auf sehr kleinen Handys */
  }
}
	/* Korrektur für das NordseeAuge Vertrauens-Banner */
.na-trust-bar {
    display: flex;
    justify-content: center; /* Zentriert die Inhalte */
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;               /* Erzeugt Abstand zwischen den Elementen */
    background: #f8f9fa; 
    padding: 30px 20px;
    margin: 40px auto;       /* Zentriert den gesamten Block auf der Seite */
    max-width: 1200px;       /* Verhindert, dass es zu breit wird */
    border-radius: 12px;
    border-left: 6px solid #005580;
    text-align: center;
}

.na-trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: #005580;
}
	  /* Diese Zeilen sorgen für einheitliche Farben, egal was vorher definiert wurde */
.page p, .page li, .page .subline { 
    color: var(--muted) !important; 
    line-height: 1.6; 
}
.page h2, .page h3 { 
    color: var(--brand) !important; 
}