/* ============================================
   EMOTION WEDDING — Style System
   Editorial Wedding Aesthetic
   ============================================ */

/* Lokal gehostete Schriften (DSGVO-konform) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/lato-v25-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lato-v25-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/lato-v25-latin-700.woff2') format('woff2');
}

:root {
  /* Farben — warme Editorial-Palette */
  --bg: #F2EBDF;                  /* Hauptfarbe: warmes Creme */
  --bg-alt: #ECE3D2;              /* Sekundär: leicht dunkleres Creme */
  --bg-deep: #E5DAC4;             /* Tieferes Sand */
  --text-primary: #1A1A1A;        /* Anthrazit */
  --text-secondary: #6B6055;      /* Warmes Mittelgrau */
  --text-muted: #9C8F80;          /* Helles Taupe */
  --accent: #A89A82;              /* Warmes Taupe / Old-Gold */
  --accent-dark: #8A7C66;         /* Tieferes Taupe */
  --border: rgba(40, 30, 22, 0.12);
  --border-soft: rgba(40, 30, 22, 0.06);

  /* Karten-System (Dark Editorial Cards — Velvia-Style) */
  --bg-card: #2D3741;             /* Card: dunkles Slate-Blau */
  --bg-card-2: #36404B;           /* Card-Hover */
  --card-text: #FFFFFF;           /* Card-Headlines */
  --card-text-secondary: #C8C2B8; /* Card-Body */
  --shadow-outer: 0 20px 50px rgba(20, 30, 40, 0.15), 0 6px 16px rgba(20, 30, 40, 0.10);
  --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --shadow-hover: 0 28px 70px rgba(20, 30, 40, 0.22), 0 10px 24px rgba(20, 30, 40, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Typografie */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Lato', 'Helvetica Neue', system-ui, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --content-width: 900px;
  --gutter: 24px;

  /* Übergänge */
  --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAFIE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.015em;
}

h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-dark);
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
}

h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-dark);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}

h4 {
  font-size: 22px;
  font-weight: 500;
}

p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
}

/* Auszeichnungen (Eyebrow / Label) */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-block;
}

/* Zierliches Trennelement */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.divider span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Zitat-Stil */
blockquote, .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.4;
  text-align: center;
  color: var(--text-primary);
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: block;
  line-height: 0;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

@media (max-width: 900px) {
  .logo img { height: 60px; }
}

/* Brand-Statement (großes zentrales Logo) */
.brand-statement {
  background: var(--bg);
  text-align: center;
  padding: 100px var(--gutter) 80px;
}

.brand-statement img {
  height: auto;
  width: min(560px, 80vw);
  display: inline-block;
}

@media (max-width: 900px) {
  .brand-statement { padding: 70px 20px 50px; }
  .brand-statement img { width: 88vw; }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--accent-dark); }

.burger {
  display: none;
  color: var(--text-primary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 18px 42px;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
  transition: var(--transition);
}

.btn:hover {
  background: var(--text-primary);
  color: var(--bg);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* ============================================
   LAYOUT-CONTAINER
   ============================================ */

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px var(--gutter);
}

section.narrow {
  max-width: var(--content-width);
}

section.full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.text-center { text-align: center; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-alt);
  overflow: hidden;
  margin: 0;
  max-width: 100%;
  padding: 100px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: #fff;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 32px;
}

.hero-content h1 em { color: rgba(255, 255, 255, 0.85); }

.hero-content .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-content .btn {
  border-color: #fff;
  color: #fff;
}

.hero-content .btn:hover {
  background: #fff;
  color: var(--text-primary);
}

/* ============================================
   SEKTIONS-HEADER
   ============================================ */

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-header .eyebrow {
  margin-bottom: 18px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p {
  font-size: 17px;
}

/* ============================================
   FEATURES / DREI-SPALTEN
   ============================================ */

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}

.three-col-item {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: var(--card-text-secondary);
}

.three-col-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover), var(--shadow-inner);
  background: var(--bg-card-2);
}

.three-col-item .number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.three-col-item h3 {
  margin-bottom: 16px;
  color: var(--card-text);
}

.three-col-item p { color: var(--card-text-secondary); }

/* ============================================
   PROCESS / BUCHUNGSPROZESS
   ============================================ */

.process {
  background: var(--bg-alt);
  max-width: 100%;
  margin: 80px 0;
}

.process-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 36px 40px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  align-items: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  color: var(--card-text-secondary);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover), var(--shadow-inner);
  background: var(--bg-card-2);
}

.process-step:last-child { margin-bottom: 0; }

.process-step .step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.process-step h4 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--card-text);
}

.process-step p { margin: 0; color: var(--card-text-secondary); }

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-deep);
  padding: 80px var(--gutter) 32px;
  text-align: center;
  margin-top: 0;
}

footer .footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 300;
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

footer .footer-cta {
  margin-bottom: 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--accent-dark); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  section { padding: 70px 20px; }
  .three-col { grid-template-columns: 1fr; gap: 50px; }
  .process-step { grid-template-columns: 70px 1fr; gap: 20px; }
  .process-step .step-num { font-size: 36px; }

  .burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; }

  .hero { min-height: 70vh; padding: 60px 20px; }
  blockquote, .quote { margin: 50px auto; }
}
