
/* ============================================================
   FoyerSélah v2 – style.css
   Design: Inspiriert vom visionSélah-Logo
   Palette: Tiefes Marine · Wellen-Grün · Himmelblau · Goldakzent
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --navy:        #0E1B2E;
  --navy-mid:    #162640;
  --navy-light:  #1E3554;
  --wave-teal:   #1B6B6B;
  --wave-green:  #2E7D4F;
  --leaf-bright: #6DB33F;
  --sky-blue:    #4A90C4;
  --sky-light:   #7BB8D4;
  --gold:        #C8973A;
  --gold-light:  #E8C47A;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --white:       #FDFCFA;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-arch: 50% 50% 0 0 / 60% 60% 0 0; /* gotischer Bogen wie im Logo */

  --shadow: 0 8px 32px rgba(14,27,46,0.35);
  --glow:   0 0 40px rgba(27,107,107,0.2);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Skip Link ── */
.skip { position: absolute; left:-9999px; top:0; }
.skip:focus { left:1rem; z-index:9999; background:var(--gold); color:var(--navy); padding:.5rem 1rem; border-radius:var(--r-sm); }

/* ── Wave Background Utility ── */
.wave-bg {
  position: relative;
  overflow: hidden;
}
.wave-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(46,125,79,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(74,144,196,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(27,107,107,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.wave-bg > * { position: relative; z-index: 1; }

/* ── Container ── */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(14, 27, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,144,196,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

.logo-sub {
  font-size: .65rem;
  font-weight: 400;
  color: var(--sky-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(245,240,232,.7);
  padding: .4rem .8rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--sky-light);
  background: rgba(74,144,196,.12);
}

.header-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

.lang-sw {
  display: flex;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
}
.lang-sw a {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(245,240,232,.5);
  padding: 3px 10px;
  border-radius: 99px;
  transition: all .2s;
}
.lang-sw a.on {
  background: var(--sky-blue);
  color: white;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; height: 34px;
  padding: 6px;
  border-radius: var(--r-sm);
}
.burger span {
  display: block; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mob-nav {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--navy);
  z-index: 190;
  padding: 2.5rem clamp(1.25rem,5vw,2.5rem);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
  pointer-events: none;
}
.mob-nav.open { transform: none; pointer-events: auto; }

.mob-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mob-link:hover { color: var(--sky-light); }

/* ── Hero ── */
.hero {
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem clamp(1.25rem,5vw,2.5rem);
  position: relative;
  background:
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-light) 100%);
  overflow: hidden;
}

/* Arch shape (Logo-Motiv) */
.hero__arch {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 140vw);
  aspect-ratio: 1 / 1.1;
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  background: radial-gradient(ellipse at 50% 80%,
    rgba(46,125,79,.22) 0%,
    rgba(27,107,107,.18) 35%,
    rgba(74,144,196,.10) 65%,
    transparent 100%);
  pointer-events: none;
}

/* Decorative wave lines */
.hero__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 1.5rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(123,184,212,.25);
  border-radius: 99px;
  background: rgba(74,144,196,.08);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(.95rem,1.8vw,1.1rem);
  color: rgba(245,240,232,.7);
  line-height: 1.7;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s;
  border: 1.5px solid transparent;
}
.btn-lg { padding: .9rem 2.2rem; font-size: .95rem; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-primary {
  background: var(--wave-green);
  color: white;
  border-color: var(--wave-green);
}
.btn-primary:hover { background: #256640; border-color: #256640; }

.btn-outline {
  background: transparent;
  color: var(--sky-light);
  border-color: rgba(123,184,212,.4);
}
.btn-outline:hover { background: rgba(74,144,196,.12); border-color: var(--sky-light); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── Section Base ── */
section { padding-block: clamp(3.5rem,8vw,5.5rem); }

.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,3.5vw,2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,.65);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Audience Cards ── */
.bg-layer { background: var(--navy-mid); }
.bg-deep  { background: var(--navy); }
.bg-teal  { background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-mid) 100%); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.acard {
  position: relative;
  background: var(--navy-light);
  border: 1px solid rgba(74,144,196,.18);
  border-radius: var(--r-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform .25s var(--ease-out), border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
}
.acard::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,196,.07) 0%, transparent 65%);
  pointer-events: none;
}
.acard:hover {
  transform: translateY(-5px);
  border-color: rgba(123,184,212,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), var(--glow);
  color: inherit;
}
.acard--gold { border-color: rgba(200,151,58,.25); }
.acard--gold:hover { border-color: rgba(200,151,58,.5); }
.acard--gold::before { background: radial-gradient(circle, rgba(200,151,58,.06) 0%, transparent 65%); }

.acard__icon { font-size: 1.8rem; }
.acard__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.acard__desc {
  font-size: .83rem;
  color: rgba(245,240,232,.6);
  line-height: 1.65;
  flex: 1;
}
.acard__cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--sky-light);
  margin-top: auto;
  transition: gap .2s;
}
.acard:hover .acard__cta { gap: .7rem; }
.acard--gold .acard__cta { color: var(--gold-light); }

/* ── Two-col ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,4rem);
  align-items: center;
}
.two-col--wide { grid-template-columns: 3fr 2fr; }

/* ── Impact Grid (5er) ── */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media(max-width:900px) { .grid-5 { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px) { .grid-5 { grid-template-columns: 1fr 1fr; } }

.icard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  padding: 1.4rem 1.2rem;
  transition: background .2s, border-color .2s;
}
.icard:hover { background: rgba(74,144,196,.09); border-color: rgba(123,184,212,.2); }
.icard__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(123,184,212,.3);
  line-height: 1;
  margin-bottom: .6rem;
}
.icard__title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--sky-light);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.icard__text { font-size: .78rem; color: rgba(245,240,232,.5); line-height: 1.6; }

/* ── Values Grid ── */
.grid-vals {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media(max-width:700px) { .grid-vals { grid-template-columns: 1fr 1fr; } }

.vcard {
  border-left: 2px solid var(--wave-teal);
  padding: .9rem 1rem;
  background: rgba(27,107,107,.08);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.vcard__label { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.vcard__desc { font-size: .75rem; color: rgba(245,240,232,.5); line-height: 1.5; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 0; counter-reset: s; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; padding-bottom: 1.5rem; position: relative; }
.step::after { content:''; position:absolute; left:17px; top:36px; bottom:0; width:1px; background: rgba(74,144,196,.2); }
.step:last-child::after { display:none; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: s;
  content: counter(s);
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--wave-teal);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  z-index: 1;
}
.step__body { padding-top: 6px; }
.step__title { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.step__text { font-size: .8rem; color: rgba(245,240,232,.55); line-height: 1.6; }

/* ── Feature list ── */
.flist { display: flex; flex-direction: column; gap: .9rem; }
.flist li { display: flex; gap: .9rem; align-items: flex-start; }
.flist__dot {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(46,125,79,.3);
  border: 1px solid var(--wave-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.flist__dot::after { content:''; width: 6px; height: 6px; background: var(--leaf-bright); border-radius: 50%; }
.flist__text { font-size: .85rem; color: rgba(245,240,232,.65); line-height: 1.65; }
.flist__text strong { color: var(--cream); display: block; font-size: .88rem; margin-bottom: 1px; }

/* ── Table ── */
.tbl-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid rgba(74,144,196,.15); }
.tbl { width: 100%; font-size: .82rem; }
.tbl th { background: rgba(74,144,196,.1); color: var(--sky-light); font-weight: 600; text-align: left; padding: .8rem 1rem; border-bottom: 1px solid rgba(74,144,196,.2); white-space: nowrap; }
.tbl td { padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05); color: rgba(245,240,232,.65); vertical-align: top; }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover td { background: rgba(74,144,196,.05); }
.tbl tfoot td { font-weight: 600; color: var(--cream); background: rgba(255,255,255,.04); border-top: 1px solid rgba(74,144,196,.2); }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq__item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 0; font-size: .92rem; font-weight: 500;
  color: var(--cream); text-align: left; transition: color .2s;
}
.faq__q:hover { color: var(--sky-light); }
.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid rgba(123,184,212,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-light); font-size: 1rem; line-height: 1;
  transition: background .2s, transform .25s;
}
.faq__q[aria-expanded="true"] .faq__icon { background: var(--wave-teal); transform: rotate(45deg); }
.faq__a { display: none; padding-bottom: 1rem; font-size: .82rem; color: rgba(245,240,232,.6); line-height: 1.75; }
.faq__a.open { display: block; }

/* ── Box ── */
.box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(74,144,196,.15);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
}
.box__title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }

/* ── Quote ── */
.quote {
  border-left: 2px solid var(--wave-teal);
  padding: 1.1rem 1.4rem;
  background: rgba(27,107,107,.1);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245,240,232,.8);
  line-height: 1.65;
  margin-block: 1.5rem;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 99px;
  background: rgba(46,125,79,.25); color: var(--leaf-bright);
  border: 1px solid rgba(109,179,63,.3);
}

/* ── Alert ── */
.alert {
  background: rgba(74,144,196,.08);
  border-left: 2px solid var(--sky-blue);
  border-radius: var(--r-sm);
  padding: .9rem 1.1rem;
  font-size: .82rem;
  color: rgba(245,240,232,.7);
  line-height: 1.65;
}

/* ── Forms ── */
.fg { margin-bottom: 1.1rem; }
.flabel { display: block; font-size: .78rem; font-weight: 600; color: var(--sky-light); margin-bottom: .4rem; letter-spacing: .04em; }
.finput, .fselect, .ftextarea {
  width: 100%; padding: .7rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(74,144,196,.2);
  border-radius: var(--r-sm);
  font-size: .9rem; color: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.finput:focus, .fselect:focus, .ftextarea:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(74,144,196,.15);
}
.finput::placeholder, .ftextarea::placeholder { color: rgba(245,240,232,.25); }
.ftextarea { min-height: 130px; resize: vertical; }
.fselect { cursor: pointer; }
.fselect option { background: var(--navy-mid); }
.fnote { font-size: .72rem; color: rgba(245,240,232,.4); margin-top: .4rem; line-height: 1.5; }
.fnote a { color: var(--sky-light); }

/* ── Page Hero ── */
.phero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: clamp(3rem,8vw,5rem) 0 clamp(2rem,5vw,3.5rem);
  border-bottom: 1px solid rgba(74,144,196,.12);
  position: relative;
  overflow: hidden;
}
.phero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--navy-mid));
}
.phero__tag { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-light); margin-bottom: .75rem; display: block; }
.phero__title { font-family: var(--font-display); font-size: clamp(1.8rem,5vw,3rem); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: .75rem; }
.phero__lead { font-size: 1rem; color: rgba(245,240,232,.65); line-height: 1.7; max-width: 540px; }

/* ── Breadcrumb ── */
.bc { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; padding: 1rem 0; font-size: .72rem; }
.bc a { color: rgba(245,240,232,.4); }
.bc a:hover { color: var(--sky-light); }
.bc__cur { color: rgba(245,240,232,.7); font-weight: 500; }
.bc__sep { color: rgba(255,255,255,.2); }

/* ── espaceSélah Banner ── */
.espace-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(74,144,196,.15);
  border-bottom: 1px solid rgba(74,144,196,.15);
  padding: 2.5rem 0;
}
.espace-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.espace-inner h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: .35rem; }
.espace-inner p { font-size: .82rem; color: rgba(245,240,232,.55); max-width: 500px; }

/* ── Footer ── */
.site-footer {
  background: #080F18;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(74,144,196,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem,4vw,3rem);
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .78rem; color: rgba(245,240,232,.45); line-height: 1.7; margin-top: .75rem; }
.fcol h4 { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,240,232,.35); margin-bottom: 1rem; }
.flinks { display: flex; flex-direction: column; gap: .4rem; }
.flinks a { font-size: .78rem; color: rgba(245,240,232,.45); transition: color .2s; }
.flinks a:hover { color: var(--sky-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { font-size: .7rem; color: rgba(245,240,232,.3); }
.fbot-links { display: flex; gap: 1.5rem; }
.fbot-links a { font-size: .7rem; color: rgba(245,240,232,.3); }
.fbot-links a:hover { color: var(--sky-light); }

/* ── TODO note (dev only) ── */
.todo { display: inline-block; background: rgba(200,151,58,.15); border-left: 2px solid var(--gold); color: var(--gold-light); padding: .25rem .6rem; font-size: .7rem; border-radius: 0 3px 3px 0; font-style: italic; }

/* ── Img placeholder ── */
.imgph {
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(74,144,196,.2);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; padding: 3rem 2rem; text-align: center;
  color: rgba(245,240,232,.3); font-size: .78rem; line-height: 1.5;
}
.imgph svg { width: 40px; height: 40px; opacity: .3; margin: 0 auto; }

/* ── Responsive ── */
@media(max-width:900px){
  .site-nav { display: none; }
  .burger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col--wide { grid-template-columns: 1fr; }
  .logo-sub { display: none; }
}
@media(max-width:600px){
  .footer-grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .espace-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .grid-vals { grid-template-columns: 1fr 1fr; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero__inner > * {
  animation: fadeUp .7s var(--ease-out) both;
}
.hero__inner > *:nth-child(1) { animation-delay: .1s; }
.hero__inner > *:nth-child(2) { animation-delay: .22s; }
.hero__inner > *:nth-child(3) { animation-delay: .34s; }
.hero__inner > *:nth-child(4) { animation-delay: .46s; }

@media(prefers-reduced-motion:reduce){
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
