/*
Theme Name: Luchtig
Theme URI: https://luchtigslaapcoach.nl
Author: Aïcha Bendahman
Author URI: https://luchtigslaapcoach.nl
Description: Een kleurrijk en modern WordPress thema voor Luchtig Slaaptherapie & Coaching — wij helpen mensen beter slapen met persoonlijke en holistische slaapcoaching.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: luchtig
*/

/* ==========================================
   CSS CUSTOM PROPERTIES
========================================== */
:root {
  --purple:        #7C5CBF;
  --purple-light:  #A78BFA;
  --purple-dark:   #5B21B6;
  --coral:         #F97316;
  --coral-light:   #FED7AA;
  --teal:          #0D9488;
  --teal-light:    #99F6E4;
  --yellow:        #F59E0B;
  --yellow-light:  #FEF3C7;
  --pink:          #EC4899;
  --pink-light:    #FBCFE8;
  --navy:          #1E1B4B;
  --indigo:        #4338CA;

  --text:          #374151;
  --text-light:    #6B7280;

  --bg:            #FDFCFF;
  --bg-warm:       #FFF9F5;
  --bg-section:    #F5F0FF;
  --white:         #FFFFFF;

  --grad-hero:     linear-gradient(135deg, #1E1B4B 0%, #3730A3 50%, #7C3AED 100%);
  --grad-primary:  linear-gradient(135deg, #7C5CBF, #F97316);
  --grad-teal:     linear-gradient(135deg, #0D9488, #06B6D4);
  --grad-warm:     linear-gradient(135deg, #F59E0B, #F97316);

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Nunito', 'Segoe UI', sans-serif;

  --radius:        16px;
  --radius-lg:     28px;
  --radius-xl:     48px;
  --shadow:        0 4px 24px rgba(124,92,191,0.12);
  --shadow-lg:     0 12px 48px rgba(124,92,191,0.22);
  --transition:    0.3s cubic-bezier(0.4,0,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);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--purple-dark); }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

/* ==========================================
   TYPOGRAPHY
========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-teal {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { font-size: 1.15rem; line-height: 1.85; }
.text-center { text-align: center; }

/* ==========================================
   LAYOUT
========================================== */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ==========================================
   SITE HEADER / NAVIGATION
========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 32px rgba(124,92,191,0.1);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.site-header.scrolled .site-logo { color: var(--navy); }
.site-logo .dot {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}
.main-nav a {
  display: block;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.88);
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-body);
  text-transform: uppercase;
}
.site-header.scrolled .main-nav a { color: var(--text); }
.main-nav a:hover,
.main-nav .current-menu-item > a {
  background: rgba(255,255,255,0.18);
  color: white;
}
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav .current-menu-item > a {
  background: var(--purple);
  color: white;
}
.nav-cta > a {
  background: white !important;
  color: var(--purple) !important;
  box-shadow: var(--shadow);
}
.site-header.scrolled .nav-cta > a {
  background: var(--grad-primary) !important;
  color: white !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .menu-toggle span { background: var(--navy); }

/* Mobile overlay nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: white;
  font-style: italic;
  padding: 10px 32px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.mobile-nav-overlay a:hover { background: rgba(255,255,255,0.1); color: white; }
.mobile-close-btn {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: white; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.mobile-close-btn:hover { opacity: 0.7; }

/* ==========================================
   HERO — HOME
========================================== */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 55%, rgba(124,92,191,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 15%, rgba(249,115,22,0.25) 0%, transparent 45%),
    radial-gradient(circle at 55% 85%, rgba(13,148,136,0.2) 0%, transparent 40%);
  pointer-events: none;
}
.hero-decoration {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.deco-moon {
  position: absolute;
  top: 60px; right: 8%;
  font-size: 140px;
  opacity: 0.12;
  animation: floatMoon 8s ease-in-out infinite;
  line-height: 1;
}
.deco-star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out var(--delay, 0s) infinite;
  opacity: 0;
}
@keyframes floatMoon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-24px) rotate(6deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%       { opacity: var(--op, 0.7); transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
.hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #FCD34D, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.2rem;
  margin-bottom: 42px;
  max-width: 560px;
  line-height: 1.85;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.25);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ==========================================
   WAVE DIVIDER
========================================== */
.wave-wrap {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.wave-wrap svg { display: block; width: 100%; }

/* ==========================================
   FEATURE STRIP
========================================== */
.feature-strip {
  background: white;
  padding: 56px 0;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.f-purple { background: #EDE9FE; }
.f-coral  { background: #FFF7ED; }
.f-teal   { background: #ECFDF5; }
.feature-item h4 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 800;
  margin-bottom: 4px;
}
.feature-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ==========================================
   ABOUT TEASER
========================================== */
.about-teaser { background: var(--bg-warm); overflow: hidden; }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-blob {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, #DDD6FE, #FED7AA);
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  animation: morphBlob 9s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%      { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75%      { border-radius: 60% 30% 60% 40% / 70% 30% 50% 60%; }
}
.about-float-badge {
  position: absolute;
  bottom: 24px; right: -10px;
  background: white;
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 800; font-size: 0.88rem;
  color: var(--navy);
  text-align: center;
}
.about-float-badge strong {
  display: block;
  font-size: 1.8rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text); margin-bottom: 28px; }

/* ==========================================
   SERVICE CARDS (HOME)
========================================== */
.services-preview { background: white; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; margin: 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--purple);
  background: #EDE9FE;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 840px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(124,92,191,0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--top-color, var(--grad-primary));
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.sc-purple { --top-color: linear-gradient(90deg, #7C5CBF, #A78BFA); }
.sc-coral   { --top-color: linear-gradient(90deg, #F97316, #FCD34D); }
.sc-teal    { --top-color: linear-gradient(90deg, #0D9488, #06B6D4); }

.service-card-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.94rem; margin-bottom: 24px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.9rem; color: var(--purple);
}
.sc-coral  .link-arrow { color: var(--coral); }
.sc-teal   .link-arrow { color: var(--teal); }
.link-arrow::after { content: '→'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ==========================================
   QUOTE BAND
========================================== */
.quote-band {
  background: var(--grad-hero);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(124,92,191,0.4), transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(249,115,22,0.3), transparent 55%);
}
.quote-band .container { position: relative; z-index: 2; }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 9rem;
  color: rgba(255,255,255,0.1);
  line-height: 0.4;
  display: block;
  margin-bottom: 36px;
  user-select: none;
}
.quote-band blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: white;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.45;
}
.quote-attr { color: rgba(255,255,255,0.65); font-weight: 600; font-size: 1rem; }

/* ==========================================
   CTA BANNER
========================================== */
.cta-banner {
  background: var(--bg-section);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::before {
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(124,92,191,0.07);
}
.cta-banner::after {
  bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: rgba(249,115,22,0.07);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner .lead { color: var(--text-light); max-width: 520px; margin: 0 auto 40px; }

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-primary {
  background: var(--grad-primary);
  color: white;
  box-shadow: 0 4px 24px rgba(124,92,191,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(124,92,191,0.45); color: white; }
.btn-white  { background: white; color: var(--purple); box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-3px); color: var(--purple-dark); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white; color: white; transform: translateY(-2px);
}
.btn-teal {
  background: var(--grad-teal); color: white;
  box-shadow: 0 4px 24px rgba(13,148,136,0.35);
}
.btn-teal:hover { transform: translateY(-3px); color: white; box-shadow: 0 8px 36px rgba(13,148,136,0.45); }
.btn-coral {
  background: linear-gradient(135deg, #F97316, #FCD34D); color: white;
  box-shadow: 0 4px 24px rgba(249,115,22,0.35);
}
.btn-coral:hover { transform: translateY(-3px); color: white; }
.btn-lg { padding: 19px 42px; font-size: 1.08rem; }

/* ==========================================
   PAGE HERO (inner pages)
========================================== */
.page-hero {
  padding: 150px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(124,92,191,0.3), transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(249,115,22,0.2), transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-tag {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ==========================================
   OVER PAGE
========================================== */
.about-intro { background: white; }
.about-main-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.about-sidebar-sticky { position: sticky; top: 120px; }
.about-photo-block {
  background: linear-gradient(145deg, #EDE9FE, #FFF7ED);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-photo-block .avatar-emoji { font-size: 7rem; line-height: 1; }
.about-photo-block h3 { font-size: 1.4rem; }
.about-photo-block p { font-size: 0.95rem; color: var(--text-light); margin: 0; font-style: italic; }

.cred-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}
.cred-chip {
  background: white;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
}
.cred-dot {
  width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
}
.cd-purple { background: var(--purple); }
.cd-coral  { background: var(--coral); }
.cd-teal   { background: var(--teal); }
.cd-yellow { background: var(--yellow); }
.cd-pink   { background: var(--pink); }

.about-body h2 { margin-bottom: 32px; }
.about-body h3 { font-size: 1.4rem; color: var(--purple); margin: 40px 0 16px; }
.about-pullquote {
  background: linear-gradient(135deg, #EDE9FE, #FFF7ED);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  font-family: var(--font-heading);
}

.values-section { background: var(--bg-section); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-card .vc-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ==========================================
   COACHING PAGE
========================================== */
.coaching-intro {
  background: white;
  text-align: center;
  padding: 64px 0 48px;
}
.coaching-intro p { color: var(--text-light); max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

.coaching-service {
  padding: 88px 0;
  overflow: hidden;
}
.coaching-service:nth-child(odd)  { background: white; }
.coaching-service:nth-child(even) { background: var(--bg-warm); }

.cs-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.cs-inner.reverse { grid-template-columns: 1.6fr 1fr; }
.cs-inner.reverse .cs-visual { order: 2; }

.cs-visual { position: sticky; top: 120px; }
.cs-visual-card {
  border-radius: var(--radius-xl);
  padding: 52px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.cvc-purple { background: linear-gradient(145deg, #EDE9FE, #DDD6FE); }
.cvc-coral  { background: linear-gradient(145deg, #FFF7ED, #FED7AA); }
.cvc-teal   { background: linear-gradient(145deg, #ECFDF5, #A7F3D0); }
.cs-visual-card .big-icon { font-size: 6rem; line-height: 1; }
.cs-visual-card h3 { font-size: 1.4rem; text-align: center; }
.cs-tag {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cs-tag.purple { background: #EDE9FE; color: var(--purple); }
.cs-tag.coral  { background: #FFF7ED; color: var(--coral); }
.cs-tag.teal   { background: #ECFDF5; color: var(--teal); }

.cs-content h2 { margin-bottom: 18px; }
.cs-content .cs-lead { color: var(--text-light); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.8; }

.benefits-list {
  list-style: none;
  padding: 0; margin: 0 0 40px;
}
.benefits-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(124,92,191,0.08);
  font-size: 0.96rem;
  margin: 0;
}
.benefits-list li:last-child { border-bottom: none; }
.bi {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0; margin-top: 2px;
}
.bi-purple { background: #EDE9FE; }
.bi-coral  { background: #FFF7ED; }
.bi-teal   { background: #ECFDF5; }

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-main { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.contact-info h3 { font-size: 1.75rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 40px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
}
.cd-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.cdi-purple { background: #EDE9FE; }
.cdi-coral  { background: #FFF7ED; }
.cdi-teal   { background: #ECFDF5; }
.contact-detail-text strong {
  display: block;
  font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-light); margin-bottom: 2px;
}
.contact-detail-text span { color: var(--navy); font-weight: 600; }

.contact-form-wrap {
  background: var(--bg-section);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 32px; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-weight: 700; font-size: 0.88rem;
  margin-bottom: 8px; color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(124,92,191,0.13);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem; color: var(--text);
  background: white;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124,92,191,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-msg {
  display: none;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.form-msg.success {
  display: block;
  background: #ECFDF5;
  border: 2px solid #6EE7B7;
  color: #065F46;
}
.form-msg.error {
  display: block;
  background: #FEF2F2;
  border: 2px solid #FECACA;
  color: #991B1B;
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem; font-weight: 700;
  color: white; display: block; margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo .dot {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: 0.93rem; line-height: 1.8; max-width: 290px; margin: 0; }
.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.58); font-size: 0.93rem;
  text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
}
.footer-tagline {
  font-style: italic; font-family: var(--font-heading);
  color: rgba(255,255,255,0.45); font-size: 1rem;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  .about-main-grid,
  .cs-inner, .cs-inner.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cs-inner.reverse .cs-visual { order: 0; }
  .cs-visual, .about-sidebar-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .feature-strip-grid,
  .service-cards,
  .values-grid { grid-template-columns: 1fr; }
  .about-teaser-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-scroll-hint { display: none; }
  .main-nav { display: none !important; }
  .menu-toggle { display: flex !important; }
  blockquote { font-size: 1.45rem; }
  .deco-moon { font-size: 80px; opacity: 0.09; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-lg { padding: 16px 28px; font-size: 0.98rem; }
  .page-hero { padding: 120px 0 60px; }
  .contact-form-wrap { padding: 28px 18px; }
}

/* ==========================================
   CONTACT FORM 7
========================================== */

/* Wrapper */
.wpcf7 { width: 100%; }
.wpcf7-form { width: 100%; }

/* Reset CF7 default paragraph wrapping */
.wpcf7-form p { margin: 0; }

/* CF7 wraps every field in a <span> — make it block */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* All inputs, textareas, selects */
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio) {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(124,92,191,0.13);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: white;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio):focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(124,92,191,0.1);
}

/* Textarea */
.wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Invalid field highlight */
.wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.1);
}

/* Validation error tip */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
}

/* Submit button — inherits .btn .btn-primary .btn-lg via class: attributes */
.wpcf7-form .wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  cursor: pointer;
}

/* Loading spinner */
.wpcf7-spinner {
  display: none !important;
}

/* Response output (success / error) */
.wpcf7-response-output {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border: none !important;
}

/* Success */
.wpcf7-form.sent .wpcf7-response-output {
  background: #ECFDF5;
  border: 2px solid #6EE7B7 !important;
  color: #065F46;
}

/* Validation / general error */
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.payment-required .wpcf7-response-output {
  background: #FEF2F2;
  border: 2px solid #FECACA !important;
  color: #991B1B;
}

/* Mail send failed */
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  background: #FFF7ED;
  border: 2px solid #FED7AA !important;
  color: #9A3412;
}

/* Hide the CF7 default paragraph wrappers so our .form-group/.form-row layout works */
.wpcf7-form br { display: none; }

/* ==========================================
   WP UTILITIES
========================================== */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.aligncenter { display: block; margin: 0 auto; }
.alignright  { float: right; margin: 0 0 16px 24px; }
.alignleft   { float: left;  margin: 0 24px 16px 0; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-light); margin-top: 6px; }
