/*
Theme Name:       Enfance Dorée — Chez Donald
Theme URI:        https://ecolechezdonald.com
Author:           Abdulay
Author URI:       https://ecolechezdonald.com
Description:      Thème premium sur mesure pour l'École Maternelle Chez Donald. Design "Enfance Dorée" — organique, chaleureux, typographie expressive. Compatible Elementor 100%.
Version:          1.0.0
Requires at least: 6.2
Tested up to:     6.7
Requires PHP:     8.1
License:          Private
Text Domain:      enfance-doree
Tags:             education, kindergarten, elementor, premium, custom
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — ENFANCE DORÉE
═══════════════════════════════════════════════════════ */
:root {
  /* ── Palette ── */
  --ed-amber:      #E8A23A;
  --ed-amber-d:    #C4841C;
  --ed-amber-l:    #F5D18A;
  --ed-amber-xl:   #FBF0D4;
  --ed-coral:      #E8634A;
  --ed-coral-l:    #F5957F;
  --ed-coral-xl:   #FCDFD9;
  --ed-sage:       #6B8F6B;
  --ed-sage-l:     #A8C5A0;
  --ed-sage-xl:    #DFF0DC;
  --ed-sky:        #4A7FA8;
  --ed-sky-l:      #A3C4DB;
  --ed-ink:        #1C1A14;
  --ed-ink-soft:   #3A3528;
  --ed-cream:      #FAF6EE;
  --ed-cream-d:    #F0E8D8;
  --ed-cream-dd:   #E4D8C4;
  --ed-warm-gray:  #8C8070;
  --ed-sand:       #D4C4A8;
  --ed-white:      #FFFFFF;

  /* ── Typography ── */
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent:   'Caveat', cursive;

  /* ── Spacing ── */
  --sp-xs:  0.25rem;
  --sp-sm:  0.5rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4.5rem;
  --sp-4xl: 7rem;

  /* ── Radii ── */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-pill: 9999px;

  /* ── Shadows ── */
  --shadow-xs:     0 2px 8px rgba(28,26,20,.06);
  --shadow-sm:     0 4px 20px rgba(28,26,20,.08);
  --shadow-md:     0 8px 40px rgba(28,26,20,.12);
  --shadow-lg:     0 20px 60px rgba(28,26,20,.14);
  --shadow-xl:     0 40px 100px rgba(28,26,20,.16);
  --shadow-amber:  0 8px 32px rgba(232,162,58,.35);
  --shadow-coral:  0 8px 32px rgba(232,99,74,.30);

  /* ── Easing ── */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-sharp:  cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Transitions ── */
  --t-fast:   150ms var(--ease-sharp);
  --t-base:   300ms var(--ease-smooth);
  --t-bounce: 400ms var(--ease-bounce);

  /* ── Layout ── */
  --container:        1280px;
  --container-narrow: 800px;
  --header-h:         72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ed-cream);
  color: var(--ed-ink);
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.admin-bar { padding-top: 32px; }

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; transition: color var(--t-base); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ed-ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1rem; line-height: 1.85; }
p:last-child { margin-bottom: 0; }

.display-font { font-family: var(--font-display); }
.accent-font  { font-family: var(--font-accent); }

/* ── Section labels ── */
.ed-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--ed-coral);
  margin-bottom: 14px;
}

.ed-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--ed-coral);
  border-radius: 2px;
  flex-shrink: 0;
}

.ed-tag--light { color: var(--ed-amber); }
.ed-tag--light::before { background: var(--ed-amber); }

.ed-tag--sage { color: var(--ed-sage); }
.ed-tag--sage::before { background: var(--ed-sage); }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.ed-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.ed-container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.ed-section       { padding: var(--sp-4xl) var(--sp-xl); }
.ed-section--sm   { padding: var(--sp-3xl) var(--sp-xl); }
.ed-section--dark { background: var(--ed-ink); }
.ed-section--cream{ background: var(--ed-cream-d); }

.ed-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); align-items: center; }
.ed-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-xl); }
.ed-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-xl); }

@media (max-width: 1024px) {
  .ed-grid-4 { grid-template-columns: repeat(2,1fr); }
  .ed-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .ed-container { padding: 0 var(--sp-lg); }
  .ed-grid-2, .ed-grid-3, .ed-grid-4 { grid-template-columns: 1fr; }
  .ed-section { padding: var(--sp-3xl) var(--sp-lg); }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--r-pill);
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all var(--t-bounce);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.ed-btn--primary {
  background: var(--ed-ink);
  color: var(--ed-cream);
}
.ed-btn--primary:hover {
  background: var(--ed-amber-d);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ed-btn--amber {
  background: linear-gradient(135deg, var(--ed-amber), var(--ed-coral));
  color: white;
  box-shadow: var(--shadow-amber);
}
.ed-btn--amber:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232,162,58,.45);
  color: white;
}

.ed-btn--coral {
  background: var(--ed-coral);
  color: white;
  box-shadow: var(--shadow-coral);
}
.ed-btn--coral:hover {
  background: var(--ed-coral-l);
  transform: translateY(-3px);
  color: white;
}

.ed-btn--outline {
  border-color: var(--ed-sand);
  color: var(--ed-ink-soft);
  background: transparent;
}
.ed-btn--outline:hover {
  border-color: var(--ed-amber);
  color: var(--ed-amber-d);
  background: var(--ed-amber-xl);
}

.ed-btn--ghost {
  background: none;
  border: none;
  color: var(--ed-ink-soft);
  padding: 13px 0;
  border-bottom: 1.5px solid var(--ed-sand);
  border-radius: 0;
  gap: 6px;
  transition: all var(--t-base);
}
.ed-btn--ghost:hover {
  color: var(--ed-amber-d);
  border-color: var(--ed-amber);
  gap: 12px;
}

.ed-btn--light {
  background: white;
  color: var(--ed-ink);
}
.ed-btn--light:hover {
  background: var(--ed-amber);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-amber);
}

.ed-btn-arrow {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform var(--t-bounce);
}
.ed-btn--primary:hover .ed-btn-arrow,
.ed-btn--amber:hover .ed-btn-arrow { transform: translateX(4px); }

.ed-btn--lg { padding: 16px 40px; font-size: 1rem; }
.ed-btn--sm { padding: 8px 18px; font-size: 0.82rem; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.ed-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s var(--ease-smooth);
}

.ed-nav.scrolled {
  background: rgba(250,246,238,.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(232,162,58,.12);
  box-shadow: 0 4px 40px rgba(28,26,20,.07);
  height: 64px;
}

/* Logo */
.ed-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ed-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ed-amber);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transform: rotate(-4deg);
  transition: transform var(--t-bounce);
  box-shadow: var(--shadow-amber);
  flex-shrink: 0;
}
.ed-logo:hover .ed-logo-mark { transform: rotate(4deg) scale(1.05); }

.ed-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.ed-logo-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ed-ink); }
.ed-logo-sub  { font-size: 0.65rem; font-weight: 300; color: var(--ed-warm-gray); letter-spacing: .1em; text-transform: uppercase; }

/* Nav links */
.ed-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.ed-nav-links a {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .875rem;
  font-weight: 400;
  color: var(--ed-ink-soft);
  transition: all var(--t-base);
  position: relative;
}
.ed-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--ed-amber);
  border-radius: 2px;
  transition: width var(--t-base);
}
.ed-nav-links a:hover,
.ed-nav-links a.current-menu-item {
  color: var(--ed-amber-d);
  background: var(--ed-amber-xl);
}
.ed-nav-links a:hover::after,
.ed-nav-links a.current-menu-item::after { width: calc(100% - 28px); }

/* Nav CTA */
.ed-nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.ed-nav-btn-login {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ed-warm-gray);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all var(--t-base);
  border: 1.5px solid var(--ed-cream-dd);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ed-nav-btn-login:hover {
  border-color: var(--ed-amber);
  color: var(--ed-amber-d);
  background: var(--ed-amber-xl);
}

.ed-nav-btn-cta {
  background: var(--ed-coral);
  color: white;
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  transition: all var(--t-bounce);
  box-shadow: var(--shadow-coral);
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ed-nav-btn-cta:hover {
  background: var(--ed-coral-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,99,74,.4);
  color: white;
}

/* Mobile toggle */
.ed-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}
.ed-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ed-ink);
  border-radius: 2px;
  transition: all var(--t-base);
}
.ed-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ed-nav-toggle.active span:nth-child(2) { opacity: 0; }
.ed-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.ed-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ed-cream);
  z-index: 490;
  padding: 100px 28px 40px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.ed-mobile-nav.open { display: flex; }
.ed-mobile-nav a {
  display: block;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ed-ink);
  border-left: 3px solid transparent;
  transition: all var(--t-base);
}
.ed-mobile-nav a:hover {
  background: var(--ed-amber-xl);
  border-left-color: var(--ed-amber);
  color: var(--ed-amber-d);
  padding-left: 28px;
}
.ed-mobile-nav-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ed-cream-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--t-base);
  border: none;
}
.ed-mobile-nav-close:hover { background: var(--ed-coral); color: white; }

@media (max-width: 1024px) {
  .ed-nav { padding: 0 20px; }
  .ed-nav-links { display: none; }
  .ed-nav-toggle { display: flex; }
  .ed-nav-btn-login { display: none; }
}

/* ═══════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
═══════════════════════════════════════════════════════ */
.ed-banner {
  background: var(--ed-ink);
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.ed-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,162,58,.1) 0%, transparent 70%);
  pointer-events: none;
}

.ed-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,.08) 0%, transparent 70%);
  pointer-events: none;
}

.ed-banner-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(250,246,238,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ed-banner-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; }

.ed-banner h1 {
  color: var(--ed-cream);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ed-banner h1 em {
  font-style: italic;
  color: var(--ed-amber);
}

.ed-banner .ed-tag { margin-bottom: 12px; }

/* Breadcrumb */
.ed-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(250,246,238,.45);
}
.ed-breadcrumb a { color: rgba(250,246,238,.45); transition: color var(--t-base); }
.ed-breadcrumb a:hover { color: var(--ed-amber); }
.ed-breadcrumb .sep { opacity: .4; }
.ed-breadcrumb .current { color: var(--ed-amber); font-weight: 500; }

@media (max-width: 768px) {
  .ed-banner { padding: 100px 20px 60px; }
}

/* ═══════════════════════════════════════════════════════
   INFO STRIP
═══════════════════════════════════════════════════════ */
.ed-strip {
  background: var(--ed-ink);
  padding: 20px 48px;
  overflow: hidden;
}

.ed-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
}

.ed-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(250,246,238,.6);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .04em;
  white-space: nowrap;
}

.ed-strip-sep { color: var(--ed-amber); opacity: .35; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════ */
.ed-card {
  background: var(--ed-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(28,26,20,.04);
  transition: all var(--t-base);
}
.ed-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.ed-card-body { padding: var(--sp-xl); }

/* ═══════════════════════════════════════════════════════
   HERO — Elementor-ready structure
═══════════════════════════════════════════════════════ */
.ed-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ed-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .55;
}
.ed-hero-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--ed-amber-l) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: ed-blob-1 12s ease-in-out infinite;
}
.ed-hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--ed-coral-l) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  opacity: .3;
  animation: ed-blob-2 15s ease-in-out infinite;
}
.ed-hero-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--ed-sage-l) 0%, transparent 70%);
  top: 30%; left: -80px;
  opacity: .35;
  animation: ed-blob-3 10s ease-in-out infinite;
}

@keyframes ed-blob-1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-40px,30px) scale(1.05)} 66%{transform:translate(30px,-20px) scale(.95)} }
@keyframes ed-blob-2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-40px) scale(1.08)} }
@keyframes ed-blob-3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,50px)} }

.ed-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28,26,20,.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.ed-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ed-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ed-white);
  border: 1.5px solid var(--ed-cream-dd);
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--ed-warm-gray);
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}
.ed-hero-eyebrow-dot {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--ed-amber), var(--ed-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.ed-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--ed-ink);
  margin-bottom: 24px;
}
.ed-hero-h1 em {
  font-style: italic;
  color: var(--ed-amber-d);
  position: relative;
  display: inline-block;
}
.ed-hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ed-amber), var(--ed-coral));
  border-radius: 2px;
  opacity: .45;
}

.ed-hero-handwritten {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: var(--ed-coral);
  display: block;
  margin-top: 4px;
  transform: rotate(-1.5deg);
  margin-left: -4px;
}

.ed-hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ed-warm-gray);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.ed-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.ed-hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1.5px solid var(--ed-cream-dd);
}
.ed-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ed-ink);
  line-height: 1;
  margin-bottom: 3px;
}
.ed-hero-stat-lbl {
  font-size: .68rem;
  font-weight: 500;
  color: var(--ed-warm-gray);
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* Hero visual */
.ed-hero-visual { position: relative; }

.ed-hero-photo {
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--ed-amber-l), var(--ed-cream-d), var(--ed-coral-l));
  box-shadow: var(--shadow-xl);
  transition: transform var(--t-base);
}
.ed-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.ed-hero-photo:hover { transform: rotate(-1deg); }

.ed-hero-float {
  position: absolute;
  background: var(--ed-white);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 20px 60px rgba(28,26,20,.12);
  border: 1.5px solid rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ed-hero-float-1 { bottom: 48px; left: -52px; animation: ed-float-1 5s ease-in-out infinite; }
.ed-hero-float-2 { top: 52px; right: -44px; animation: ed-float-2 6s ease-in-out infinite; }
.ed-hero-float-3 { top: 50%; left: -64px; transform: translateY(-50%); flex-direction: column; text-align: center; padding: 18px 20px; animation: ed-float-3 7s ease-in-out infinite; }

@keyframes ed-float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes ed-float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes ed-float-3 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 8px))} }

.ed-float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ed-fi-amber { background: var(--ed-amber-xl); }
.ed-fi-coral { background: var(--ed-coral-xl); }
.ed-fi-sage  { background: var(--ed-sage-xl);  }

.ed-float-main { font-size: .82rem; font-weight: 500; color: var(--ed-ink); line-height: 1.3; }
.ed-float-sub  { font-size: .7rem; color: var(--ed-warm-gray); margin-top: 2px; }
.ed-float-big-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--ed-amber-d); line-height: 1; }
.ed-float-big-lbl { font-size: .68rem; color: var(--ed-warm-gray); margin-top: 4px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

.ed-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(232,162,58,.25);
  pointer-events: none;
}
.ed-hero-ring-1 { width: 120px; height: 120px; top: -20px; right: -20px; animation: ed-spin 20s linear infinite; }
.ed-hero-ring-2 { width: 60px; height: 60px; bottom: 120px; right: -10px; animation: ed-spin 14s linear infinite reverse; }
@keyframes ed-spin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .ed-hero-inner { grid-template-columns: 1fr; padding: 100px 20px 60px; }
  .ed-hero-visual { display: none; }
  .ed-hero { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   CLASS CARDS
═══════════════════════════════════════════════════════ */
.ed-class-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform .4s var(--ease-bounce), box-shadow .4s;
  cursor: pointer;
}
.ed-class-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(28,26,20,.18); }

.ed-class-inner { padding: 32px 24px; height: 100%; display: flex; flex-direction: column; }

.ed-class-creche { background: linear-gradient(160deg, #FF8A65, #E64A19); }
.ed-class-ps     { background: linear-gradient(160deg, #4DB6AC, #00796B); }
.ed-class-ms     { background: linear-gradient(160deg, #BA68C8, #6A1B9A); }
.ed-class-gs     { background: linear-gradient(160deg, #81C784, #2E7D32); }

.ed-class-emoji { font-size: 3rem; margin-bottom: 24px; display: block; filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }
.ed-class-tag   { background: rgba(255,255,255,.2); color: white; padding: 4px 12px; border-radius: var(--r-pill); font-size: .68rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; display: inline-block; margin-bottom: 10px; width: fit-content; }
.ed-class-name  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.1; }
.ed-class-age   { font-size: .78rem; color: rgba(255,255,255,.75); margin-bottom: 20px; font-weight: 300; }

.ed-class-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ed-class-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  font-weight: 300;
}
.ed-class-feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  color: white;
  flex-shrink: 0;
  font-weight: 700;
}

.ed-class-arrow {
  margin-top: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all .3s var(--ease-bounce);
}
.ed-class-card:hover .ed-class-arrow { background: white; color: var(--ed-ink); transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   EVENT CARDS
═══════════════════════════════════════════════════════ */
.ed-event-card {
  background: white;
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid rgba(28,26,20,.04);
  transition: all var(--t-base);
  cursor: pointer;
}
.ed-event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ed-amber-l);
}

.ed-event-date {
  min-width: 60px; height: 64px;
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ed-ev-amber { background: linear-gradient(135deg, var(--ed-amber), var(--ed-amber-d)); }
.ed-ev-coral { background: linear-gradient(135deg, var(--ed-coral-l), var(--ed-coral)); }
.ed-ev-sage  { background: linear-gradient(135deg, var(--ed-sage-l), var(--ed-sage)); }
.ed-ev-sky   { background: linear-gradient(135deg, #7EC8E3, var(--ed-sky)); }
.ed-ev-red   { background: linear-gradient(135deg, #EF9A9A, #E53935); }

.ed-event-day   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; line-height: 1; }
.ed-event-month { font-size: .58rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.85); }

.ed-event-info { flex: 1; }
.ed-event-title { font-size: .92rem; font-weight: 500; color: var(--ed-ink); margin-bottom: 4px; }
.ed-event-meta  { font-size: .74rem; color: var(--ed-warm-gray); }

.ed-event-countdown {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ed-amber-d);
  background: var(--ed-amber-xl);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  flex-shrink: 0;
}
.ed-event-countdown--soon { background: var(--ed-coral-xl); color: var(--ed-coral); }

/* ═══════════════════════════════════════════════════════
   TARIF CARDS
═══════════════════════════════════════════════════════ */
.ed-tarif-card {
  background: white;
  border-radius: 28px;
  padding: 36px 28px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.ed-tarif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 2px 2px 0 0;
  transition: height .3s;
}
.ed-tarif-1::before { background: linear-gradient(90deg, var(--ed-sage), var(--ed-sage-l)); }
.ed-tarif-2::before { background: linear-gradient(90deg, var(--ed-amber), var(--ed-coral)); }
.ed-tarif-3::before { background: linear-gradient(90deg, var(--ed-sky), var(--ed-sky-l)); }

.ed-tarif-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.ed-tarif-card.featured {
  border-color: var(--ed-amber-l);
  box-shadow: var(--shadow-amber);
}
.ed-tarif-card.featured::before { height: 6px; }

.ed-tarif-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--ed-amber), var(--ed-coral));
  color: white;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ed-tarif-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.ed-tarif-name     { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ed-ink); margin-bottom: 6px; }
.ed-tarif-subtitle { font-size: .78rem; color: var(--ed-warm-gray); margin-bottom: 24px; font-weight: 300; }

.ed-tarif-price-row {
  padding: 18px 0;
  border-top: 1.5px solid var(--ed-cream-d);
  border-bottom: 1.5px solid var(--ed-cream-d);
  margin-bottom: 24px;
}
.ed-tarif-price      { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--ed-amber-d); }
.ed-tarif-price-sub  { font-size: .74rem; color: var(--ed-warm-gray); display: block; margin-top: 3px; }

.ed-tarif-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ed-tarif-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--ed-ink-soft);
}
.ed-tarif-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ed-sage-l), var(--ed-sage));
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem;
  color: white;
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════════════ */
.ed-form { display: flex; flex-direction: column; gap: 14px; }
.ed-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ed-form-group { display: flex; flex-direction: column; gap: 5px; }

.ed-form-label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ed-warm-gray);
}

.ed-form-input,
.ed-form-select,
.ed-form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--ed-cream-dd);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ed-ink);
  outline: none;
  background: var(--ed-cream);
  transition: all .25s;
  width: 100%;
}
.ed-form-input::placeholder,
.ed-form-textarea::placeholder { color: var(--ed-sand); }
.ed-form-input:focus,
.ed-form-select:focus,
.ed-form-textarea:focus {
  border-color: var(--ed-amber);
  background: white;
  box-shadow: 0 0 0 4px rgba(232,162,58,.1);
}
.ed-form-textarea { resize: vertical; min-height: 100px; }

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

/* ═══════════════════════════════════════════════════════
   CONTACT INFO ITEMS
═══════════════════════════════════════════════════════ */
.ed-contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ed-contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ed-ci-amber { background: var(--ed-amber-xl); }
.ed-ci-coral { background: var(--ed-coral-xl); }
.ed-ci-sage  { background: var(--ed-sage-xl); }
.ed-ci-sky   { background: rgba(74,127,168,.1); }

.ed-contact-label { font-size: .68rem; font-weight: 500; text-transform: uppercase; letter-spacing: .09em; color: var(--ed-warm-gray); margin-bottom: 4px; }
.ed-contact-value { font-size: .95rem; color: var(--ed-ink); line-height: 1.6; }
.ed-contact-value a { color: var(--ed-ink); transition: color var(--t-base); }
.ed-contact-value a:hover { color: var(--ed-amber-d); }

/* ═══════════════════════════════════════════════════════
   NEWS CARDS
═══════════════════════════════════════════════════════ */
.ed-news-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid rgba(28,26,20,.04);
  transition: all var(--t-base);
}
.ed-news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.ed-news-img {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ed-amber-xl), var(--ed-coral-xl));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.ed-news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-base); }
.ed-news-card:hover .ed-news-img img { transform: scale(1.05); }

.ed-news-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ed-amber);
  color: white;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ed-news-body { padding: var(--sp-xl); }
.ed-news-date  { font-size: .72rem; font-weight: 500; color: var(--ed-warm-gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.ed-news-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ed-ink); margin-bottom: 8px; line-height: 1.3; transition: color var(--t-base); }
.ed-news-card:hover .ed-news-title { color: var(--ed-amber-d); }
.ed-news-excerpt { font-size: .85rem; color: var(--ed-warm-gray); line-height: 1.7; }
.ed-news-link { display: inline-flex; align-items: center; gap: 5px; margin-top: var(--sp-md); font-size: .85rem; font-weight: 500; color: var(--ed-amber-d); transition: gap var(--t-base); }
.ed-news-link:hover { gap: 10px; color: var(--ed-amber-d); }

/* ═══════════════════════════════════════════════════════
   PORTAL — inner pages
═══════════════════════════════════════════════════════ */
.ed-portal-header {
  background: linear-gradient(135deg, var(--ed-ink), var(--ed-ink-soft));
  padding: 24px var(--sp-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ed-portal-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ed-amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.ed-portal-name { font-size: .95rem; font-weight: 500; color: var(--ed-cream); }
.ed-portal-role { font-size: .8rem; color: rgba(250,246,238,.55); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
[data-ed-reveal] {
  opacity: 0;
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth);
}
[data-ed-reveal="up"]    { transform: translateY(32px); }
[data-ed-reveal="left"]  { transform: translateX(-32px); }
[data-ed-reveal="right"] { transform: translateX(32px); }
[data-ed-reveal="scale"] { transform: scale(.95); }

[data-ed-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Delays */
[data-ed-delay="1"] { transition-delay: .1s; }
[data-ed-delay="2"] { transition-delay: .2s; }
[data-ed-delay="3"] { transition-delay: .3s; }
[data-ed-delay="4"] { transition-delay: .4s; }
[data-ed-delay="5"] { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════
   CTA CARD (dark)
═══════════════════════════════════════════════════════ */
.ed-cta-card {
  background: linear-gradient(145deg, var(--ed-ink), var(--ed-ink-soft));
  border-radius: var(--r-2xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.ed-cta-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,162,58,.15), transparent 70%);
}
.ed-cta-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,74,.1), transparent 70%);
}
.ed-cta-card > * { position: relative; z-index: 1; }
.ed-cta-card h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ed-cream); line-height: 1.15; margin-bottom: 14px; letter-spacing: -.02em; }
.ed-cta-card p  { font-size: .88rem; color: rgba(250,246,238,.55); line-height: 1.85; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════
   DOC LIST
═══════════════════════════════════════════════════════ */
.ed-doc-list { display: flex; flex-direction: column; gap: 8px; }
.ed-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  cursor: pointer;
  color: rgba(250,246,238,.55);
  text-decoration: none;
  font-size: .82rem;
}
.ed-doc-item:hover {
  background: rgba(255,255,255,.1);
  color: rgba(250,246,238,.9);
  transform: translateX(5px);
}
.ed-doc-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(232,162,58,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   VALUES LIST (about page)
═══════════════════════════════════════════════════════ */
.ed-values { display: flex; flex-direction: column; gap: 20px; }
.ed-value-item { display: flex; gap: 16px; align-items: flex-start; }
.ed-value-num {
  width: 36px; height: 36px;
  background: var(--ed-cream-d);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ed-amber-d);
  flex-shrink: 0;
}
.ed-value-title { font-size: .9rem; font-weight: 500; color: var(--ed-ink); margin-bottom: 3px; }
.ed-value-desc  { font-size: .82rem; color: var(--ed-warm-gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.ed-footer {
  background: var(--ed-ink);
  padding: 80px 48px 32px;
}

.ed-footer-inner { max-width: var(--container); margin: 0 auto; }

.ed-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,238,.06);
}

.ed-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ed-footer-logo-mark {
  width: 40px; height: 40px;
  background: var(--ed-amber);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transform: rotate(-4deg);
}
.ed-footer-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--ed-cream); }
.ed-footer-desc { font-size: .82rem; color: rgba(250,246,238,.4); line-height: 1.9; max-width: 280px; margin-bottom: 22px; }

.ed-footer-socials { display: flex; gap: 8px; }
.ed-footer-social {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(250,246,238,.06);
  border: 1px solid rgba(250,246,238,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,238,.4);
  font-size: .82rem;
  transition: all var(--t-base);
  cursor: pointer;
}
.ed-footer-social:hover { background: var(--ed-amber); border-color: var(--ed-amber); color: white; transform: translateY(-2px); }

.ed-footer-col-title {
  font-size: .68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(250,246,238,.28);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(250,246,238,.06);
}

.ed-footer-links { display: flex; flex-direction: column; gap: 8px; }
.ed-footer-link {
  font-size: .82rem;
  color: rgba(250,246,238,.4);
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.ed-footer-link::before { content: '→'; opacity: 0; transform: translateX(-6px); transition: all var(--t-base); font-size: .7rem; color: var(--ed-amber); }
.ed-footer-link:hover { color: rgba(250,246,238,.85); }
.ed-footer-link:hover::before { opacity: 1; transform: translateX(0); }

.ed-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(250,246,238,.22);
  flex-wrap: wrap;
  gap: 10px;
}
.ed-footer-bottom a { color: rgba(250,246,238,.22); transition: color var(--t-base); }
.ed-footer-bottom a:hover { color: var(--ed-amber); }

@media (max-width: 1024px) { .ed-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); } }
@media (max-width: 640px)  { .ed-footer-grid { grid-template-columns: 1fr; } .ed-footer { padding: 60px 20px 28px; } }

/* ═══════════════════════════════════════════════════════
   SCROLL TOP
═══════════════════════════════════════════════════════ */
.ed-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ed-amber);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-amber);
  z-index: 100;
  border: none;
  font-size: 1.1rem;
}
.ed-scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ed-scroll-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   ELEMENTOR OVERRIDES
═══════════════════════════════════════════════════════ */
.elementor-section { position: relative; }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-display) !important; letter-spacing: -.02em !important; }
.elementor-widget-text-editor p { line-height: 1.85; }

/* Elementor Kit resets for our design */
.elementor-kit-tag h1,
.elementor-kit-tag h2 { letter-spacing: -.02em; }
