:root {
  --bg: #ffffff;
  --bg-soft: #fff7c7;
  --text: #171717;
  --muted: #5f6062;
  --light: #fff8d7;
  --white: #ffffff;
  --primary: #ffd400;
  --primary-dark: #ffc400;
  --primary-soft: #fffdf1;
  --primary-ink: #171717;
  --link: #8a6500;
  --border: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 60px rgba(23, 23, 23, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section-pad {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 212, 0, 0.46);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

.simple-header {
  position: relative;
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-zone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 850;
}

.brand-logo-kmv,
.brand img.brand-logo-kmv {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  aspect-ratio: 1 / 1;
  flex: 0 0 56px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: var(--link);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fekm-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 212, 0, 0.44);
  border-radius: 999px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
}

.fekm-header-logo span {
  color: var(--link);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fekm-header-logo img {
  width: 150px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text);
}

.nav-links a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(23, 23, 23, 0.78);
  font-weight: 750;
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--light);
}

.nav-links .nav-cta {
  color: var(--primary-ink);
  background: var(--primary);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--primary-ink);
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--text);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 212, 0, 0.62), transparent 34%),
    radial-gradient(circle at 6% 74%, rgba(255, 242, 168, 0.9), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffdf1 46%, #fff3a3 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(138, 101, 0, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(155deg, transparent 0 56%, rgba(255, 212, 0, 0.28) 56% 68%, transparent 68% 100%);
  background-size: 46px 46px, auto;
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--link);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow,
.section-dark .eyebrow,
.affiliation-section .eyebrow {
  color: var(--link);
}

.cta-band .eyebrow {
  color: rgba(21, 18, 10, 0.82);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.cta-content,
.button-row,
.federation-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--primary-ink);
  background: var(--primary);
  box-shadow: 0 12px 34px rgba(255, 212, 0, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--primary-ink);
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(255, 212, 0, 0.75);
}

.btn-light {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(255, 212, 0, 0.75);
}

.section-dark .btn-secondary,
.affiliation-section .btn-secondary {
  color: var(--text);
  background: var(--white);
  border-color: rgba(255, 212, 0, 0.75);
}

.section-dark .btn-secondary:hover,
.affiliation-section .btn-secondary:hover,
.section-dark .btn-secondary:focus-visible,
.affiliation-section .btn-secondary:focus-visible {
  background: var(--light);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(23, 23, 23, 0.72);
  border: 1px solid rgba(255, 212, 0, 0.58);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-card,
.map-card,
.info-panel,
.profile-card {
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 212, 0, 0.65);
  backdrop-filter: blur(18px);
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}

.hero-logo-image {
  --kmv-logo-size: min(280px, 76vw);
  width: var(--kmv-logo-size);
  height: var(--kmv-logo-size);
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  border: 7px solid var(--white);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.16), 0 0 0 3px rgba(255, 212, 0, 0.54);
}

.hero-card-top {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-top strong {
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.badge {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #2a1b00;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset 0 0 0 5px rgba(21, 18, 10, 0.18);
}

.mini-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mini-link {
  color: var(--link);
  font-weight: 900;
}

.dark-link {
  color: var(--link);
}

.stats-strip {
  color: var(--primary-ink);
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 28px 20px;
  border-right: 1px solid rgba(21, 18, 10, 0.16);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stats-grid span {
  color: rgba(21, 18, 10, 0.72);
  font-weight: 750;
  font-size: 0.92rem;
}

.affiliation-section {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 212, 0, 0.42), transparent 30%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.affiliation-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(255, 212, 0, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.affiliation-visual {
  display: grid;
  grid-template-columns: 0.9fr auto 1.1fr;
  align-items: center;
  gap: 18px;
}

.affiliation-kmv {
  --kmv-logo-size: min(230px, 70vw);
  width: var(--kmv-logo-size);
  height: var(--kmv-logo-size);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 999px;
  border: 5px solid var(--primary);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.affiliation-plus {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-ink);
  background: var(--primary);
  font-size: 1.7rem;
  font-weight: 900;
}

.affiliation-fekm-link {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 212, 0, 0.34);
  background: #000;
}

.affiliation-fekm {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

.affiliation-copy p {
  color: var(--muted);
}

.federation-note {
  display: inline-grid;
  gap: 4px;
  padding: 13px 16px;
  margin: 6px 0 24px;
  border-radius: 16px;
  color: var(--text);
  background: var(--light);
  border: 1px solid rgba(255, 212, 0, 0.58);
}

.federation-note strong {
  color: var(--link);
  font-size: 1.12rem;
}

.two-col,
.split-layout,
.faq-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.section-intro p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.value-card,
.program-card,
.price-card,
.schedule-card,
.contact-form,
details,
.news-card,
.info-panel,
.map-card,
.profile-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(12, 15, 21, 0.07);
}

.value-card {
  padding: 24px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--link);
  font-weight: 900;
}

.value-card p,
.program-card p,
.price-card p,
details p,
.news-card p,
.info-panel p,
.map-card p,
.profile-card p {
  color: var(--muted);
}

.profile-card {
  margin-top: 28px;
  background: var(--light);
  box-shadow: none;
}

.profile-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--link);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.profile-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
}



.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 212, 0, 0.42), transparent 30%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-dark .section-heading p {
  color: var(--muted);
}

.cards-three,
.pricing-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  padding: 28px;
  color: var(--text);
  background: var(--white);
  border-color: rgba(255, 212, 0, 0.72);
}

.program-card p,
.program-card li {
  color: var(--muted);
}

.program-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary-ink);
  background: var(--primary);
  font-weight: 900;
}

.schedule-card {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text);
  background: var(--primary);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.muted {
  background: var(--light);
}

.info-panel {
  background: var(--white);
}

.plain-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.map-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 30% 30%, rgba(255, 212, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #f7f7f9, #eceff4);
}

.map-card h3 {
  margin-top: 18px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.news-card {
  padding: 26px;
}

.news-card time {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--link);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.seo-local {
  background: linear-gradient(135deg, #ffffff 0%, #fff9df 100%);
}

.seo-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 212, 0, 0.44);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.seo-card h2 {
  margin-top: 0;
}

.seo-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.seo-card strong {
  color: var(--text);
}

.seo-keywords-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-keywords-list li {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--primary-ink);
  background: var(--primary);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(255, 212, 0, 0.22);
}

.pricing-layout .section-heading {
  max-width: 900px;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--white));
  border-color: rgba(255, 212, 0, 0.9);
  transform: translateY(-12px);
}

.price-card.featured p {
  color: rgba(23, 23, 23, 0.72);
}

.price-card.featured .price-label {
  color: var(--link);
}

.price-label {
  margin-bottom: 12px;
  color: var(--link);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  letter-spacing: -0.06em;
}

.price-card h3 span {
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--muted);
}

.price-card.featured h3 span {
  color: var(--muted);
}

.price-card .btn {
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--link);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 12px 0 0;
}

.cta-band {
  padding: 54px 0;
  color: var(--primary-ink);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.98), rgba(255, 244, 166, 0.98)),
    var(--primary);
}

.cta-content {
  justify-content: space-between;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-content p {
  margin: 6px 0 0;
  color: rgba(21, 18, 10, 0.76);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-info {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  color: var(--link);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--light);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 212, 0, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 50px 0;
  color: rgba(23, 23, 23, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 54%, var(--primary) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo-kmv {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  flex-basis: 46px;
}

.footer-fekm-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 212, 0, 0.28);
  background: #000;
}

.footer-fekm-logo img {
  width: min(230px, 62vw);
  height: auto;
  object-fit: contain;
}

.site-footer h3 {
  color: var(--text);
  font-size: 1rem;
}

.site-footer a:not(.brand):not(.footer-fekm-logo) {
  display: block;
  width: max-content;
  margin: 8px 0;
  color: rgba(23, 23, 23, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.legal-page {
  min-height: 70vh;
}

.legal-page h1 {
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-page a:not(.btn) {
  color: var(--link);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
  .fekm-header-logo span {
    display: none;
  }

  .fekm-header-logo img {
    width: 128px;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 212, 0, 0.52);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .fekm-header-logo {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-grid,
  .two-col,
  .split-layout,
  .faq-layout,
  .contact-grid,
  .footer-grid,
  .affiliation-card,
  .seo-card {
    grid-template-columns: 1fr;
  }

  .cards-three,
  .pricing-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    overflow-x: auto;
  }

  table {
    min-width: 680px;
  }

  .cta-content {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .button-row,
  .btn {
    width: 100%;
  }

  .brand-logo-kmv,
  .brand img.brand-logo-kmv {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    flex-basis: 48px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-card,
  .contact-form,
  .price-card,
  .program-card,
  .value-card,
  .news-card,
  .info-panel,
  .map-card,
  .profile-card,
  .affiliation-card {
    padding: 22px;
  }

  .hero-logo-image {
    --kmv-logo-size: min(220px, 72vw);
  }

  .affiliation-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .affiliation-plus {
    transform: rotate(90deg);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(21, 18, 10, 0.16);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .footer-fekm-logo img {
    width: min(220px, 80vw);
  }
}

/* Identité jaune et blanc : garde les sections claires et lisibles. */
.hero-card-top strong,
.affiliation-copy h2,
.section-dark h2,
.section-dark h3,
.program-card h3,
.price-card.featured h3 {
  color: var(--text);
}

.section-dark .card-icon,
.card-icon {
  color: var(--text);
  background: var(--primary);
}

.price-card.featured h3 span {
  color: var(--muted);
}

/* === Identité visuelle jaune et blanc restaurée === */
:root {
  --bg: #ffffff;
  --bg-soft: #fff8d7;
  --text: #171717;
  --muted: #5f6062;
  --light: #fff8d7;
  --white: #ffffff;
  --primary: #ffd21a;
  --primary-dark: #ffc400;
  --primary-ink: #171717;
  --link: #9a6a00;
  --border: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 60px rgba(23, 23, 23, 0.13);
  --radius: 24px;
}

body {
  color: var(--text);
  background: var(--white);
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(255, 210, 26, 0.48);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

.brand,
.nav-links,
.site-footer .brand {
  color: var(--text);
}

.brand small {
  color: var(--link);
}

.brand-logo-kmv,
.brand img.brand-logo-kmv,
.hero-logo-image,
.affiliation-kmv {
  border-color: var(--primary);
  background: var(--white);
}

.brand-logo-kmv,
.brand img.brand-logo-kmv {
  box-shadow: 0 6px 18px rgba(23, 23, 23, 0.12);
}

.nav-links a {
  color: rgba(23, 23, 23, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--light);
}

.nav-links .nav-cta {
  color: var(--text);
  background: var(--primary);
}

.menu-toggle {
  background: var(--primary);
}

.menu-toggle span:not(.sr-only) {
  background: var(--text);
}

.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 210, 26, 0.62), transparent 34%),
    radial-gradient(circle at 6% 74%, rgba(255, 242, 168, 0.90), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffdf1 46%, #fff3a3 100%);
}

.hero-bg {
  background:
    linear-gradient(115deg, rgba(154, 106, 0, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(155deg, transparent 0 56%, rgba(255, 210, 26, 0.28) 56% 68%, transparent 68% 100%);
  background-size: 46px 46px, auto;
  opacity: 0.72;
}

.eyebrow,
.hero .eyebrow,
.section-dark .eyebrow,
.affiliation-section .eyebrow,
.profile-kicker,
.price-label,
.news-card time,
.contact-info a,
.legal-page a:not(.btn),
.dark-link,
.mini-link {
  color: var(--link);
}

.hero-text,
.section-intro p,
.section-heading p,
.affiliation-copy p,
.value-card p,
.program-card p,
.program-card li,
.price-card p,
details p,
.news-card p,
.info-panel p,
.map-card p,
.profile-card p,
.seo-card p,
.form-note,
.plain-list {
  color: var(--muted);
}

.btn-primary {
  color: var(--text);
  background: var(--primary);
  box-shadow: 0 12px 34px rgba(255, 210, 26, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--text);
  background: var(--primary-dark);
}

.btn-secondary,
.btn-light {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(255, 210, 26, 0.76);
}

.trust-row span {
  color: rgba(23, 23, 23, 0.72);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 210, 26, 0.58);
}

.hero-card,
.affiliation-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 210, 26, 0.65);
  backdrop-filter: blur(18px);
}

.hero-logo-image {
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.16), 0 0 0 8px rgba(255, 255, 255, 0.72);
}

.badge {
  color: #2a1b00;
  background: var(--primary);
}

.check-list {
  color: var(--muted);
}

.check-list strong {
  color: var(--text);
}

.check-list li::before {
  background: var(--primary);
  box-shadow: inset 0 0 0 5px rgba(23, 23, 23, 0.12);
}

.stats-strip {
  color: var(--text);
  background: var(--primary);
}

.stats-grid div {
  border-right: 1px solid rgba(23, 23, 23, 0.16);
}

.stats-grid span {
  color: rgba(23, 23, 23, 0.72);
}

.affiliation-section,
.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 210, 26, 0.42), transparent 30%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-dark .section-heading p {
  color: var(--muted);
}

.affiliation-plus,
.card-icon,
.seo-keywords-list li {
  color: var(--text);
  background: var(--primary);
}

.affiliation-fekm-link,
.footer-fekm-logo {
  background: #050505;
  border: 1px solid rgba(255, 210, 26, 0.72);
}

.federation-note {
  color: var(--text);
  background: var(--light);
  border: 1px solid rgba(255, 210, 26, 0.72);
}

.federation-note strong {
  color: var(--link);
}

.value-card,
.program-card,
.price-card,
.schedule-card,
.contact-form,
details,
.news-card,
.info-panel,
.map-card,
.profile-card,
.seo-card {
  color: var(--text);
  background: var(--white);
  border-color: rgba(255, 210, 26, 0.50);
}

.value-card span {
  color: var(--link);
}

.profile-card,
.muted {
  background: var(--light);
}

.program-card {
  border-color: rgba(255, 210, 26, 0.72);
}

th {
  color: var(--text);
  background: var(--primary);
}

td {
  background: var(--white);
}

tr:nth-child(even) td {
  background: #fffdf1;
}

.map-card {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 215, 0.82)),
    radial-gradient(circle at 30% 30%, rgba(255, 210, 26, 0.50), transparent 30%),
    linear-gradient(135deg, #ffffff, #fff2a8);
}

.seo-local {
  background: linear-gradient(135deg, #ffffff 0%, #fff8d7 100%);
}

.seo-card {
  border: 1px solid rgba(255, 210, 26, 0.58);
}

.seo-card strong {
  color: var(--text);
}

.seo-keywords-list li {
  box-shadow: 0 10px 24px rgba(255, 210, 26, 0.22);
}

.price-card.featured {
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--white));
  border-color: rgba(255, 210, 26, 0.90);
}

.price-card.featured p,
.price-card.featured h3 span,
.price-card h3 span {
  color: var(--muted);
}

.price-card.featured .price-label {
  color: var(--link);
}

summary::after {
  color: var(--link);
}

.cta-band {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 210, 26, 0.98), rgba(255, 255, 255, 0.96)),
    var(--primary);
}

.cta-content p,
.cta-band .eyebrow {
  color: rgba(23, 23, 23, 0.76);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--text);
  background: #fffdf1;
  border: 1px solid rgba(23, 23, 23, 0.12);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 210, 26, 0.90);
  box-shadow: 0 0 0 4px rgba(255, 210, 26, 0.18);
}

.site-footer {
  color: rgba(23, 23, 23, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 54%, var(--primary) 100%);
}

.site-footer h3 {
  color: var(--text);
}

.site-footer a:not(.brand):not(.footer-fekm-logo),
.site-footer a:not(.brand) {
  color: rgba(23, 23, 23, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.legal-page h1 {
  color: var(--text);
}

@media (max-width: 980px) {
  .nav-links {
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 210, 26, 0.52);
  }
}

@media (max-width: 560px) {
  .stats-grid div {
    border-bottom: 1px solid rgba(23, 23, 23, 0.16);
  }
}

/* Identite visuelle blanc et jaune restauree */
:root {
  --bg: #ffffff;
  --bg-soft: #fff8d7;
  --text: #171717;
  --muted: #5f6062;
  --light: #fff8d7;
  --white: #ffffff;
  --primary: #ffd21a;
  --primary-dark: #ffc400;
  --primary-ink: #171717;
  --link: #9a6a00;
  --border: rgba(23, 23, 23, 0.12);
  --shadow: 0 20px 60px rgba(23, 23, 23, 0.13);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(255, 210, 26, 0.46);
  box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

.brand,
.nav-links {
  color: var(--text);
}

.brand small {
  color: var(--link);
}

.nav-links a {
  color: rgba(23, 23, 23, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--light);
}

.nav-links .nav-cta {
  color: var(--text);
  background: var(--primary);
}

.menu-toggle {
  background: var(--primary);
}

.menu-toggle span:not(.sr-only) {
  background: var(--text);
}

.fekm-header-logo {
  color: var(--text);
  background: var(--white);
  border-color: rgba(255, 210, 26, 0.72);
}

.fekm-header-logo span {
  color: var(--link);
}

.hero {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 210, 26, 0.62), transparent 34%),
    radial-gradient(circle at 6% 74%, rgba(255, 242, 168, 0.9), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fffdf1 46%, #fff3a3 100%);
}

.hero-bg {
  background:
    linear-gradient(115deg, rgba(154, 106, 0, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(155deg, transparent 0 56%, rgba(255, 210, 26, 0.28) 56% 68%, transparent 68% 100%);
  background-size: 46px 46px, auto;
  opacity: 0.72;
}

.hero .eyebrow,
.section-dark .eyebrow,
.affiliation-section .eyebrow {
  color: var(--link);
}

.hero-text,
.check-list,
.affiliation-copy p,
.section-dark .section-heading p,
.program-card p,
.program-card li,
.price-card.featured p,
.site-footer,
.site-footer a:not(.brand):not(.footer-fekm-logo) {
  color: var(--muted);
}

.btn-secondary,
.btn-light {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(255, 210, 26, 0.75);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-light:hover,
.btn-light:focus-visible {
  background: var(--light);
}

.trust-row span {
  color: rgba(23, 23, 23, 0.72);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 210, 26, 0.58);
}

.hero-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 210, 26, 0.65);
}

.hero-logo-image,
.affiliation-kmv,
.brand-logo-kmv,
.brand img.brand-logo-kmv {
  border-color: var(--primary);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.16);
}

.hero-logo-image {
  border-width: 7px;
  border-color: var(--white);
}

.badge {
  color: #2a1b00;
  background: var(--primary);
}

.check-list li::before {
  background: var(--primary);
  box-shadow: inset 0 0 0 5px rgba(23, 23, 23, 0.12);
}

.mini-link,
.dark-link,
.contact-info a,
.legal-page a:not(.btn) {
  color: var(--link);
}

.affiliation-section {
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 210, 26, 0.42), transparent 30%),
    linear-gradient(180deg, #fff8d7 0%, #ffffff 100%);
}

.affiliation-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 210, 26, 0.72);
}

.affiliation-plus {
  color: var(--text);
  background: var(--primary);
}

.affiliation-fekm-link,
.footer-fekm-logo {
  background: #000000;
  border-color: rgba(255, 210, 26, 0.72);
}

.federation-note {
  color: var(--text);
  background: var(--light);
  border-color: rgba(255, 210, 26, 0.72);
}

.federation-note strong {
  color: var(--link);
}

.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 210, 26, 0.42), transparent 30%),
    linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.program-card {
  color: var(--text);
  background: var(--white);
  border-color: rgba(255, 210, 26, 0.72);
}

.card-icon,
th {
  color: var(--text);
  background: var(--primary);
}

.muted,
.profile-card {
  background: var(--light);
}

.map-card {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 215, 0.82)),
    radial-gradient(circle at 30% 30%, rgba(255, 210, 26, 0.5), transparent 30%),
    linear-gradient(135deg, #ffffff, #fff2a8);
}

.seo-local {
  background: linear-gradient(135deg, #ffffff 0%, #fff8d7 100%);
}

.price-card.featured {
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--white));
  border-color: rgba(255, 210, 26, 0.9);
}

.price-card.featured .price-label {
  color: var(--link);
}

.price-card h3 span,
.price-card.featured h3 span {
  color: var(--muted);
}

.cta-band {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 210, 26, 0.98), rgba(255, 255, 255, 0.96)),
    var(--primary);
}

.cta-band .eyebrow {
  color: var(--link);
}

.cta-band .btn-primary {
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.12);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.12);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fffdf1;
}

.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 54%, var(--primary) 100%);
}

.site-footer h3,
.site-footer .brand,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@media (max-width: 980px) {
  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 210, 26, 0.52);
  }
}
