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

:root {
  --sand:    #f5f0e8;
  --sand-dk: #e8e0d0;
  --stone:   #8c8070;
  --ink:     #2a2520;
  --ink-lt:  #4a433c;
  --accent:  #5a7a6a;
  --accent-lt: #eaf2ee;
  --white:   #ffffff;
  --radius:  12px;
  --shadow:  0 2px 24px rgba(42,37,32,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dk);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .02em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-lt);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}
nav a:hover { color: var(--accent); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(90,122,106,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(140,128,112,.06) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-text p {
  font-size: 1.05rem;
  color: var(--ink-lt);
  max-width: 440px;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
}
.btn:hover { background: #4a6a5a; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  margin-left: 1rem;
}
.btn-outline:hover { background: var(--accent-lt); transform: translateY(-1px); }

/* illustration placeholder */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
  max-width: 340px;
  width: 100%;
}
.hero-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-lt);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon svg { width: 36px; height: 36px; stroke: var(--accent); }
.hero-card p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink-lt);
  line-height: 1.6;
}
.beach-emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .75rem;
}

/* ── SECTION SHARED ────────────────────────────────────── */
section { scroll-margin-top: 68px; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-lt);
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ── LEISTUNGEN ────────────────────────────────────────── */
#leistungen { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}
.card p { font-size: .9rem; color: var(--ink-lt); line-height: 1.6; }

/* ── ÜBER UNS ──────────────────────────────────────────── */
#ueber { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.about-text, .about-visual { display: flex; flex-direction: column; }
.about-text p { font-size: .975rem; color: var(--ink-lt); margin-bottom: 1rem; }
.about-highlight {
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: auto;
}
.about-highlight p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}
.about-photos {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.about-photos img {
  width: 50%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── KONTAKT ───────────────────────────────────────────── */
#kontakt { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2.25rem 1.5rem;
}
.contact-row-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-lt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.contact-row-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.contact-card strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--stone);
  margin-bottom: .4rem;
}
.contact-card span, .contact-card a {
  font-size: .975rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--accent); text-decoration: underline; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
}
footer a { color: rgba(255,255,255,.7); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 7rem; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .btn-outline { display: none; }
}
