* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f6f0e7;
  --bg-alt: #efe4d6;
  --surface: rgba(255, 255, 255, 0.58);
  --text: #4e433c;
  --muted: #7d6f64;
  --sage: #a7b7a1;
  --terracotta: #c99375;
  --line: rgba(78, 67, 60, 0.12);
  --shadow: 0 18px 40px rgba(88, 71, 58, 0.08);
  --radius: 24px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9f4ec 0%, #f4ede3 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246, 240, 231, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  font-weight: 500;
  color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--terracotta);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--text);
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(167, 183, 161, 0.25), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201, 147, 117, 0.22), transparent 28%),
    linear-gradient(135deg, #f5eee5 0%, #ebdfd1 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23cdb9a8' stroke-opacity='0.35'%3E%3Ccircle cx='130' cy='130' r='54'/%3E%3Ccircle cx='130' cy='130' r='80'/%3E%3Ccircle cx='130' cy='130' r='106'/%3E%3C/g%3E%3C/svg%3E") center/340px no-repeat;
  pointer-events: none;
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-label,
.card-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 600;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  font-weight: 600;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  margin: 0.75rem 0 1rem;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

p,
li {
  font-size: 1.12rem;
  line-height: 1.75;
}

strong {
  color: var(--text);
}

.hero-text {
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sage);
  color: #243024;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}

.section {
  padding: 5.5rem 0;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(239, 228, 214, 0.52), rgba(239, 228, 214, 0.2));
}

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.soft-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.42));
}

.accent-card {
  background: linear-gradient(180deg, rgba(167, 183, 161, 0.28), rgba(255,255,255,0.45));
}

.pricing-card p + p {
  margin-top: 0.35rem;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.icon-list li::before {
  content: "•";
  color: var(--terracotta);
  margin-right: 0.55rem;
}

.center {
  text-align: center;
}

.contact-link {
  display: inline-block;
  font-weight: 600;
  color: var(--text);
  transition: opacity 0.2s ease, transform 0.2s ease;
  word-break: break-word;
}

.contact-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.contact-link.large {
  font-size: 1.08rem;
}

.contact-box {
  text-align: center;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-box p + p {
  margin-top: 1rem;
}

.instagram-profile-link-wrap {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 2rem;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--sage);
  color: #243024;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.instagram-grid .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.page-hero.small {
  padding: 4rem 0 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  background: rgba(255,255,255,0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .two-col,
  .grid-3,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1rem 1.4rem;
    background: rgba(246, 240, 231, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 78vh;
  }

  .btn,
  .instagram-btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-text p + p {
  margin-top: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.08)
  );
  pointer-events: none;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 320px;
  }
}
/* HERO IMAGE */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.3)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 650px;
}

.hero-text {
  margin-top: 1rem;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}/* HERO SMALL */
.small-hero {
  padding: 4rem 0;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* TEXT */
.hero-text-box h1 {
  margin-top: 0.5rem;
}

.hero-text-box p {
  margin-top: 1rem;
}

/* IMAGE GRID */
.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.hero-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

/* großes Bild oben */
.hero-images img:first-child {
  grid-column: span 2;
  height: 240px;
  object-position: center 76%;
}

/* unten links */
.hero-images img:nth-child(2) {
  object-position: center 70%;
}

/* unten rechts */
.hero-images img:nth-child(3) {
  object-position: center 50%;
}
/* HOVER (sehr subtil) */
.hero-images img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-images img {
    height: 150px;
  }

  .hero-images img:first-child {
    height: 200px;
    object-position: center 35%;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .logo span {
    font-size: 1.2rem;
  }

  .logo img {
    height: 34px;
  }
}
.legal-container {
  max-width: 900px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.legal-card + .legal-card {
  margin-top: 1.2rem;
}

.legal-card h2 {
  margin-bottom: 0.8rem;
}

.legal-card p + p {
  margin-top: 0.8rem;
}