/* ================================================================
   FEL'HYPNOSE — Main Stylesheet v2.0
   Design: Lovable parity — Purple / Lavender-mist palette
   Fonts: Comic Sans MS (headings) + Avenir / Nunito Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES (from lovable/src/index.css HSL tokens) ─────── */
:root {
  /* Purple / primary — hsl(263 70% 50%) */
  --fel-purple:         hsl(263 70% 50%);
  --fel-purple-dark:    hsl(263 70% 40%);
  --fel-purple-mid:     hsl(270 40% 70%);

  /* Lavender shades */
  --fel-lavender:       hsl(270 60% 80%);
  --fel-lavender-light: hsl(270 15% 93%);
  --fel-lavender-pale:  hsl(270 30% 96%);

  /* Neutrals */
  --fel-white:          hsl(270 20% 98%);   /* background */
  --fel-card:           hsl(0 0% 100%);
  --fel-text:           hsl(270 30% 15%);
  --fel-text-light:     hsl(270 10% 45%);
  --fel-border:         hsl(270 20% 90%);
  --fel-accent:         hsl(257 100% 93%);
  --fel-accent-fg:      hsl(263 70% 40%);

  --fel-gold:           #C9A96E;
  --fel-button-text:    #fff;

  --fel-font-serif: 'Quicksand', system-ui, -apple-system, 'Nunito Sans', sans-serif;
  --fel-font-sans:  'Avenir', 'Avenir Next', 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --fel-font-script: 'Caveat', cursive;

  --fel-radius:       0.75rem;
  --fel-shadow:       0 4px 24px rgba(124, 58, 237, 0.10);
  --fel-shadow-hover: 0 8px 40px rgba(124, 58, 237, 0.20);
  --fel-transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --ghost-accent-color: hsl(263 70% 50%);
}

/* ── DARK MODE (from lovable .dark block) ──────────────────────── */
body.dark-mode {
  --fel-white:          hsl(270 30% 8%);
  --fel-card:           hsl(270 25% 12%);
  --fel-text:           hsl(270 15% 90%);
  --fel-text-light:     hsl(270 10% 60%);
  --fel-purple:         hsl(263 60% 65%);
  --fel-purple-dark:    hsl(263 60% 75%);
  --fel-purple-mid:     hsl(270 30% 45%);
  --fel-lavender:       hsl(270 30% 40%);
  --fel-lavender-light: hsl(270 15% 20%);
  --fel-lavender-pale:  hsl(270 20% 15%);
  --fel-border:         hsl(270 15% 20%);
  --fel-accent:         hsl(270 25% 22%);
  --fel-accent-fg:      hsl(263 60% 75%);
  --fel-gold:           #d4a96e;
  --fel-button-text:    #0a0612;
  --ghost-accent-color: hsl(263 60% 65%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fel-font-sans);
  background-color: var(--fel-white);
  color: var(--fel-text);
  line-height: 1.8;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*
  Ghost can inject additional styles after `main.css` via `{{ghost_head}}`.
  Use slightly higher specificity on base typography so our design stays stable.
*/
body p {
  font-size: 0.875rem; /* 14px on 16px root */
  line-height: 1.75;
}

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

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--fel-font-serif);
  color: var(--fel-text);
  line-height: 1.15;
  font-weight: 600;
}
h5, h6 {
  font-family: var(--fel-font-sans);
  color: var(--fel-text);
  font-weight: 600;
}

h1 { font-size: var(--fel-h1-size, clamp(2.3rem, 6vw, 4.5rem)); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; margin: 0 0 1.5rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; margin: 0 0 1rem; }
h4 { font-size: 1.1rem; font-weight: 600; }

p {
  font-family: var(--fel-font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fel-text-light);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--fel-purple);
  text-decoration: none;
  transition: var(--fel-transition);
}

a:hover { color: var(--fel-purple-dark); text-decoration: underline; }

strong { font-weight: 600; color: var(--fel-purple-dark); }
em { font-style: italic; color: var(--fel-text-light); }

ul, ol {
  font-family: var(--fel-font-sans);
  padding-left: 1.5rem;
  color: var(--fel-text);
  font-weight: 300;
}

li { margin-bottom: 0.6rem; line-height: 1.7; }
li::marker { color: var(--fel-lavender); }

blockquote {
  background: var(--fel-lavender-pale);
  border-left: 4px solid var(--fel-lavender);
  border-radius: 0 var(--fel-radius) var(--fel-radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: var(--fel-font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fel-purple-dark);
}

blockquote p { color: var(--fel-purple-dark); margin: 0; }

hr {
  border: none;
  border-top: 1px solid var(--fel-lavender-light);
  margin: 3rem auto;
  width: 60%;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
.fel-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.fel-container--narrow { max-width: 100%; }
.fel-container--text   { max-width: 100%; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.fel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fel-font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--fel-radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: var(--fel-transition);
  white-space: nowrap;
}

.fel-btn:hover { text-decoration: none; }

.fel-btn--primary {
  background: var(--fel-purple);
  color: var(--fel-button-text);
  border-color: var(--fel-purple);
}

/* Ensure link styles don't override button text color */
a.fel-btn.fel-btn--primary {
  color: var(--fel-button-text);
}

.fel-btn--primary:hover {
  background: var(--fel-purple-dark);
  border-color: var(--fel-purple-dark);
  box-shadow: 0 6px 24px rgba(124, 92, 191, 0.30);
  transform: translateY(-1px);
  color: var(--fel-button-text);
}

.fel-btn--outline {
  background: transparent;
  color: var(--fel-purple);
  border-color: var(--fel-lavender);
}

.fel-btn--outline:hover {
  background: var(--fel-lavender-pale);
  border-color: var(--fel-purple);
  color: var(--fel-purple-dark);
}

/* ── HEADER ────────────────────────────────────────────────────── */
.fel-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: var(--fel-transition);
  padding: 1.2rem 0;
}

/* Hide legacy/foreign dark-mode toggle if injected by Ghost/code-injection */
#fel-dark-toggle {
  display: none !important;
}

.fel-header.is-scrolled {
  background: color-mix(in srgb, var(--fel-white) 95%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fel-lavender-light);
  box-shadow: 0 2px 20px color-mix(in srgb, var(--fel-purple) 6%, transparent);
  padding: 0.75rem 0;
}

.fel-header .fel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── LOGO ──────────────────────────────────────────────────────── */
.fel-logo {
  font-family: var(--fel-font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--fel-text);
  letter-spacing: 0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.fel-logo:hover { text-decoration: none; color: var(--fel-purple); }
.fel-logo span { color: var(--fel-purple); }

/* ── NAV ───────────────────────────────────────────────────────── */
.fel-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Ghost {{navigation}} generates <ul class="nav"> */
.fel-nav .nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.fel-nav .nav a {
  font-family: var(--fel-font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fel-text);
  text-decoration: none;
  transition: var(--fel-transition);
  padding: 0.3rem 0;
  position: relative;
}

.fel-nav .nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--fel-purple);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.fel-nav .nav a:hover { color: var(--fel-purple); text-decoration: none; }
.fel-nav .nav a:hover::after,
.fel-nav .nav .nav-current > a::after { transform: scaleX(1); }
.fel-nav .nav .nav-current > a { color: var(--fel-purple); }

.fel-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

#dark-toggle,
#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1.1rem;
  color: var(--fel-text);
  border-radius: 50%;
  transition: var(--fel-transition);
  line-height: 1;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

/* Dark mode icon can be missing in some fonts; force symbol-capable stack */
#dark-toggle {
  display: flex;
  font-family: "Noto Sans Symbols2", "Noto Sans Symbols", "Segoe UI Symbol", system-ui, sans-serif;
}

/* Menu icon should be visible on mobile only */
#menu-toggle {
  display: none;
}

#dark-toggle:hover,
#menu-toggle:hover {
  background: var(--fel-lavender-pale);
  color: var(--fel-purple);
}

.fel-nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 768px) {
  .fel-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--fel-white);
    z-index: 99;
    align-items: center;
    justify-content: center;
  }

  .fel-nav.is-open { display: flex; }

  .fel-nav .nav {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .fel-nav .nav a {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }

  .fel-nav-toggle { display: flex; z-index: 101; position: relative; }
  #menu-toggle    { display: flex; z-index: 101; position: relative; }
}

/* ── HERO ──────────────────────────────────────────────────────── */
.fel-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--fel-lavender-pale), var(--fel-white), rgba(197, 180, 227, 0.3));
}

.fel-page-header.fel-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: linear-gradient(135deg, var(--fel-lavender-pale), var(--fel-white), rgba(197, 180, 227, 0.3));
}

.fel-page-header.fel-hero .fel-hero__body {
  max-width: 42rem;
  padding: 7rem 0 5rem;
  text-align: left;
}

.fel-page-header.fel-hero .fel-article-excerpt {
  max-width: 40rem;
  margin-left: 0;
  margin-right: 0;
}

.fel-page-header.fel-hero h1 {
  font-size: var(--fel-h1-size, clamp(3rem, 5vw + 1rem, 4.5rem));
  line-height: 1.12;
}

.fel-page-header.fel-hero .fel-hero__cta {
  justify-content: flex-start;
}

.fel-page-header.fel-hero .fel-page-header__bg img {
  opacity: 0.2;
}

.fel-page-header.fel-hero .fel-page-header__overlay {
  background: linear-gradient(to right, var(--fel-white) 0%, rgba(253, 252, 255, 0.8) 55%, transparent 100%);
}

body.dark-mode .fel-page-header.fel-hero .fel-page-header__overlay {
  background: linear-gradient(to right, var(--fel-white) 0%, rgba(26, 21, 32, 0.82) 55%, transparent 100%);
}

.fel-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fel-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.fel-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--fel-white) 0%, rgba(253, 252, 255, 0.8) 55%, transparent 100%);
}

.fel-hero .fel-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.fel-hero__layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.fel-hero__layout .fel-hero__body {
  padding-top: 0;
  padding-bottom: 0;
}

.fel-hero__image {
  flex: 0 0 auto;
  width: min(360px, 38%);
}

.fel-hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1.2rem;
  display: block;
  box-shadow: 0 20px 45px -20px rgba(91, 33, 182, 0.35);
}

.fel-page-header.fel-hero:has(.fel-hero__layout) .fel-hero__body {
  padding: 0;
  text-align: left;
  max-width: 36rem;
}

.fel-page-header.fel-hero:has(.fel-hero__layout) .fel-hero__cta {
  justify-content: flex-start;
}

.fel-page-header.fel-hero:has(.fel-hero__layout--centered) .fel-hero__layout {
  justify-content: center;
}

.fel-page-header.fel-hero:has(.fel-hero__layout--centered) .fel-hero__body {
  text-align: center;
}

.fel-page-header.fel-hero:has(.fel-hero__layout--centered) .fel-hero__cta {
  justify-content: center;
}

.layout-landing--center-hero .fel-page-header.fel-hero:has(.fel-hero__layout) .fel-hero__body {
  text-align: center;
  max-width: 42rem;
}

.layout-landing--center-hero .fel-page-header.fel-hero:has(.fel-hero__layout) .fel-hero__cta {
  justify-content: center;
}

.layout-landing--center-hero .fel-hero__layout {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.layout-landing--center-hero .fel-hero__image {
  width: min(280px, 70%);
}

.fel-hero__body {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 7rem 0 5rem;
  text-align: center;
}

.fel-hero__eyebrow {
  font-family: var(--fel-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fel-purple);
  margin-bottom: 1.2rem;
}

.fel-hero__body h1 {
  margin-bottom: 1.5rem;
  font-size: var(--fel-h1-size, clamp(3rem, 5vw + 1rem, 4.5rem));
  line-height: 1.12;
}

.fel-gradient-text {
  background: linear-gradient(135deg, var(--fel-purple-dark), var(--fel-purple-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.fel-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  justify-content: center;
}

.fel-hero__location {
  font-size: 0.8rem;
  color: var(--fel-text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
.fel-section { padding: 1rem 0; }
.fel-section--tinted { background: var(--fel-lavender-pale); }

/* ── PAGE HEADER (inner pages) ─────────────────────────────────── */
.fel-page-header {
  position: relative;
  background: linear-gradient(160deg, var(--fel-lavender-pale), var(--fel-white));
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.fel-page-header__bg {
  position: absolute;
  inset: 0;
}

.fel-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.fel-page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--fel-white) 92%, transparent),
    color-mix(in srgb, var(--fel-white) 88%, transparent));
}

body.dark-mode .fel-page-header__bg img {
  opacity: 0.08;
}

/* Title + intro: readable size and centered block (excerpt has max-width) */
.fel-page-header .fel-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.fel-page-header h1 {
  font-size: var(--fel-h1-size, clamp(2.25rem, 4vw, 3rem));
  line-height: 1.25;
  margin: 0 auto 0.75rem;
}

.fel-article-excerpt {
  font-family: var(--fel-font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--fel-text-light);
  font-weight: 300;
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 540px;
}

.fel-page-header .fel-article-excerpt {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── GHOST CONTENT ─────────────────────────────────────────────── */
.gh-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0;
}

/* Wider content area for tarifs / contact */
.page-tarifs   .gh-content,
.page-contact  .gh-content { max-width: 1000px; }

/* Koenig card containers */
.gh-content figure         { margin: 2rem 0; }
.gh-content img            { border-radius: 8px; }
.gh-content .kg-html-card  { max-width: 100%; overflow-x: auto; }

/* Koenig wide / full-width cards — required by Ghost theme validator */
.kg-width-wide {
  margin-left: -5vw;
  margin-right: -5vw;
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

/* Ghost Portal / member buttons — track button text variable */
a[data-portal], .gh-portal-btn,
a.gh-btn, .gh-btn {
  color: var(--fel-button-text);
  text-decoration: none;
}

a[data-portal]:hover, .gh-portal-btn:hover { color: var(--fel-button-text); text-decoration: none; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.fel-footer {
  background: var(--fel-lavender-pale);
  border-top: 1px solid var(--fel-lavender-light);
  padding: 4rem 0 2rem;
}

.fel-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.fel-footer-brand p:first-child {
  font-family: var(--fel-font-serif);
  font-size: 1.5rem;
  color: var(--fel-text);
  margin-bottom: 0.5rem;
}

.fel-footer-brand p { font-size: 0.9rem; color: var(--fel-text-light); }

.fel-footer h4 {
  font-family: var(--fel-font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fel-purple-dark);
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-family: var(--fel-font-sans);
}

/* Ghost {{navigation}} in footer */
.fel-footer-nav .nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fel-footer-nav .nav a {
  font-size: 0.9rem;
  color: var(--fel-text-light);
  text-decoration: none;
  transition: var(--fel-transition);
}

.fel-footer-nav .nav a:hover { color: var(--fel-purple); text-decoration: none; }

.fel-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fel-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.fel-footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--fel-purple);
  flex-shrink: 0;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fel-footer-contact-item h5 {
  font-family: var(--fel-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fel-purple);
  margin: 0 0 0.2rem;
}

.fel-footer-contact-item p {
  font-size: 0.88rem;
  color: var(--fel-text-light);
  margin: 0;
  line-height: 1.5;
}

.fel-footer-contact-item a {
  color: var(--fel-text-light);
  font-size: 0.88rem;
}

.fel-footer-contact-item a:hover { color: var(--fel-purple); }

.fel-footer-bottom {
  border-top: 1px solid var(--fel-lavender-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fel-footer-bottom p {
  font-size: 0.8rem;
  color: var(--fel-text-light);
  margin: 0;
}

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

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

/* ── FLOATING RDV BUTTON ────────────────────────────────────────── */
#fel-rdv-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 9999;
  background: linear-gradient(135deg, var(--fel-purple), var(--fel-purple-dark));
  color: var(--fel-button-text);
  border-radius: 50px;
  padding: 1rem 1.8rem;
  font-family: var(--fel-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: var(--fel-transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: fel-float-in 0.6s 1s both cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fel-float-in {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

#fel-rdv-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: var(--fel-button-text);
}

@media (max-width: 640px) {
  #fel-rdv-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.8rem 1.3rem;
    font-size: 0.8rem;
  }
}

/* ── FADE-IN ANIMATION ─────────────────────────────────────────── */
.fel-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fel-fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ── CONTENT-INJECTED COMPONENTS ───────────────────────────────── */
/* These classes are used inside Ghost HTML card blocks in the editor */

/* Pricing grid */
.fel-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 2rem;
  margin: 3rem auto;
}

.fel-pricing-card {
  background: var(--fel-card);
  border: 1px solid var(--fel-lavender-light);
  border-radius: var(--fel-radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--fel-transition);
}

.fel-pricing-card.is-featured {
  border-color: var(--fel-purple);
  box-shadow: var(--fel-shadow);
}

.fel-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fel-shadow-hover);
}

.fel-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fel-purple);
  color: var(--fel-button-text);
  font-family: var(--fel-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.fel-pricing-card h3 { text-align: center; }

.fel-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.5rem 0 1rem;
}

.fel-price {
  font-family: var(--fel-font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fel-purple);
  line-height: 1;
  margin: 0;
}

.fel-price span { font-size: 1.75rem; opacity: 0.7; }
.fel-price-sep {
  font-family: var(--fel-font-serif);
  font-size: 1.25rem;
  color: var(--fel-text-light);
  opacity: 0.6;
  line-height: 1;
}
.fel-duration { font-size: 1.5rem; font-family: var(--fel-font-serif); color: var(--fel-text-light); font-style: italic; margin: 0; line-height: 1; }

.fel-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  flex: 1;
}

.fel-pricing-card li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--fel-text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0;
}

.fel-pricing-card li .fel-icon-svg {
  color: var(--fel-purple);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Needs grid */
.fel-needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 2rem auto;
}

@media (max-width: 1024px) {
  .fel-needs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .fel-needs-grid { grid-template-columns: 1fr; }
}

.fel-need-card {
  background: var(--fel-card);
  border: 1px solid var(--fel-lavender-light);
  border-radius: var(--fel-radius);
  padding: 1.8rem;
  transition: var(--fel-transition);
}

.fel-need-card:hover { border-color: var(--fel-lavender); box-shadow: var(--fel-shadow); }
.fel-need-card .fel-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.fel-need-card .fel-icon-svg { width: 28px; height: 28px; color: var(--fel-purple); margin-bottom: 1rem; display: block; }
.fel-need-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; color: var(--fel-text); }
.fel-need-card p  { font-size: 0.9rem; color: var(--fel-text-light); margin: 0; }

/* Inline Lucide SVG default */
.fel-icon-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Horse / 2-column image + text */
.fel-horse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.fel-horse-grid .fel-hero__image {
  width: 100%;
  max-width: none;
  flex: unset;
}

.fel-horse-grid img,
.fel-horse-grid .fel-theme-hero-image-slot {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--fel-radius);
}

.fel-horse-grid .fel-theme-hero-image-slot {
  display: block;
  object-fit: unset;
  background-color: var(--fel-accent);
  background-image: var(--fel-seed-hero-image-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .fel-horse-grid { grid-template-columns: 1fr; }
}

/* Quotes grid — one horizontal row; columns share width as quotes are added */
.fel-quotes-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  margin: 2rem auto 0;
  max-width: 100%;
  width: 100%;
}

.fel-quotes-grid blockquote,
.layout-landing .gh-content .fel-quotes-grid blockquote,
.layout-about .gh-content .fel-quotes-grid blockquote {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.fel-quotes-grid blockquote p {
  font-family: var(--fel-font-serif);
  font-style: italic;
  font-size: clamp(0.68rem, 0.55rem + 0.9vw, 0.9rem);
  color: var(--fel-text-light);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.fel-quotes-grid blockquote cite {
  font-family: var(--fel-font-sans);
  font-size: clamp(0.62rem, 0.52rem + 0.45vw, 0.75rem);
  font-weight: 500;
  color: var(--fel-purple);
  font-style: normal;
}

@media (max-width: 380px) {
  .fel-quotes-grid {
    gap: 0.5rem;
  }
}

/* Process steps */
.fel-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.fel-step { text-align: center; padding: 2rem 1rem; }
.fel-step-num {
  font-family: var(--fel-font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--fel-lavender);
  line-height: 1;
  display: block;
}

.fel-step h3 { font-size: 1.05rem; margin: 0.5rem 0 0.6rem; color: var(--fel-text); }
.fel-step p  { font-size: 0.9rem; color: var(--fel-text-light); margin: 0; }

/* Info / disclaimer box */
.fel-info-box {
  background: var(--fel-lavender-pale);
  border: 1px solid var(--fel-lavender-light);
  border-radius: var(--fel-radius);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}

.fel-info-box p { font-size: 0.95rem; color: var(--fel-text-light); margin-bottom: 0.8rem; }
.fel-info-box p:last-child { margin-bottom: 0; }

/* Contact layout */
.fel-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .fel-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

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

.fel-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--fel-lavender-pale);
  border-radius: var(--fel-radius);
  border: 1px solid var(--fel-lavender-light);
}

.fel-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fel-purple);
  margin-top: 0.25rem;
}

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

.fel-contact-info-item h4 {
  font-family: var(--fel-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fel-purple);
  margin: 0 0 0.3rem;
}

.fel-contact-info-item p { font-size: 0.9rem; margin: 0; color: var(--fel-text-light); line-height: 1.5; }
.fel-contact-info-item a { color: var(--fel-text-light); }
.fel-contact-info-item a:hover { color: var(--fel-purple); }

/* Contact form */
.fel-form { display: flex; flex-direction: column; gap: 1.2rem; }
.fel-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fel-form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.fel-form label {
  font-family: var(--fel-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fel-text-light);
}

.fel-form input,
.fel-form textarea,
.fel-form select {
  font-family: var(--fel-font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fel-text);
  background: var(--fel-white);
  border: 1px solid var(--fel-lavender-light);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: var(--fel-transition);
}

.fel-form input:focus,
.fel-form textarea:focus,
.fel-form select:focus {
  outline: none;
  border-color: var(--fel-purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 191, 0.12);
}

.fel-form textarea { min-height: 160px; resize: vertical; }

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

/* Newsletter */
.fel-newsletter {
  background: var(--fel-lavender-pale);
  padding: 5rem 0;
  text-align: center;
}

.fel-newsletter h2 { margin: 0 0 1rem; }

.fel-newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 460px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.fel-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  font-family: var(--fel-font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--fel-lavender);
  border-radius: var(--fel-radius);
  background: var(--fel-white);
  color: var(--fel-text);
  outline: none;
  transition: var(--fel-transition);
}

.fel-newsletter-form input:focus {
  border-color: var(--fel-purple);
  box-shadow: 0 0 0 3px rgba(124, 92, 191, 0.12);
}

/* Eyebrow label (page headers) */
.fel-eyebrow {
  font-family: var(--fel-font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fel-purple);
  margin-bottom: 1rem;
}

/* Decorative divider */
.fel-divider {
  text-align: center;
  color: var(--fel-lavender);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin: 3rem 0;
}

/* Blog post card (for index.hbs) */
.fel-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.fel-post-card {
  background: var(--fel-card);
  border: 1px solid var(--fel-lavender-light);
  border-radius: var(--fel-radius);
  overflow: hidden;
  transition: var(--fel-transition);
}

.fel-post-card:hover { box-shadow: var(--fel-shadow-hover); transform: translateY(-3px); border-color: var(--fel-lavender); }

.fel-post-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.fel-post-card__body { padding: 1.8rem; }
.fel-post-card__title { font-size: 1.4rem; margin: 0 0 0.8rem; }
.fel-post-card__title a { color: var(--fel-purple-dark); text-decoration: none; }
.fel-post-card__title a:hover { color: var(--fel-purple); }
.fel-post-card__body p { font-size: 0.9rem; color: var(--fel-text-light); margin-bottom: 1.2rem; }

/* Error page */
.fel-error {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 6rem 0;
}

.fel-error h1 {
  font-size: 7rem;
  color: var(--fel-lavender);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* Ghost pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  font-family: var(--fel-font-sans);
  font-size: 0.9rem;
}

/* ── DARK MODE ADJUSTMENTS ─────────────────────────────────────── */
body.dark-mode .fel-section--tinted,
body.dark-mode .fel-newsletter,
body.dark-mode .fel-footer,
body.dark-mode .fel-info-box {
  background: var(--fel-lavender-pale);
}

body.dark-mode .fel-pricing-card { border-color: var(--fel-lavender-light); }
body.dark-mode .fel-need-card    { border-color: var(--fel-lavender-light); }
body.dark-mode .fel-post-card    { border-color: var(--fel-lavender-light); }

/* Pricing: ensure copy never ends up "dark on dark" due to injected/inline styles */
body.dark-mode .fel-pricing-card,
body.dark-mode .fel-pricing-card h3 {
  color: var(--fel-text);
}
/* Ghost Design settings can inject a light --fel-card even in dark mode.
   Force the Tarifs cards to stay dark regardless of injected tokens. */
body.dark-mode .fel-pricing-card {
  background: color-mix(in srgb, var(--fel-white) 92%, black);
}

/* Same issue on home "needs" cards */
body.dark-mode .fel-need-card {
  background: color-mix(in srgb, var(--fel-white) 92%, black);
}
body.dark-mode .fel-pricing-card ul,
body.dark-mode .fel-pricing-card li,
body.dark-mode .fel-pricing-card li span {
  color: var(--fel-text);
}
body.dark-mode .fel-price-sep,
body.dark-mode .fel-duration {
  color: var(--fel-text-light);
}

body.dark-mode .fel-contact-info-item { background: var(--fel-lavender-pale); border-color: var(--fel-lavender-light); }

body.dark-mode .fel-form input,
body.dark-mode .fel-form textarea,
body.dark-mode .fel-form select {
  background: var(--fel-lavender-pale);
  border-color: var(--fel-lavender);
  color: var(--fel-text);
}

body.dark-mode .fel-newsletter-form input[type="email"] {
  background: var(--fel-lavender-pale);
  color: var(--fel-text);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fel-hero__body  { padding: 5rem 0 4rem; }
  .fel-section     { padding: 1rem 0; }
  .gh-content      { padding: 0 1rem; }
  .fel-page-header { padding: 6rem 0 3rem; }
  .fel-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 2rem auto; }
  .fel-hero__layout {
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 0 3rem;
  }
  .fel-hero__image { width: min(260px, 70%); }
}

/* ================================================================
   LEXICAL / KOENIG CARD LAYOUTS
   Styles Ghost's rendered Lexical cards inside .layout-* wrappers
   so editable pages keep the original Lovable aesthetic.
   ================================================================ */

.layout-landing,
.layout-pricing,
.layout-services,
.layout-about,
.layout-contact {
  display: block;
}

.layout-landing .gh-content,
.layout-pricing .gh-content,
.layout-services .gh-content,
.layout-about .gh-content,
.layout-contact .gh-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Full-bleed Lexical layouts: backgrounds edge-to-edge */
:is(.layout-services, .layout-about, .layout-pricing) .gh-content {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Landing (home-style) pages contain their own section containers.
   Let them use full width like the Lovable reference. */
.layout-landing .gh-content {
  max-width: none;
  padding: 0;
}

/* About + pricing pages: keep inner content centered/readable */
.layout-about .gh-content .fel-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.layout-pricing .gh-content .fel-container {
  max-width: 80rem; /* room for pricing grid */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Lexical HTML blocks often contain .fel-container wrappers.
   Avoid "double side padding" (gh-content padding + container padding). */
.layout-services .gh-content .fel-container:not(.fel-container--narrow):not(.fel-container--text),
.layout-contact .gh-content .fel-container {
  padding-left: 0;
  padding-right: 0;
}

/* Landing: gh-content has no padding, so containers carry the gutter. */
.layout-landing .gh-content .fel-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Services pages: keep text narrow while sections stay full-bleed */
.layout-services .gh-content .fel-container--narrow {
  max-width: 48rem; /* readable line length */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Landing: readable narrow blocks (centered) */
.layout-landing .gh-content .fel-container--narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Headings inside Lexical content ──────────────────────────── */
.layout-landing .gh-content h2,
.layout-pricing .gh-content h2,
.layout-services .gh-content h2,
.layout-about .gh-content h2,
.layout-contact .gh-content h2 {
  font-family: var(--fel-font-serif);
  color: var(--fel-text);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 2.5rem 0 1rem;
}
.layout-landing .gh-content h3,
.layout-pricing .gh-content h3,
.layout-services .gh-content h3,
.layout-about .gh-content h3,
.layout-contact .gh-content h3 {
  font-family: var(--fel-font-serif);
  color: var(--fel-text);
  font-size: 1.2rem;
  margin: 1.8rem 0 .6rem;
}
.layout-landing .gh-content p,
.layout-pricing .gh-content p,
.layout-services .gh-content p,
.layout-about .gh-content p,
.layout-contact .gh-content p {
  font-size: .95rem;
  line-height: 1.8;
  margin: 0 0 1.1rem;
}

/* ── Blockquotes ──────────────────────────────────────────────── */
.layout-landing .gh-content blockquote,
.layout-about .gh-content blockquote {
  border-left: 3px solid var(--fel-purple);
  background: var(--fel-lavender-pale);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--fel-radius) var(--fel-radius) 0;
  font-style: italic;
  color: var(--fel-text);
}
.layout-landing .gh-content blockquote cite,
.layout-about .gh-content blockquote cite {
  display: block;
  margin-top: .6rem;
  font-style: normal;
  font-size: .8rem;
  color: var(--fel-text-light);
}

/* After Lexical blockquote rules: higher specificity so the quote row stays borderless / no tinted box */
.layout-landing .gh-content .fel-quotes-grid blockquote,
.layout-about .gh-content .fel-quotes-grid blockquote {
  background: transparent;
  border: none;
  border-left: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-style: normal;
  color: inherit;
}

.layout-landing .gh-content .fel-quotes-grid blockquote cite,
.layout-about .gh-content .fel-quotes-grid blockquote cite {
  display: block;
  margin-top: 0;
  font-style: normal;
  font-size: clamp(0.62rem, 0.52rem + 0.45vw, 0.75rem);
  color: var(--fel-purple);
}

/* ── Koenig callout cards ─────────────────────────────────────── */
.layout-landing .kg-callout-card,
.layout-pricing .kg-callout-card,
.layout-services .kg-callout-card,
.layout-about .kg-callout-card,
.layout-contact .kg-callout-card {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--fel-lavender-pale);
  border: 1px solid var(--fel-border);
  border-left: 4px solid var(--fel-purple);
  border-radius: var(--fel-radius);
  box-shadow: var(--fel-shadow);
}
.kg-callout-emoji { font-size: 1.3rem; line-height: 1; }
.kg-callout-text  { flex: 1; color: var(--fel-text); font-size: .92rem; }

/* ── Koenig image cards ───────────────────────────────────────── */
.layout-landing .kg-image-card,
.layout-pricing .kg-image-card,
.layout-services .kg-image-card,
.layout-about .kg-image-card,
.layout-contact .kg-image-card {
  margin: 2rem 0;
  border-radius: var(--fel-radius);
  overflow: hidden;
  box-shadow: var(--fel-shadow);
}
.kg-image-card img { width: 100%; height: auto; display: block; }
.kg-image-card figcaption {
  padding: .8rem 1rem;
  background: var(--fel-card);
  font-size: .8rem;
  color: var(--fel-text-light);
  text-align: center;
  font-family: var(--fel-font-script);
}

/* ── Koenig toggle cards (used on services page) ──────────────── */
.layout-services .kg-toggle-card,
.layout-about    .kg-toggle-card {
  background: var(--fel-card);
  border: 1px solid var(--fel-border);
  border-radius: var(--fel-radius);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  box-shadow: var(--fel-shadow);
  transition: var(--fel-transition);
}
.layout-services .kg-toggle-card:hover,
.layout-about    .kg-toggle-card:hover { box-shadow: var(--fel-shadow-hover); }
.kg-toggle-heading-text {
  font-family: var(--fel-font-serif);
  color: var(--fel-purple);
  font-weight: 600;
}
.kg-toggle-content p { margin-top: .6rem; }

/* ── Koenig product cards (used on pricing page) ──────────────── */
.layout-pricing .kg-product-card {
  margin: 1.5rem 0;
}
.layout-pricing .kg-product-card-container {
  background: var(--fel-card);
  border: 1px solid var(--fel-border);
  border-radius: var(--fel-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--fel-shadow);
  text-align: center;
  transition: var(--fel-transition);
}
.layout-pricing .kg-product-card-container:hover {
  box-shadow: var(--fel-shadow-hover);
  transform: translateY(-2px);
}
.layout-pricing .kg-product-card-title {
  font-family: var(--fel-font-serif);
  color: var(--fel-text);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.layout-pricing .kg-product-card-description { color: var(--fel-text-light); font-size: .9rem; }
.layout-pricing .kg-product-card-button,
.layout-pricing .kg-product-card-button:link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  padding: .75rem 1.5rem;
  background: var(--fel-purple);
  color: var(--fel-button-text);
  border-radius: var(--fel-radius);
  font-weight: 500;
  text-decoration: none;
  transition: var(--fel-transition);
}
.layout-pricing .kg-product-card-button:hover { background: var(--fel-purple-dark); box-shadow: var(--fel-shadow-hover); }

/* Pricing grid when content contains multiple product cards.
   Keep normal block flow for HTML-card based layouts (like our seeded tarifs page). */
@supports selector(:has(*)) {
  .layout-pricing .gh-content:has(> .kg-product-card) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin-inline: auto;
  }
}

/* ── Koenig button cards ──────────────────────────────────────── */
.kg-button-card { margin: 2rem 0; text-align: center; }
.kg-button-card .kg-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  background: var(--fel-purple);
  color: var(--fel-button-text);
  border-radius: var(--fel-radius);
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--fel-shadow);
  transition: var(--fel-transition);
}
.kg-button-card .kg-btn:hover { background: var(--fel-purple-dark); box-shadow: var(--fel-shadow-hover); }

/* ── Koenig bookmark cards ────────────────────────────────────── */
.kg-bookmark-card .kg-bookmark-container {
  display: flex;
  background: var(--fel-card);
  border: 1px solid var(--fel-border);
  border-radius: var(--fel-radius);
  overflow: hidden;
  box-shadow: var(--fel-shadow);
  text-decoration: none;
  color: var(--fel-text);
  margin: 1.5rem 0;
}
.kg-bookmark-card .kg-bookmark-title { font-weight: 600; color: var(--fel-purple); }

/* ── Koenig header card (hero-ish) ────────────────────────────── */
.layout-landing .kg-header-card {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--fel-lavender-pale), var(--fel-accent));
  border-radius: var(--fel-radius);
  margin: 0 0 2rem;
  text-align: center;
}

/* ── Lists inside Lexical ─────────────────────────────────────── */
.layout-landing .gh-content ul,
.layout-pricing .gh-content ul,
.layout-services .gh-content ul,
.layout-about .gh-content ul,
.layout-contact .gh-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1.2rem;
}
.layout-landing .gh-content ul li,
.layout-pricing .gh-content ul li,
.layout-services .gh-content ul li,
.layout-about .gh-content ul li,
.layout-contact .gh-content ul li {
  margin: .35rem 0;
  color: var(--fel-text);
  font-size: .92rem;
}

/* ── Theme Design images inside Lexical (no Handlebars in HTML cards) ── */
.fel-theme-portrait-slot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  background-color: var(--fel-accent);
  background-image: var(--fel-seed-portrait-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fel-theme-horse-slot {
  display: block;
  width: 100%;
  min-height: 18rem;
  border-radius: var(--fel-radius);
  background-image: var(--fel-seed-horse-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero image column inside Lexical (accueil) — follows @custom.hero_image via default.hbs */
.fel-theme-hero-image-slot {
  box-shadow: 0 20px 45px -20px rgba(91, 33, 182, 0.35);
}
