/*
Theme Name: v2 - Dr. Sandra Michels – Die Coachin
Theme URI: https://www.sandramichels.de
Author: Sandra Michels
Author URI: https://www.sandramichels.de
Description: Minimales, warmes WordPress-Theme für Dr. Sandra Michels – Coaching für Ärztinnen, Ärzte und Führungskräfte.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sandra-michels
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  --teal: #4E7E8C;
  --teal-light: #6A9BAA;
  --teal-dark: #3A6270;
  --sage: #8B9D83;
  --sage-light: #A8B7A0;
  --sand: #C4A882;
  --sand-light: #D4BFA0;
  --cream: #FDFAF6;
  --cream-warm: #F6F1EA;
  --cream-deep: #EDE7DD;
  --text: #2E2E2E;
  --text-soft: #5A5550;
  --text-light: #8A857E;
  --white: #FFFFFF;
  --border: #E5DFD7;
  --shadow-soft: 0 4px 24px rgba(46, 46, 46, 0.06);
  --shadow-hover: 0 8px 40px rgba(46, 46, 46, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---- Layout ---- */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section { padding: 120px 0; }
  .container { padding: 0 40px; }
}

/* ---- Utility ---- */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .nav-inner { height: 80px; padding: 0 40px; }
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
}

.logo-mark {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.2;
}

.logo-name {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.3;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  display: none;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  display: none;
}

@media (min-width: 640px) {
  .logo-divider, .logo-sub { display: block; }
}

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

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none !important; }
}

.mobile-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  padding: 40px 24px;
}

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

.mobile-menu a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--teal); }

.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--sage);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
}

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

.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero { padding: 140px 0 100px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--sage);
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition);
  border: 2px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 126, 140, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal);
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--teal);
  background: rgba(78, 126, 140, 0.05);
}

/* Hero visual - crane image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-crane-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.hero-crane-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(78, 126, 140, 0.12));
  transition: transform 1.5s ease;
}

.hero-crane-wrap:hover img {
  transform: translateY(-6px) rotate(-1deg);
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  line-height: 1.4;
  animation: floatBadge 6s ease-in-out infinite;
}

.hero-float-badge strong {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.hero-float-badge span {
  color: var(--text-light);
  font-size: 12px;
}

.badge-top {
  top: 5%;
  right: -5%;
  background: var(--sage);
  color: var(--white);
  animation-delay: -2s;
}

.badge-top strong,
.badge-top span { color: var(--white); }

.badge-bottom {
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--cream-warm);
  z-index: 0;
}

.hero-bg-circle-1 {
  width: 600px; height: 600px;
  right: -200px; top: -100px;
  opacity: 0.5;
}

.hero-bg-circle-2 {
  width: 300px; height: 300px;
  left: -100px; bottom: -50px;
  opacity: 0.3;
}

/* ============================================
   QUOTE STRIP (with portrait)
   ============================================ */

.quote-strip {
  background: var(--cream-warm);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quote-strip-inner {
    grid-template-columns: 1fr auto;
    gap: 60px;
  }
}

.quote-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .quote-strip blockquote {
    text-align: left;
  }
}

.quote-strip cite {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* Portrait in quote strip */
.quote-portrait {
  text-align: center;
  flex-shrink: 0;
}

.quote-portrait-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.quote-portrait img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .quote-portrait img {
    width: 180px;
    height: 180px;
  }
}

/* ============================================
   WELCOME / ABOUT
   ============================================ */

.welcome {
  position: relative;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.welcome-label {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.welcome h2 {
  margin-bottom: 24px;
  font-weight: 300;
}

.welcome-text p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.welcome-text p:last-child { margin-bottom: 0; }

.welcome-aside {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.welcome-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal), var(--sage));
  border-radius: 4px 0 0 4px;
}

.welcome-aside h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--teal);
}

.welcome-aside p {
  font-size: 0.95rem;
}

.approach-points {
  list-style: none;
  margin-top: 24px;
}

.approach-points li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--cream-deep);
}

.approach-points li:last-child { border-bottom: none; }

.approach-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 2px solid var(--sage);
}

/* ============================================
   OFFERINGS
   ============================================ */

.offerings {
  background: var(--cream-warm);
  position: relative;
}

.offerings::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

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

.section-header .welcome-label {
  display: block;
  margin-bottom: 12px;
}

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

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

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .offerings-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.offering-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--cream-warm);
}

.offering-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offering-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--text);
}

.offering-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   QUALIFICATIONS
   ============================================ */

.qualifications {
  background: var(--cream);
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .qual-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (min-width: 900px) {
  .qual-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.qual-item {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}

.qual-item:hover {
  border-color: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.qual-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 7px;
}

.qual-item p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-soft);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--teal);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.cta-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 36px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--teal);
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-crane {
  position: absolute;
  opacity: 0.08;
}

.cta-crane-1 { top: 20px; right: 60px; width: 120px; transform: rotate(-15deg); }
.cta-crane-2 { bottom: 30px; left: 40px; width: 80px; transform: rotate(10deg); }

/* ============================================
   CONTACT FORM (Contact Form 7 Styling)
   ============================================ */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
  }
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1rem;
  margin-bottom: 32px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-details li:last-child { border-bottom: none; }

.contact-details .detail-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 2px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
}

/* Contact Form 7 field styling */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-form-wrap .wpcf7 {
  margin: 0;
}

.contact-form-wrap .form-section {
  padding: 28px 28px 0;
}

.contact-form-wrap .form-section:last-of-type {
  padding-bottom: 28px;
}

@media (min-width: 640px) {
  .contact-form-wrap .form-section { padding: 32px 36px 0; }
  .contact-form-wrap .form-section:last-of-type { padding-bottom: 32px; }
}

.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-deep);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label,
.contact-form-wrap label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.2px;
}

.form-group label .required {
  color: var(--sand);
}

/* CF7 inputs */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="date"],
.contact-form-wrap select,
.contact-form-wrap textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(78, 126, 140, 0.1);
}

.contact-form-wrap textarea,
.wpcf7 textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-wrap select,
.wpcf7 select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235A5550' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-divider {
  height: 1px;
  background: var(--cream-deep);
  margin: 0;
  border: none;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.form-consent input[type="checkbox"],
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-consent label {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent a {
  color: var(--teal);
  text-decoration: underline;
}

.form-submit,
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .form-submit,
  .wpcf7 input[type="submit"] { width: auto; }
}

.form-submit:hover,
.wpcf7 input[type="submit"]:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 126, 140, 0.25);
}

/* CF7 validation styling */
.wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}

.wpcf7 .wpcf7-response-output {
  margin: 16px 28px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

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

.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}

.footer-brand {
  max-width: 340px;
}

.footer-logo-title {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.footer-logo-name {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-section h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.paper-texture {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ============================================
   WP PAGE TEMPLATE (Impressum, AGB, etc.)
   ============================================ */

.wp-page-content {
  padding: 140px 0 80px;
  min-height: 60vh;
}

.wp-page-content .container {
  max-width: 800px;
}

.wp-page-content h1 {
  margin-bottom: 32px;
  font-weight: 300;
}

.wp-page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.wp-page-content h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.wp-page-content p {
  margin-bottom: 16px;
}

.wp-page-content ul,
.wp-page-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--text-soft);
}

.wp-page-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.wp-page-content a {
  color: var(--teal);
  text-decoration: underline;
}

.wp-page-content a:hover {
  color: var(--teal-dark);
}
