/*
Theme Name: Hannah Maria Wagner V1.1
Theme URI: https://www.hannahmariawagner.com
Author: Hannah Maria Wagner
Author URI: https://www.hannahmariawagner.com
Description: Professionelles Coaching & Mentoring Theme – Mentale Selbstführung für Menschen mit Verantwortung.
Version: 1.1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hmw-theme-v11
Tags: coaching, business, minimal, elegant
*/

/* ── LOCAL FONTS: Cormorant Garamond Variable ── */
@font-face {    
	font-family: 'Cormorant Garamond';    
	src: url('font/cormorant-garamond-variable.woff2') format('woff2');    
	font-weight: 300 700;    
	font-style: normal;    
	font-display: optional;
}
@font-face {    
	font-family: 'Cormorant Garamond';    
	src: url('font/cormorant-garamond-italic-variable.woff2') 
		format('woff2');    
	font-weight: 300 700;    
	font-style: italic;    
	font-display: optional;}


/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --brand-primary:        #705040;   /* Terrakotta / Warm Sand */
  --brand-primary-light:  #C4A882;   /* helles Gold */
  --brand-primary-dark:   #5C3D2E;   /* tiefes Mokka */
  --brand-accent:         #2C4A52;   /* tiefes Blaugrün */
  --brand-accent-light:   #4A7A87;
  --brand-bg:             #FDFAF6;   /* Warm Creme */
  --brand-bg-alt:         #F2EDE5;   /* Creme etwas dunkler */
  --brand-bg-dark:        #1A1614;   /* fast schwarz */
  --brand-text:           #1E1612;
  --brand-text-subtle:    #6B5B52;
  --brand-text-light:     #7A5C4A;
  --brand-white:          #FFFFFF;
  --brand-border:         rgba(139,111,94,0.18);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  48px;

  --shadow-soft: 0 4px 24px rgba(139,111,94,0.10);
  --shadow-card: 0 8px 40px rgba(44,74,82,0.10);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--brand-bg);
  color: var(--brand-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--brand-primary-dark); }

::selection {
  background: var(--brand-primary);
  color: var(--brand-white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brand-text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
/*h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); } */
h3 { font-size: 1.4rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.2em; color: var(--brand-text-subtle); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--brand-text);
  line-height: 1.65;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1400px; }

section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section--alt { background: var(--brand-bg-alt); }
.section--dark {
  background: var(--brand-bg-dark);
  color: var(--brand-white);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4 { color: var(--brand-white); }
.section--dark p { color: rgba(255,255,255,0.72); }
.section--dark .eyebrow { color: var(--brand-primary-light); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

/* ============================================================
   SERVICE CARDS – button always pinned to bottom
   ============================================================ */
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push button to bottom regardless of content length */
.service-card .btn,
.service-card a[class^="btn"],
.service-card a[class*=" btn"] {
  margin-top: auto;
}

/* Also works when there's a <br> spacer before the button – remove it */
.service-card br:last-of-type {
  display: none;
}

/* Ensure the list grows to fill available space */
.service-card__list {
  flex: 1;
}

/* Grid of cards should stretch all children to equal height */
.grid-3 {
  align-items: stretch;
}
.grid-2 {
  align-items: stretch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-color: var(--brand-primary);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,111,94,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn--outline:hover {
  background: var(--brand-primary);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--brand-bg-dark);
  color: var(--brand-white);
  border-color: var(--brand-bg-dark);
}
.btn--dark:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--brand-white);
  color: var(--brand-primary-dark);
  border-color: var(--brand-white);
}
.btn--light:hover {
  background: var(--brand-bg-alt);
  border-color: var(--brand-bg-alt);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(139,111,94,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.site-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--brand-text);
  letter-spacing: 0.01em;
  line-height: 1;
}
.site-logo .logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--brand-text);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--brand-primary); }
.main-nav .btn { margin-left: 1rem; padding: 0.6rem 1.5rem; }
.main-nav .btn--primary {
  background: #8A3F4D;
  border-color: #8A3F4D;
  color: #fff;
}
.main-nav .btn--primary:hover {
  background: #72333f;
  border-color: #72333f;
  box-shadow: 0 8px 24px rgba(138,63,77,0.32);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-text);
  transition: all var(--transition);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--brand-bg);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--brand-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 0.25rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 0; width: 100%; border-bottom: 1px solid var(--brand-border); }
  .main-nav .btn { margin: 1rem 0 0; width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--brand-bg);
}

.hero-content {
  padding: clamp(3rem, 6vw, 7rem) clamp(1.25rem, 5vw, 3rem) clamp(3rem, 6vw, 7rem) clamp(1.25rem, 8vw, 6rem);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--brand-text);
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--brand-text-subtle);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--brand-primary);
  margin: 1.5rem 0 2rem;
  border: none;
}

.hero-image {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-image::after {  content: '';  position: absolute;  inset: 0;  background: linear-gradient(to right, var(--brand-bg) 0%, transparent 15%);  pointer-events: none;  will-change: auto;}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  color: var(--brand-primary-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 60vw;
    min-height: 320px;
    order: -1;
  }
  .hero-image::after {
    background: linear-gradient(to top, var(--brand-bg) 0%, transparent 20%);
  }
}

/* ============================================================
   PROBLEM/SOLUTION STRIP
   ============================================================ */
.problem-strip {
  background: var(--brand-bg-dark);
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.problem-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.problem-strip h2 {
  color: var(--brand-white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.problem-strip p { color: rgba(255,255,255,0.7); }
.problem-strip .eyebrow { color: var(--brand-primary-light); }

@media (max-width: 760px) {
  .problem-strip .container { grid-template-columns: 1fr; }
}

/* ============================================================
   TWO PATHS (B2B / B2C)
   ============================================================ */
.two-paths {
  background: var(--brand-bg);
}
.two-paths .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.path-card {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.path-card:hover::before { transform: scaleX(1); }
.path-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.path-card.path-card--accent::before { background: var(--brand-accent); }
.path-card.path-card--accent .eyebrow { color: var(--brand-accent); }

.path-icon {
  width: 56px; height: 56px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--brand-border);
}
.path-card h3 { margin-bottom: 0.75rem; }
.path-card p { margin-bottom: 1.5rem; font-size: 0.95rem; }

.feature-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--brand-text-subtle);
  border-bottom: 1px solid var(--brand-border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '–';
  color: var(--brand-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 760px) {
  .path-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.approach-section { background: var(--brand-bg-alt); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.pillar-number {
  width: 48px; height: 48px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.pillar-text h3 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}
.pillar-text p {
  font-size: 0.9rem;
  margin: 0;
}

.approach-visual {
  position: relative;
}
.approach-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.approach-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 220px;
}
.approach-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.approach-badge .badge-label {
  font-size: 0.8rem;
  color: var(--brand-text-subtle);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-badge {
    position: static;
    margin-top: 1.5rem;
    max-width: 100%;
  }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  background: var(--brand-bg);
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--brand-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
}
.trust-item .ti-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--brand-bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.about-image-frame {
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.credentials-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--brand-text-subtle);
}
.credentials-list li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1060px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   PRICE TEASER / OPT-IN GATE
   ============================================================ */
.price-teaser {
  background: var(--brand-bg-dark);
  text-align: center;
  padding: clamp(4rem, 7vw, 7rem) 0;
}
.price-teaser h2 { color: var(--brand-white); margin-bottom: 1rem; }
.price-teaser p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 2.5rem; }
.optin-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
.optin-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.9rem 1.5rem;
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.optin-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.optin-form button {
  background: var(--brand-primary);
  color: var(--brand-white);
  border: none;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: 0 100px 100px 0;
  white-space: nowrap;
}
.optin-form button:hover { background: var(--brand-primary-light); }
.optin-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
}
.optin-hint a { color: var(--brand-primary-light) !important; }
@media (max-width: 600px) {  
	.optin-form {    
		flex-direction: column;    
		border-radius: var(--radius-md);    
		overflow: visible;    
		border: 1px solid rgba(255,255,255,0.2);  
	}  
	.optin-form input[type="email"] {    
		border-radius: var(--radius-md) var(--radius-md) 0 0;    
		padding: 1rem 1.25rem;    
		width: 100%;  
	}  
	.optin-form button {    
		border-radius: 0 0 var(--radius-md) var(--radius-md);    
		width: 100%;    
		justify-content: center;    
		white-space: normal;  
	}
}
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--brand-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brand-primary);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--brand-text-subtle);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--brand-text);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--brand-text-light);
}
.stars {
  color: var(--brand-primary-light);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--brand-bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-light);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--brand-text);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Checkbox row variant */
.form-group--row,.form-group[style*="flex-direction:row"],
.form-group[style*="flex-direction: row"] {  
	display: flex !important;  
	flex-direction: row !important;  
	align-items: flex-start;  
	gap: 0.75rem;  
	width: 100%;
}
.form-group--row label,
.form-group--row .privacy-note {  
	font-size: 0.82rem;  
	font-weight: 400;  
	letter-spacing: 0.01em;  
	text-transform: none;  
	color: var(--brand-text-subtle);  
	line-height: 1.5;  
	flex: 1;  
	min-width: 0;
}
.form-group--row input[type="checkbox"] {  
	flex-shrink: 0;  
	margin-top: 3px;  
	width: 16px;  
	height: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-text-subtle);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--brand-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(139,111,94,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.privacy-note {
  font-size: 0.78rem;
  color: var(--brand-text-light);
}
.privacy-note a { color: var(--brand-primary); }
.privacy-note a { text-decoration: underline; }

@media (max-width: 900px) {  
	.contact-grid { grid-template-columns: 1fr; }  
	.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {  
	.contact-grid {    
		grid-template-columns: 1fr;    
		gap: 2rem;  }  
	.form-row {    
		grid-template-columns: 1fr;  }
}

@media (max-width: 600px) {
  .form-group--row,
  .form-group[style*="flex-direction:row"],
  .form-group[style*="flex-direction: row"] {
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .form-group--row label,
  .form-group[style*="flex-direction:row"] label,
  .form-group[style*="flex-direction: row"] label {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: none;
    max-width: calc(100% - 2rem);
    line-height: 1.4;
    font-weight: 400;
  }
  .form-group--row input[type="checkbox"],
  .form-group[style*="flex-direction:row"] input[type="checkbox"],
  .form-group[style*="flex-direction: row"] input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-brand .logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary-light);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; max-width: 260px; color: rgba(255,255,255,0.65); }

.footer-col h5 {
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col h3 {  color: var(--brand-white);  font-family: var(--font-body);  font-size: 0.8rem;  font-weight: 700;  letter-spacing: 0.12em;  text-transform: uppercase;  margin-bottom: 1rem;}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li span {  color: rgba(255, 255, 255, 0.68);}

.footer-col ul li a:hover { color: var(--brand-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.65); }
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--brand-white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (Interior Pages)
   ============================================================ */
.page-hero {
  padding-top: 120px;
  padding-bottom: clamp(3rem, 5vw, 5rem);
  background: var(--brand-bg-alt);
  border-bottom: 1px solid var(--brand-border);
}
.page-hero h1 {
  margin-bottom: 0.75rem;
}
.page-hero .lead {
  max-width: 640px;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--brand-text-light);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--brand-primary);
}
.breadcrumb span { color: var(--brand-text-light); }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-intro {
  background: var(--brand-bg);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.tag {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-text-subtle);
  letter-spacing: 0.04em;
}

.offering-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.offering-card {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}
.offering-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.offering-card .oc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.offering-card h4 { margin-bottom: 0.5rem; }
.offering-card p { font-size: 0.9rem; }

/* ============================================================
   PRESS PAGE
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.press-card {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.press-card .press-outlet {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.press-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.press-card p { font-size: 0.88rem; }

@media (max-width: 900px) {
  .press-grid { grid-template-columns: 1fr; }
  .service-intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-content {
  background: var(--brand-bg);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.legal-content h3 { margin: 1.75rem 0 0.75rem; font-size: 1.2rem; }
.legal-content p { font-size: 0.95rem; margin-bottom: 0.9rem; }
.legal-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--brand-text-subtle);
  margin-bottom: 0.4rem;
}
.legal-content a { color: var(--brand-primary); }
.legal-content a { text-decoration: underline; }
.legal-box {
  background: var(--brand-bg-alt);
  border-left: 3px solid var(--brand-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-box p { margin: 0; font-size: 0.9rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 580px; }
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.7s ease both;
}
.animate-in-2 { animation-delay: 0.12s; }
.animate-in-3 { animation-delay: 0.24s; }
.animate-in-4 { animation-delay: 0.36s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SKIP LINK / ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px; left: 1rem;
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .btn { display: none !important; }
  body { background: white; color: black; }
}
