/* Self-hosted fonts – kein CDN, DSGVO-konform */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/playfair-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/playfair-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('fonts/raleway.woff2') format('woff2');
}

:root {
  --primary: #E5C09D;
  --primary-dark: #c9976a;
  --primary-light: #f5e8d8;
  --primary-xlight: #fdf8f3;
  --accent: #7a5c3c;
  --accent-dark: #4a3220;
  --text: #2c2218;
  --text-muted: #7a6a5a;
  --bg: #fdf8f3;
  --white: #ffffff;
  --contact-bg: #6b4a2e;
  --border: rgba(229,192,157,0.35);
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
}
.logo small {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 11px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, color 0.2s;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: var(--primary); }

.btn-light {
  background: var(--primary);
  color: var(--accent);
  border: none;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Lato', sans-serif;
  display: inline-block;
  text-decoration: none;
}
.btn-light:hover { background: #f0d4b4; transform: translateY(-2px); }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent);
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── SECTIONS ── */
section { padding: 72px 5%; }
.section-white { background: var(--white); }
.section-light { background: var(--primary-light); }
.section-dark { background: var(--accent-dark); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.card-sand {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent-dark);
  padding: 72px 5%;
  text-align: center;
}
.cta-section h2 { color: var(--primary-light); margin-bottom: 14px; }
.cta-section p { color: rgba(229,192,157,0.75); margin-bottom: 32px; font-size: 16px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer {
  background: #1a0f08;
  padding: 40px 5% 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(229,192,157,0.15);
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(229,192,157,0.6);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(229,192,157,0.45);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(229,192,157,0.3); }
/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(253,248,243,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  section { padding: 48px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
