/*
Theme Name: VäterRaum
Theme URI: https://wordpress-sabrina.ok9.de
Author: Claude Code
Author URI: https://claude.ai
Description: Professionelles WordPress-Theme für VäterRaum — Beratung für Väter. Basierend auf einem individuellen HTML-Template mit warmem, empathischem Design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vaeterraum
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --color-cream: #FAF6F1;
  --color-warm-white: #FFFCF8;
  --color-sand: #E8DDD1;
  --color-terracotta: #C07A50;
  --color-terracotta-deep: #A65F38;
  --color-sage: #7B8E6B;
  --color-sage-light: #9AAD8C;
  --color-bark: #2D1F14;
  --color-bark-soft: #5C4A3A;
  --color-amber: #D4A574;
  --color-moss: #4A5D3E;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--color-cream);
  color: var(--color-bark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-terracotta);
  color: var(--color-warm-white);
}

a { color: var(--color-terracotta); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-terracotta-deep); }

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

/* ═══════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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");
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-main.scrolled {
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 3rem;
  box-shadow: 0 1px 30px rgba(45, 31, 20, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-bark);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(15deg) scale(1.05);
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-warm-white);
}

.nav-logo-icon img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-bark-soft);
  font-weight: 400;
  font-size: 0.925rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-terracotta);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover { color: var(--color-bark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--color-terracotta);
  color: var(--color-warm-white) !important;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(192, 122, 80, 0.25);
}

.nav-cta:hover {
  background: var(--color-terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(192, 122, 80, 0.35);
}

.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-bark);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3rem 4rem;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
}

.hero-bg-shape {
  position: absolute;
  top: -10%; right: -5%;
  width: 110%;
  height: 120%;
  background: linear-gradient(160deg, var(--color-sand) 0%, rgba(192, 122, 80, 0.12) 50%, rgba(123, 142, 107, 0.08) 100%);
  border-radius: 0 0 0 40%;
  transform: rotate(-3deg);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--color-terracotta);
  top: 10%; right: 10%;
  animation: float-orb 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: var(--color-sage);
  top: 50%; right: 30%;
  animation: float-orb 15s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 200px; height: 200px;
  background: var(--color-amber);
  top: 30%; right: 50%;
  animation: float-orb 10s ease-in-out infinite 2s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(123, 142, 107, 0.12);
  border: 1px solid rgba(123, 142, 107, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-moss);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--color-sage);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-bark);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-terracotta);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-bark-soft);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  background: var(--color-terracotta);
  color: var(--color-warm-white);
  border: none;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 30px rgba(192, 122, 80, 0.3);
}

.btn-primary:hover {
  background: var(--color-terracotta-deep);
  color: var(--color-warm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(192, 122, 80, 0.4);
}

.btn-primary svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--color-bark);
  border: 1.5px solid var(--color-sand);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s;
}

.btn-secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45, 31, 20, 0.08);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--color-terracotta);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--color-bark-soft);
  margin-top: 0.35rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   MARQUEE TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  padding: 2rem 0;
  background: var(--color-warm-white);
  border-top: 1px solid rgba(45, 31, 20, 0.05);
  border-bottom: 1px solid rgba(45, 31, 20, 0.05);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item span { color: var(--color-terracotta); font-size: 1.1rem; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION STYLING
═══════════════════════════════════════ */
.section {
  padding: 7rem 3rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--color-terracotta);
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-bark);
  margin-bottom: 1rem;
}

.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--color-terracotta);
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-bark-soft);
  font-weight: 300;
  max-width: 560px;
}

/* ═══════════════════════════════════════
   ABOUT / PHILOSOPHY
═══════════════════════════════════════ */
.about { background: var(--color-warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--color-sand), rgba(192, 122, 80, 0.15));
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C07A50' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  gap: 1rem;
}

.about-image-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.about-image-placeholder span {
  font-size: 0.85rem;
  opacity: 0.5;
  font-weight: 300;
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 1.5rem 2rem;
  background: var(--color-warm-white);
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(45, 31, 20, 0.1);
  max-width: 220px;
  z-index: 2;
}

.about-float-card-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--color-terracotta);
  line-height: 1;
}

.about-float-card-text {
  font-size: 0.82rem;
  color: var(--color-bark-soft);
  margin-top: 0.3rem;
  font-weight: 300;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-value {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(123, 142, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
}

.about-value-icon svg { width: 20px; height: 20px; }

.about-value h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.about-value p {
  font-size: 0.9rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--color-warm-white);
  border: 1px solid rgba(45, 31, 20, 0.06);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(45, 31, 20, 0.08);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-icon-1 { background: rgba(192, 122, 80, 0.1); color: var(--color-terracotta); }
.service-icon-2 { background: rgba(123, 142, 107, 0.1); color: var(--color-sage); }
.service-icon-3 { background: rgba(212, 165, 116, 0.15); color: var(--color-terracotta-deep); }

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-bark-soft);
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(192, 122, 80, 0.08);
  color: var(--color-terracotta);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: var(--color-bark);
  color: var(--color-warm-white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(192, 122, 80, 0.08);
  filter: blur(100px);
}

.testimonials .section-label { color: var(--color-amber); }
.testimonials .section-label::before { background: var(--color-amber); }
.testimonials .section-title { color: var(--color-warm-white); }
.testimonials .section-title em { color: var(--color-amber); }
.testimonials .section-subtitle { color: rgba(255, 252, 248, 0.6); }

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.04);
  border: 1px solid rgba(255, 252, 248, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.testimonial-card:hover {
  background: rgba(255, 252, 248, 0.07);
  border-color: rgba(255, 252, 248, 0.12);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 252, 248, 0.85);
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '\201E';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5em;
  color: var(--color-terracotta);
  margin-right: 0.1em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-terracotta), var(--color-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--color-warm-white);
}

.testimonial-author-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.testimonial-author-role {
  font-size: 0.8rem;
  color: rgba(255, 252, 248, 0.45);
  font-weight: 300;
}

/* ═══════════════════════════════════════
   BLOG PREVIEW
═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-warm-white);
  border: 1px solid rgba(45, 31, 20, 0.06);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 31, 20, 0.08);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-sand), rgba(192, 122, 80, 0.1));
  position: relative;
  overflow: hidden;
}

.blog-card:first-child .blog-card-image { aspect-ratio: 16/12; }

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(192, 122, 80, 0.1) 20px,
    rgba(192, 122, 80, 0.1) 21px
  );
}

.blog-card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(255, 252, 248, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-terracotta);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.75rem;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.blog-card:first-child h3 { font-size: 1.4rem; }

.blog-card:hover h3 { color: var(--color-terracotta); }

.blog-card p {
  font-size: 0.88rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   CONTACT / BOOKING
═══════════════════════════════════════ */
.contact { background: var(--color-warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-bark-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1.15rem;
  border: 1.5px solid var(--color-sand);
  border-radius: 12px;
  background: var(--color-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--color-bark);
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(192, 122, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--color-cream);
  border: 1px solid rgba(45, 31, 20, 0.05);
}

.contact-info-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 122, 80, 0.1);
  color: var(--color-terracotta);
}

.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-sand), rgba(123, 142, 107, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 31, 20, 0.06);
  color: var(--color-bark-soft);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  padding: 5rem 3rem 2.5rem;
  background: var(--color-bark);
  color: var(--color-warm-white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 252, 248, 0.08);
}

.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 252, 248, 0.5);
  font-weight: 300;
  margin-top: 1rem;
  max-width: 320px;
}

.footer h5 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--color-amber);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 252, 248, 0.5);
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 252, 248, 0.35);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 252, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 252, 248, 0.5);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  background: rgba(192, 122, 80, 0.08);
}

/* ═══════════════════════════════════════
   WORDPRESS CONTENT STYLES
═══════════════════════════════════════ */
.wp-content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 3rem 5rem;
}

.wp-content-area h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-bark);
  margin-bottom: 1.5rem;
}

.wp-content-area h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--color-bark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.wp-content-area h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--color-bark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.wp-content-area p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-bark-soft);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.wp-content-area ul, .wp-content-area ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  line-height: 1.75;
}

.wp-content-area blockquote {
  border-left: 3px solid var(--color-terracotta);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--color-warm-white);
  border-radius: 0 12px 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-bark);
}

.wp-content-area img {
  border-radius: 16px;
  margin: 1.5rem 0;
}

.entry-meta {
  font-size: 0.85rem;
  color: var(--color-bark-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 31, 20, 0.08);
}

/* Archive / Blog listing */
.archive-header {
  padding: 8rem 3rem 3rem;
  text-align: center;
}

.archive-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-bark);
}

.posts-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* 404 */
.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.error-404 h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 6rem;
  color: var(--color-terracotta);
  opacity: 0.3;
}

.error-404 h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--color-bark-soft);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 7rem 2rem 3rem; }
  .hero-bg { width: 100%; opacity: 0.5; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 5rem 2rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-main { padding: 1rem 1.5rem; }
  .hero { min-height: auto; padding: 8rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .wp-content-area { padding: 7rem 1.5rem 3rem; }
  .posts-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .archive-header { padding: 7rem 1.5rem 2rem; }
}
