/*
  Farbpalette & Schriftarten aus https://www.erwache.com/2026
  Gold: #CFA649  |  Dunkelblau Referenz: #002f4b
  Interpretation: ruhig, aber mit Präsenz. Weiß/Creme mit Goldakzenten,
  starker Typografie und grafischen Elementen statt Fotos.
  Schriften: Raleway (Überschriften), Roboto (Fließtext) — max. 2 Schriften.
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --gold: #CFA649;
  --gold-light: #F5E9D2;
  --gold-pale: #FDF6EA;
  --gold-dark: #B08A3A;
  --gold-deep: #8F6D23;
  --dark: #151515;
  --text: #2C2C2C;
  --text-light: #5E5E5E;
  --white: #FFFFFF;
  --cream: #FDF8F0;
  --cream-warm: #FAF3E8;
  --border: #E8DCC8;
  --shadow-sm: 0 2px 12px rgba(20, 20, 20, 0.05);
  --shadow-md: 0 8px 32px rgba(20, 20, 20, 0.08);
  --shadow-lg: 0 16px 48px rgba(20, 20, 20, 0.1);
  --radius: 0;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 6rem;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p {
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(90%, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-cream {
  background-color: var(--cream);
}

.section-gold {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(143, 109, 35, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #E3C06C 0%, #CFA649 35%, #B08A3A 70%, #9A7828 100%);
  color: var(--white);
}

.section-gold h1,
.section-gold h2,
.section-gold h3,
.section-gold p,
.section-gold a {
  color: var(--white);
}

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

/* Labels */
.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.section-gold .label {
  color: rgba(255, 255, 255, 0.85);
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) auto;
  max-width: 200px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.divider-gold::before,
.divider-gold::after {
  background: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(207, 166, 73, 0.35);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207, 166, 73, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--gold);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.logo span {
  font-weight: 300;
  color: var(--text);
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
  padding-bottom: 0.3rem;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(207, 166, 73, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(207, 166, 73, 0.08) 0%, transparent 40%),
    var(--cream);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.hero::before {
  content: '✦';
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(207, 166, 73, 0.08);
  line-height: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  border: 1px solid rgba(207, 166, 73, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--dark);
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-portrait {
  position: relative;
  width: 380px;
  height: 420px;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-portrait::before {
  content: '';
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 3px solid var(--gold);
  z-index: 0;
}

.hero-portrait::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  opacity: 0.12;
  z-index: 0;
}

/* Quote */
.quote-section {
  text-align: center;
  background: var(--white);
}

blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.35;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

blockquote .gold {
  color: var(--gold);
}

.quote-mark {
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0;
  display: block;
  margin-bottom: var(--space-md);
}

.quote-author {
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.1rem;
}

/* Focus band */
.focus-band {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
}

.focus-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.08em;
  font-weight: 300;
}

.focus-band h2 strong {
  color: var(--gold);
  font-weight: 700;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  position: relative;
  transition: all 0.3s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 1.15rem;
  padding-right: 3rem;
}

.pillar-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-light);
}

.pillar-question {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text);
}

/* Signs */
.signs-section {
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.sign-card {
  padding: var(--space-md);
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sign-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

/* What if */
.what-if-list {
  display: grid;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.what-if-list::before {
  content: '';
  position: absolute;
  left: calc(var(--space-md) + 28px - 1px);
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(207, 166, 73, 0.3));
}

.what-if-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.what-if-item:hover {
  box-shadow: var(--shadow-md);
}

.what-if-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(207, 166, 73, 0.35);
}

.what-if-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
}

/* Big quote */
.big-quote {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

/* Visual break */
.visual-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/sunset-sea.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--space-xl) 0;
}

.visual-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.35) 100%);
}

.visual-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.visual-section blockquote {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

.visual-section blockquote strong {
  color: var(--gold);
  font-weight: 600;
}

.visual-section .quote-author {
  color: rgba(255, 255, 255, 0.8);
}

.big-quote blockquote {
  color: var(--white);
  font-weight: 300;
}

.big-quote blockquote strong {
  color: var(--gold);
  font-weight: 600;
}

.big-quote .quote-author {
  color: rgba(255, 255, 255, 0.7);
}

/* Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.offer-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.offer-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.offer-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.offer-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.offer-card p {
  flex-grow: 1;
  margin-bottom: var(--space-sm);
}

/* Appointments */
.appointments-list {
  display: grid;
  gap: var(--space-sm);
}

.appointment-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md);
  transition: all 0.3s ease;
}

.appointment-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.appointment-date {
  text-align: center;
  padding: var(--space-sm);
  background: var(--cream);
}

.appointment-date .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.appointment-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 500;
}

.appointment-info h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.appointment-meta {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-md);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '„';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-light);
  text-align: left;
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.95rem;
}

/* CTA section */
.cta-section {
  text-align: center;
}

.cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-lg) var(--space-md);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--gold);
  opacity: 0.25;
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: var(--space-sm);
}

.cta-box p {
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.section-gold .cta-box h2 {
  color: var(--gold);
}

.section-gold .cta-box p {
  color: var(--text-light);
}

.section-gold .cta-box .label {
  color: var(--gold);
}

.section-gold .cta-box .form-trust {
  color: var(--text-light);
}

.form-group {
  margin-bottom: var(--space-sm);
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(207, 166, 73, 0.1);
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  filter: grayscale(15%) contrast(1.05);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  opacity: 0.1;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: var(--space-sm);
}

.about-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about-quote {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.about-quote blockquote {
  font-size: 1.2rem;
  text-align: left;
}

.about-quote .quote-author {
  text-align: left;
  margin-top: var(--space-sm);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-md) 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a:hover {
  color: var(--gold);
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .pillars-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
  }

  .hero-portrait {
    width: 260px;
    height: 300px;
  }

  .hero-portrait::before,
  .hero-portrait::after {
    display: none;
  }

  .hero::before {
    top: 5%;
    right: 5%;
    font-size: 6rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-md);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .appointment-date {
    max-width: 120px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .pillars-grid,
  .signs-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .what-if-list::before {
    display: none;
  }

  .btn {
    width: 100%;
  }
}
