/* ==========================================================================
   Choix Expert — French Cartographic Ledger Stylesheet
   Style: French Cartographic Ledger — warm parchment, graphite, muted colours
   ========================================================================== */

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

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

body {
  font-family: Georgia, "Times New Roman", Times, "Noto Serif", serif;
  color: #202522;
  background-color: #F1EBDD;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #8B3345;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

a:hover,
a:focus-visible {
  color: #B77552;
}

a:focus-visible {
  outline: 2px solid #8B3345;
  outline-offset: 2px;
}

ul {
  list-style: none !important;
}

/* Mobile menu — improved transitions */
.ce-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 235, 221, 0.98);
  z-index: 200;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ce-mobile-menu[hidden] {
  display: none;  /* fallback when hidden attr is present */
}

.ce-mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.ce-mobile-menu--closing {
  opacity: 0;
  visibility: hidden;
}

/* --------------------------------------------------------------------------
   1. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: Georgia, "Times New Roman", Times, "Noto Serif", serif;
  font-weight: 400;
  color: #202522;
  line-height: 1.3;
}

.ce-heading-serif {
  font-family: Georgia, "Times New Roman", Times, "Noto Serif", serif;
  font-weight: 400;
}

.ce-heading-sans {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #59605B;
}

.ce-section-number {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8B3345;
  display: block;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   2. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.ce-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ce-page {
  padding: 2rem 0 3rem;
}

.ce-page--home {
  padding-top: 0;
}

.ce-section {
  padding: 3rem 0;
}

.ce-section--divider {
  border-top: 1px solid rgba(32, 37, 34, 0.18);
}

/* --------------------------------------------------------------------------
   3. TOP RESPONSIBLE NOTICE
   -------------------------------------------------------------------------- */
.ce-top-notice {
  background: #202522;
  color: #FAF7EF;
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
}

.ce-top-notice__text {
  display: inline;
}

.ce-top-notice__marker {
  font-weight: 600;
}

.ce-top-notice__sep {
  margin: 0 0.3rem;
  opacity: 0.6;
}

.ce-top-notice__link {
  color: #E5DDCD;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.ce-top-notice__link:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */
.ce-header {
  background: #F1EBDD;
  border-bottom: 1px solid rgba(32, 37, 34, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ce-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  position: relative;
}

.ce-header__nav {
  flex: 1;
}

.ce-header__nav--left {
  text-align: left;
}

.ce-header__nav--right {
  text-align: right;
}

.ce-header__nav-list {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.ce-header__nav-list--right {
  justify-content: flex-end;
}

.ce-header__nav-list li {
  list-style: none;
}

.ce-header__link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #59605B;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ce-header__link:hover,
.ce-header__link:focus-visible {
  color: #202522;
  border-bottom-color: #8B3345;
}

.ce-header__link--active {
  color: #202522;
  border-bottom-color: #8B3345;
}

.ce-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  margin: 0 1rem;
  text-decoration: none;
}

.ce-header__logo-svg {
  width: 58px;
  height: auto;
}

.ce-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.ce-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #202522;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.ce-mobile-menu__inner {
  max-width: 360px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
}

.ce-mobile-menu__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #202522;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.ce-mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}

.ce-mobile-menu__link {
  display: block;
  padding: 0.85rem 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #202522;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 37, 34, 0.1);
}

.ce-mobile-menu__link:hover {
  background: rgba(139, 51, 69, 0.06);
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.ce-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  padding: 0.65rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.ce-btn--primary {
  background: #8B3345;
  color: #FAF7EF;
  border-color: #8B3345;
}

.ce-btn--primary:hover,
.ce-btn--primary:focus-visible {
  background: #7a2d3b;
  border-color: #7a2d3b;
  color: #FAF7EF;
}

.ce-btn--outline {
  background: transparent;
  color: #202522;
  border-color: rgba(32, 37, 34, 0.34);
}

.ce-btn--outline:hover,
.ce-btn--outline:focus-visible {
  background: rgba(32, 37, 34, 0.05);
  border-color: #202522;
}

.ce-btn--sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.ce-hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.ce-hero__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.ce-hero__content {
  max-width: 680px;
}

.ce-hero__h1 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.ce-hero__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #59605B;
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.ce-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero map-key panel */
.ce-hero__map-key {
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.18);
  padding: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ce-hero__map-key-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B3345;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(32, 37, 34, 0.12);
}

.ce-hero__map-key-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ce-hero__map-key-item {
  font-size: 0.82rem;
  color: #59605B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ce-hero__map-key-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ce-hero__map-key-dot--burgundy { background: #8B3345; }
.ce-hero__map-key-dot--sage { background: #7A8B72; }
.ce-hero__map-key-dot--clay { background: #B77552; }
.ce-hero__map-key-dot--graphite { background: #59605B; }

/* Coordinate divider */
.ce-hero__divider {
  border: none;
  border-top: 1px solid rgba(32, 37, 34, 0.18);
  margin: 0;
  position: relative;
}

.ce-hero__divider::before {
  content: "— 48°51′N 2°20′E —";
  position: absolute;
  top: -0.6rem;
  left: 1.5rem;
  background: #F1EBDD;
  padding: 0 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #59605B;
}

/* --------------------------------------------------------------------------
   7. PLATFORM CARDS
   -------------------------------------------------------------------------- */
.ce-section__title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.ce-section__intro {
  font-size: 0.95rem;
  color: #59605B;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ce-card {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 0;
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.12);
  margin-bottom: 1.5rem;
}

.ce-card__image-panel {
  background: #E5DDCD;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 200px;
}

.ce-card__image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}

.ce-card__text-panel {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.ce-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ce-card__badge {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A8B72;
  margin-bottom: 0.75rem;
  padding: 0.15rem 0;
  border-bottom: 1px solid rgba(122, 139, 114, 0.3);
}

.ce-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #202522;
  margin-bottom: 1rem;
  flex: 1;
}

.ce-card__meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  color: #59605B;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(32, 37, 34, 0.08);
  border-bottom: 1px solid rgba(32, 37, 34, 0.08);
}

.ce-card__criteria {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.ce-card__criterion {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: #59605B;
  background: rgba(89, 96, 91, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

.ce-card__note {
  font-size: 0.83rem;
  color: #59605B;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 0.6rem;
  background: rgba(122, 139, 114, 0.08);
  border-left: 2px solid #7A8B72;
}

.ce-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. EDITORIAL PRINCIPLES
   -------------------------------------------------------------------------- */
.ce-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ce-principle {
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.1);
  padding: 1.5rem;
}

.ce-principle__number {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8B3345;
  margin-bottom: 0.5rem;
}

.ce-principle__title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.ce-principle__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #59605B;
}

/* --------------------------------------------------------------------------
   9. THREE-STEP EXPLANATION
   -------------------------------------------------------------------------- */
.ce-steps {
  display: flex;
  gap: 2rem;
  position: relative;
  counter-reset: step;
}

.ce-step {
  flex: 1;
  padding-top: 1.5rem;
  position: relative;
  counter-increment: step;
}

.ce-step::before {
  content: counter(step);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #8B3345;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.ce-step__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ce-step__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #59605B;
}

/* Route line connector */
.ce-steps {
  background-image: linear-gradient(to right, rgba(139, 51, 69, 0.2) 0%, rgba(139, 51, 69, 0.2) 100%);
  background-repeat: no-repeat;
  background-position: 0 0.8rem;
  background-size: calc(100% - 4rem) 1px;
}

/* --------------------------------------------------------------------------
   10. OBSERVATION CRITERIA
   -------------------------------------------------------------------------- */
.ce-criteria-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-top: 1px solid rgba(32, 37, 34, 0.12);
}

.ce-criteria-rail {
  border-right: 1px solid rgba(32, 37, 34, 0.12);
  padding: 1.5rem 1rem 1.5rem 0;
}

.ce-criteria-rail__item {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #59605B;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(32, 37, 34, 0.06);
  cursor: default;
}

.ce-criteria-rail__item::before {
  content: "— ";
  color: #B77552;
}

.ce-criteria-content {
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.ce-criteria-content__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #202522;
}

/* --------------------------------------------------------------------------
   11. RESPONSIBLE USE SECTION
   -------------------------------------------------------------------------- */
.ce-responsible-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ce-responsible-item {
  padding: 1rem;
  background: rgba(122, 139, 114, 0.07);
  border-left: 2px solid #7A8B72;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #202522;
}

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.ce-faq-item {
  border-bottom: 1px solid rgba(32, 37, 34, 0.1);
}

.ce-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0.5rem 1rem 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.95rem;
  color: #202522;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ce-faq-question::after {
  content: "+";
  font-size: 1.2rem;
  color: #8B3345;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ce-faq-question[aria-expanded="true"]::after {
  content: "−";
}

.ce-faq-answer {
  padding: 0 0.5rem 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #59605B;
}

.ce-faq-answer[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.ce-footer {
  background: #202522;
  color: #E5DDCD;
  padding: 3rem 1.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
}

.ce-footer a {
  color: #E5DDCD;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ce-footer a:hover {
  color: #fff;
}

/* Layer 1 — 4 blocks */
.ce-footer__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto 2rem;
}

.ce-footer__block-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7A8B72;
  margin-bottom: 0.5rem;
}

.ce-footer__block-text {
  color: #c0b8a8;
  font-size: 0.8rem;
}

/* Layer 2 — Legal strip */
.ce-footer__legal-strip {
  max-width: 1160px;
  margin: 0 auto 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(229, 221, 205, 0.15);
  border-bottom: 1px solid rgba(229, 221, 205, 0.15);
}

.ce-footer__legal-text {
  font-size: 0.78rem;
  color: #c0b8a8;
}

/* Layer 3 — Nav columns */
.ce-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto 2rem;
}

.ce-footer__nav-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7A8B72;
  margin-bottom: 0.75rem;
}

.ce-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ce-footer__nav-list li {
  list-style: none;
}

.ce-footer__nav-list a {
  font-size: 0.8rem;
  color: #c0b8a8;
  text-decoration: none;
}

.ce-footer__nav-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Layer 4 — Resource images */
.ce-footer__resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(229, 221, 205, 0.1);
  border-bottom: 1px solid rgba(229, 221, 205, 0.1);
}

.ce-footer__resource-link,
.ce-footer__resource-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ce-footer__resource-link img,
.ce-footer__resource-img img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(0.3) brightness(1.1);
  transition: filter 0.2s;
}

.ce-footer__resource-link:hover img {
  filter: grayscale(0) brightness(1.2);
}

/* Layer 5 — Copyright */
.ce-footer__copyright {
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: #7A8B72;
}

/* --------------------------------------------------------------------------
   14. COOKIE BANNER
   -------------------------------------------------------------------------- */
.ce-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #202522;
  color: #E5DDCD;
  z-index: 300;
  padding: 1rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  display: none;
}

.ce-cookie-banner--visible {
  display: block;
}

.ce-cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ce-cookie-banner__text {
  flex: 1;
  min-width: 240px;
}

.ce-cookie-banner__text a {
  color: #E5DDCD;
}

.ce-cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. AGE GATE MODAL
   -------------------------------------------------------------------------- */
.ce-age-gate {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 480px;
  width: 90vw;
  /* Явное центрирование (сброс * { margin: 0 } ломает дефолтное центрирование браузера) */
  margin: auto;
  position: fixed;
  inset: 0;
}

.ce-age-gate::backdrop {
  background: rgba(32, 37, 34, 0.75);
}

.ce-age-gate__panel {
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.18);
  padding: 2rem;
}

.ce-age-gate__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.ce-age-gate__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #59605B;
  margin-bottom: 1.5rem;
}

.ce-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   16. INTERNAL PAGES
   -------------------------------------------------------------------------- */
.ce-page-header {
  margin-bottom: 2.5rem;
}

.ce-page-header__h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ce-page-header__lead {
  font-size: 1rem;
  color: #59605B;
  max-width: 650px;
  line-height: 1.55;
}

/* Breadcrumb */
.ce-breadcrumb {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: #7A8B72;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ce-breadcrumb a {
  color: #7A8B72;
  text-decoration: none;
}

.ce-breadcrumb a:hover {
  color: #8B3345;
  text-decoration: underline;
}

.ce-breadcrumb__sep {
  color: rgba(32, 37, 34, 0.25);
}

/* Profile page layout */
.ce-profile-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 2rem;
}

.ce-profile-rail {
  border-right: 1px solid rgba(32, 37, 34, 0.1);
  padding-right: 1rem;
}

.ce-profile-rail__item {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: #59605B;
  padding: 0.35rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 37, 34, 0.05);
}

.ce-profile-rail__item:hover {
  color: #8B3345;
}

.ce-profile-content {
  min-width: 0;
}

.ce-profile-image {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  background: #E5DDCD;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

.ce-profile-section {
  margin-bottom: 2rem;
}

.ce-profile-section__title {
  font-size: 1.1rem;
  color: #8B3345;
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(139, 51, 69, 0.15);
}

.ce-profile-section__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #202522;
  margin-bottom: 0.75rem;
}

.ce-profile-section__subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A8B72;
  margin-bottom: 0.5rem;
}

/* Checklist */
.ce-checklist {
  list-style: none;
  padding: 0;
}

.ce-checklist li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.88rem;
  color: #202522;
  border-bottom: 1px solid rgba(32, 37, 34, 0.05);
}

.ce-checklist li::before {
  content: "□";
  position: absolute;
  left: 0;
  color: #7A8B72;
  font-size: 0.9rem;
}

/* Regulatory panel */
.ce-regulatory-panel {
  background: rgba(122, 139, 114, 0.08);
  border: 1px solid rgba(122, 139, 114, 0.2);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.ce-regulatory-panel__title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7A8B72;
  margin-bottom: 0.5rem;
}

.ce-regulatory-panel__text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #202522;
}

/* Content page layout */
.ce-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ce-content-col p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Full-width text */
.ce-text p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 720px;
}

.ce-text ul {
  margin-bottom: 1rem;
  padding-left: 0;
}

.ce-text ul li {
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.55;
}

.ce-text ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #B77552;
}

/* Timeline */
.ce-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0;
}

.ce-timeline__item {
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 1px solid rgba(139, 51, 69, 0.25);
  position: relative;
}

.ce-timeline__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8B3345;
}

.ce-timeline__item-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8B3345;
}

.ce-timeline__item-text {
  font-size: 0.88rem;
  color: #59605B;
}

/* Contact form */
.ce-form {
  max-width: 560px;
}

.ce-form__group {
  margin-bottom: 1.25rem;
}

.ce-form__label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #59605B;
  margin-bottom: 0.3rem;
}

.ce-form__input,
.ce-form__select,
.ce-form__textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  color: #202522;
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.18);
  border-radius: 0;
}

.ce-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.ce-form__input:focus,
.ce-form__select:focus,
.ce-form__textarea:focus {
  outline: 2px solid #8B3345;
  outline-offset: -1px;
}

.ce-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ce-form__checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: #8B3345;
}

.ce-form__checkbox-group label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #59605B;
}

/* --------------------------------------------------------------------------
   17. THANK YOU
   -------------------------------------------------------------------------- */
.ce-thankyou {
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #FAF7EF;
  border: 1px solid rgba(32, 37, 34, 0.12);
}

.ce-thankyou__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   18. PAGE-SPECIFIC NAV
   -------------------------------------------------------------------------- */
.ce-subnav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(32, 37, 34, 0.1);
}

.ce-subnav__link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  color: #59605B;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
}

.ce-subnav__link:hover {
  color: #8B3345;
  border-color: rgba(139, 51, 69, 0.2);
}

/* --------------------------------------------------------------------------
   19. METHODOLOGY MAP
   -------------------------------------------------------------------------- */
.ce-methodology-stage {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ce-methodology-stage__number {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #8B3345;
  text-align: center;
  line-height: 1.8rem;
}

.ce-methodology-stage__content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.ce-methodology-stage__content p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #59605B;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .ce-hero__inner {
    grid-template-columns: 1fr;
  }

  .ce-hero__map-key {
    max-width: 100%;
  }

  .ce-footer__blocks {
    grid-template-columns: 1fr 1fr;
  }

  .ce-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .ce-card {
    grid-template-columns: 1fr;
  }

  .ce-card__image-panel {
    min-height: 160px;
  }

  .ce-card__image {
    height: 160px;
  }

  .ce-principles {
    grid-template-columns: 1fr;
  }

  .ce-steps {
    flex-direction: column;
    gap: 1.5rem;
    background-image: none;
  }

  .ce-criteria-grid {
    grid-template-columns: 1fr;
  }

  .ce-criteria-rail {
    border-right: none;
    border-bottom: 1px solid rgba(32, 37, 34, 0.12);
    padding-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .ce-criteria-rail__item {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(32, 37, 34, 0.1);
  }

  .ce-criteria-content {
    padding-left: 0;
  }

  .ce-responsible-grid {
    grid-template-columns: 1fr;
  }

  .ce-content-grid {
    grid-template-columns: 1fr;
  }

  .ce-profile-layout {
    grid-template-columns: 1fr;
  }

  .ce-profile-rail {
    border-right: none;
    border-bottom: 1px solid rgba(32, 37, 34, 0.1);
    padding-right: 0;
    padding-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ce-header__nav {
    display: none;
  }

  .ce-nav-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .ce-header__inner {
    justify-content: center;
  }

  .ce-header__logo {
    margin: 0;
  }

  .ce-hero__h1 {
    font-size: 1.6rem;
  }

  .ce-hero__lead {
    font-size: 0.95rem;
  }

  .ce-hero {
    padding: 2rem 0 1.5rem;
  }

  .ce-section__title {
    font-size: 1.3rem;
  }

  .ce-section {
    padding: 2rem 0;
  }

  .ce-footer__blocks {
    grid-template-columns: 1fr;
  }

  .ce-footer__nav {
    grid-template-columns: 1fr;
  }

  .ce-footer__resources {
    gap: 0.75rem;
  }

  .ce-footer__resource-link img,
  .ce-footer__resource-img img {
    width: 80px;
    height: 64px;
  }

  .ce-page-header__h1 {
    font-size: 1.4rem;
  }

  .ce-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ce-age-gate {
    width: 95vw;
  }

  .ce-age-gate__panel {
    padding: 1.5rem;
  }

  .ce-hero__divider::before {
    left: 0.75rem;
    font-size: 0.6rem;
  }
}

/* Small mobile */
@media (max-width: 430px) {
  .ce-container {
    padding: 0 1rem;
  }

  .ce-hero__inner {
    padding: 0 1rem;
  }

  .ce-hero__h1 {
    font-size: 1.4rem;
  }

  .ce-card__image-panel {
    padding: 0.75rem;
    min-height: 130px;
  }

  .ce-card__image {
    height: 130px;
  }

  .ce-card__text-panel {
    padding: 1rem;
  }

  .ce-cookie-banner {
    padding: 0.75rem 1rem;
  }

  .ce-top-notice {
    font-size: 0.7rem;
    padding: 0.45rem 0.75rem;
  }

  .ce-top-notice__link {
    white-space: normal;
  }
}
