@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');

:root {
  --stone:    #f5f2ee;
  --warm:     #ede8e0;
  --sand:     #c8b99a;
  --earth:    #7a6652;
  --deep:     #2e2520;
  --moss:     #4a6741;
  --sky:      #8ca5b4;
  --accent:   #b85c38;

  --display:  'Cormorant Garamond', Georgia, serif;
  --body:     'DM Sans', Helvetica, sans-serif;

  --max:      1160px;
  --nav-h:    68px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--deep);
  background: var(--stone);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}
.nav-brand .wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--deep);
  letter-spacing: 0.02em;
}
.nav-brand .tagline-sub {
  font-size: 0.68rem;
  color: var(--earth);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--deep); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--deep);
  color: var(--stone) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: var(--nav-h);
}

.hero-text {
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 8vw, 6rem) clamp(1.5rem, 8vw, 6rem);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1.8rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--earth);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--earth);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .2s;
  border-radius: 2px;
}
.btn-primary {
  background: var(--deep);
  color: var(--stone);
}
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  border: 1px solid var(--sand);
  color: var(--earth);
  margin-left: 1rem;
}
.btn-ghost:hover { border-color: var(--deep); color: var(--deep); }

.hero-visual {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(46,37,32,0.15));
}
.hero-quote {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--stone);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  max-width: 220px;
  text-align: right;
  line-height: 1.4;
}

/* ─── ANGEBOTE PREVIEW ───────────────────────────── */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--deep);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-lead {
  color: var(--earth);
  max-width: 560px;
  margin-bottom: 3.5rem;
  font-size: 1.02rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--sand);
  border: 1.5px solid var(--sand);
}
.card {
  background: var(--stone);
  padding: 2.2rem 2rem;
  text-decoration: none;
  transition: background .2s;
  display: block;
}
.card:hover { background: var(--warm); }
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.9rem;
  color: var(--earth);
  line-height: 1.65;
}
.card-arrow {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─── DIVIDER QUOTE ──────────────────────────────── */
.quote-block {
  background: var(--deep);
  color: var(--stone);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  max-width: 760px;
  margin: 0 auto 1.2rem;
  line-height: 1.4;
  color: var(--warm);
}
.quote-block cite {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ─── ÜBER MICH TEASER ───────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--warm);
}
.about-img {
  min-height: 420px;
  background: var(--sand);
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .section-title { margin-bottom: 1rem; }
.about-content p {
  color: var(--earth);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--deep);
  color: var(--sand);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.7; }
.footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color .2s;
}
.footer ul a:hover { color: var(--stone); }
.footer-bottom {
  background: rgba(0,0,0,.25);
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  color: var(--earth);
}

/* ─── INNER PAGES ────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 3rem;
  padding-inline: clamp(1.5rem, 5vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--warm);
}
.page-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
}
.page-content h2 {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--deep);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.page-content p {
  color: var(--earth);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.sidebar-box {
  background: var(--warm);
  padding: 1.8rem;
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  border-left: 3px solid var(--accent);
}
.sidebar-box h4 {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--deep);
}
.sidebar-box p { font-size: 0.88rem; color: var(--earth); }

/* ─── MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 40vh; }
  .nav-links { display: none; }
  .footer { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .page-body { grid-template-columns: 1fr; }
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero-headline { animation: fadeUp .7s .1s ease both; }
.hero-lead     { animation: fadeUp .7s .2s ease both; }
.hero-buttons  { animation: fadeUp .7s .3s ease both; }
