
:root {
  --sand: #f6efe3;
  --sand-dark: #ece0cd;
  --ink: #2b2620;
  --ink-soft: #5b5347;
  --navy: #1f3b3f;
  --navy-dark: #15292c;
  --accent: #d97b4f;
  --accent-dark: #bf6238;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 59, 63, 0.12);
  font-size: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}
h1, h2, h3 { font-family: "Josefin Sans", "Source Sans Pro", sans-serif; margin: 0 0 0.4em; font-weight: 600; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-dark);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav .brand { font-family: "Josefin Sans", sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: 0.02em; color: var(--navy); text-decoration: none; }
.nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.nav a.navlink { text-decoration: none; font-size: 0.95rem; color: var(--ink-soft); font-weight: 600; transition: color .2s; }
.nav a.navlink:hover { color: var(--accent-dark); }
.nav .cta {
  background: var(--accent); color: #fff; padding: 10px 20px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  transition: background .2s;
}
.nav .cta:hover { background: var(--accent-dark); }
.nav-toggle { display: none; }

/* --- Hero --- */
.hero {
  position: relative; height: 88vh; min-height: 480px; max-height: 780px;
  display: flex; align-items: flex-end;
  background: linear-gradient(180deg, rgba(21,41,44,0.15), rgba(21,41,44,0.75)), url("_assets/le-cdn.website-editor.net/4a9500d33a_Strand+und+Dünen,+Norddeich-1920w.jpg") center/cover no-repeat;
  color: #fff;
}
.hero .container { padding-bottom: 72px; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; font-weight: 600; opacity: 0.85; margin-bottom: 10px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 720px; margin-bottom: 14px; }
.hero p { font-size: 1.15rem; max-width: 560px; opacity: 0.92; margin-bottom: 28px; }
.hero .buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 0.98rem; transition: transform .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* --- Sections --- */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker { color: var(--accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy); }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

/* --- House section --- */
.house-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.house-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.info-card { background: #fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.05rem; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.info-card h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; }
.info-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.info-card li { margin-bottom: 6px; }

/* --- Activities grid --- */
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(31,59,63,0.18); }
.card .thumb { height: 190px; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.card .more { margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--accent-dark); text-decoration: none; }

/* --- Gallery preview --- */
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-preview a { border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow); }
.gallery-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-preview a:hover img { transform: scale(1.06); }
.gallery-cta { text-align: center; margin-top: 36px; }

/* --- Location --- */
.location-dark { background: var(--navy); color: #f1ece2; }
.location-dark .section-head h2 { color: #fff; }
.location-dark .section-head p { color: rgba(241,236,226,0.75); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.location-grid iframe { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 380px; border: 0; }
.location-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.location-list li { display: flex; gap: 10px; align-items: baseline; color: rgba(241,236,226,0.9); }
.location-list li::before { content: "→"; color: var(--accent); font-weight: 700; }
.location-address { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(241,236,226,0.2); }
.location-address strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 6px; }

/* --- Footer --- */
footer { background: var(--navy-dark); color: rgba(241,236,226,0.65); padding: 48px 0; font-size: 0.9rem; }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer a { color: rgba(241,236,226,0.85); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .nav ul { display: none; }
  .house-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .activity-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

/* --- Legal / prose pages (Impressum etc.) --- */
.legal-hero { background: var(--navy); color: #fff; padding: 64px 0 48px; }
.legal-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-body { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-block { margin-bottom: 36px; }
.legal-block h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.legal-block p { color: var(--ink-soft); margin: 0 0 10px; }
.legal-address { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 26px; margin-bottom: 36px; }
.legal-address p { margin: 0; color: var(--ink); }
.legal-back { display: inline-block; margin-bottom: 20px; color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.legal-back:hover { color: #fff; }
