:root {
  --color-bg: #FAF8F4;
  --color-bg-alt: #F1ECE1;
  --color-surface: #FFFFFF;
  --color-primary: #23264D;
  --color-primary-light: #3B4172;
  --color-secondary: #4C6FA5;
  --color-accent: #CB5F2E;
  --color-accent-light: #E8A374;
  --color-gold: #B98B3E;
  --color-text: #262633;
  --color-text-muted: #5D5D6B;
  --color-border: #E4DFD3;

  --shadow-sm: 0 1px 2px rgba(35,38,77,0.06), 0 1px 1px rgba(35,38,77,0.05);
  --shadow-md: 0 6px 16px rgba(35,38,77,0.08), 0 2px 6px rgba(35,38,77,0.06);
  --shadow-lg: 0 16px 36px rgba(35,38,77,0.12), 0 6px 14px rgba(35,38,77,0.08);
  --shadow-xl: 0 28px 64px rgba(35,38,77,0.16), 0 10px 26px rgba(35,38,77,0.1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lexend', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: 'Lexend', sans-serif; font-weight: 600; color: var(--color-primary); margin: 0 0 0.6em; line-height: 1.2; }
p { margin: 0 0 1em; color: var(--color-text); }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

.skip-to-content {
  position: absolute;
  top: 0; left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: translateY(-100%);
  transition: transform 0.2s ease;
  z-index: 200;
  font-weight: 500;
}
.skip-to-content:focus { transform: translateY(0); }

mark {
  background: linear-gradient(180deg, transparent 60%, var(--color-accent-light) 60%);
  color: white;
  padding: 0 0.1em;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.btn--primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #B4531F; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: transparent; }
.btn--ghost:hover { background: rgba(35,38,77,0.06); transform: translateY(-1px); }
.btn--outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }


.banner {
  position: relative;
  z-index: 60;
  background: var(--color-primary);
  color: #fff;
  padding: 0.7rem 3rem 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  gap: 0.5rem;
}
.banner__text { margin: 0; display:flex; align-items:center; color: white; gap:0.5rem; flex-wrap: wrap; justify-content:center;}
.banner__icon { color: var(--color-accent-light); }
.banner__link { text-decoration: underline; font-weight: 600; }
.banner__link:hover { color: var(--color-accent-light); }
.banner__dismiss {
  position: absolute;
  right: 1rem; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.banner__dismiss:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.08); }
.banner--hidden { display: none; }


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}
.header--static { background: rgba(250,248,244,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.header--scrolled {
  background: rgba(250,248,244,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35,38,77,0.08);
  box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.5rem; gap: 1.5rem; }
.header__logo-img { height: 48px; width: auto; transition: transform 0.3s ease; }
.header__logo:hover .header__logo-img { transform: scale(1.05); }

.nav { flex: 1; display: flex; justify-content: center; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle-bar { width: 24px; height: 2.5px; background: var(--color-primary); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__list { display: flex; gap: 2rem; }
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
  padding: 0.4rem 0.1rem;
  transition: color 0.25s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--color-accent); }
.header__actions { display: flex; align-items: center; gap: 0.75rem; }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav { order: 3; flex-basis: 100%; justify-content: flex-start; }
  .nav__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    gap: 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
  }
  .nav__list--open { max-height: 500px; padding: 0.5rem 0; margin-top: 0.75rem; box-shadow: var(--shadow-sm); }
  .nav__item { border-bottom: 1px solid var(--color-border); }
  .nav__item:last-child { border-bottom: none; }
  .nav__link { display: block; padding: 0.9rem 1.2rem; }
  .header__inner { flex-wrap: wrap; }
  .header__actions { order: 2; margin-left: auto; }
}
@media (max-width: 560px) {
  .header__actions .btn--ghost { display: none; }
}


.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}
.hero__bg-shape { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.35; }
.hero__bg-shape--one { width: 420px; height: 420px; background: var(--color-secondary); top: -140px; right: -120px; }
.hero__bg-shape--two { width: 300px; height: 300px; background: var(--color-accent-light); bottom: -100px; left: -80px; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-lg); align-items: center; position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--color-secondary);
  background: rgba(76,111,165,0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 0.6em; letter-spacing: -0.01em; }
.hero__subtitle { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--color-text-muted); max-width: 46ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero__note { color: var(--color-text-muted); }

.hero__widgets { position: relative; min-height: 420px; }
.hero__image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 0;
}
.hero__image { width: 100%; height: 380px; object-fit: cover; }
.hero__image-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(35,38,77,0.85));
  color: #fff; padding: 1.5rem 1.2rem 0.9rem; font-size: 0.85rem;
}
.hero__widget-mini {
  position: absolute;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero__widget-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.hero__widget-mini--one { top: -18px; left: -18px; }
.hero__widget-mini--two { top: 40%; right: -30px; }
.hero__widget-mini--three { bottom: -22px; left: 18%; }
.hero__widget-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero__widget-dl dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin: 0; }
.hero__widget-dl dd { margin: 0; font-weight: 600; color: var(--color-primary); font-size: 0.9rem; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__widgets { min-height: 340px; margin-top: 2rem; }
  .hero__widget-mini--one { top: -10px; left: -10px; }
  .hero__widget-mini--two { right: -10px; }
  .hero__widget-mini--three { left: 10%; }
}
@media (max-width: 560px) {
  .hero { min-height: auto; padding-top: 2rem; }
  .hero__image { height: 260px; }
  .hero__widget-mini { padding: 0.6rem 0.8rem; }
}


.section__head { max-width: 640px; margin-bottom: var(--space-md); }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section__title--center { text-align: center; margin-bottom: 2rem; }
.section__lead { font-size: 1.08rem; color: var(--color-text-muted); }

.scenario, .method, .features, .modules, .team-story, .team-grid-section, .values, .quote, .cta-split, .books, .disclaimer-block, .contact-section, .map-section {
  padding: var(--space-xl) 0;
}
.scenario__inner, .team-story__inner, .method__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.method__inner { grid-template-columns: 0.9fr 1.1fr; }
.scenario__figure img, .team-story__figure img, .method__figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.scenario__figure figcaption, .team-story__figure figcaption, .method__figure figcaption { margin-top: 0.6rem; color: var(--color-text-muted); }
@media (max-width: 900px) {
  .scenario__inner, .team-story__inner, .method__inner { grid-template-columns: 1fr; }
  .scenario__figure img, .team-story__figure img, .method__figure img { height: 260px; }
}


.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.feature-item { display: flex; gap: 1.1rem; padding: 1.2rem 0; }
.feature-item__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.feature-item:hover .feature-item__icon { background: var(--color-accent); color: #fff; transform: rotate(-6deg); }
.feature-item__title { font-size: 1.15rem; margin-bottom: 0.35em; }
.feature-item__divider { height: 1px; background: var(--color-border); margin: 0; }
@media (max-width: 860px) {
  .features__grid { grid-template-columns: 1fr; }
}


.widget-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 1.25rem;
}
.widget-grid--values, .widget-grid--books { grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; }
.module-card, .value-card, .book-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  grid-column: span 1;
}
.module-card:hover, .value-card:hover, .book-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-xl); }
.module-card--span-2 { grid-column: span 2; }
.module-card--accent { background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: #fff; border-color: transparent; }
.module-card--accent .module-card__title, .module-card--accent dt { color: #fff; }
.module-card--accent dd { color: rgba(255,255,255,0.85); }
.module-card--accent .module-card__number { color: rgba(255,255,255,0.5); }
.module-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.module-card__number { font-size: 2.2rem; font-weight: 700; color: var(--color-border); }
.module-card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.module-card--accent .module-card__icon { background: rgba(255,255,255,0.15); color: #fff; }
.module-card__title { font-size: 1.2rem; margin-bottom: 0.6em; }
.module-card__dl dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin: 0.6em 0 0.1em; }
.module-card--accent .module-card__dl dt { color: rgba(255,255,255,0.65); }
.module-card__dl dd { margin: 0; font-size: 0.92rem; }

@media (max-width: 980px) {
  .widget-grid, .widget-grid--values, .widget-grid--books { grid-template-columns: repeat(2, 1fr); }
  .module-card--span-2 { grid-column: span 2; }
}
@media (max-width: 620px) {
  .widget-grid, .widget-grid--values, .widget-grid--books { grid-template-columns: 1fr; }
  .module-card--span-2 { grid-column: span 1; }
}


.value-card__icon, .book-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--color-bg-alt); color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.value-card h3, .book-card__title { font-size: 1.1rem; }
.book-card__dl dt { font-size: 0.72rem; text-transform: uppercase; color: var(--color-text-muted); margin: 0.5em 0 0.1em; }
.book-card__dl dd { margin: 0; font-size: 0.92rem; }


.method__list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.method__list li { display: flex; align-items: center; gap: 0.6rem; color: var(--color-text); }
.method__list i { color: var(--color-accent); }


.quote__block {
  max-width: 780px; margin: 0 auto; text-align: center;
  border-left: none;
  padding: 2rem;
  position: relative;
}
.quote__block::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--color-accent-light);
  position: absolute;
  top: -1rem; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif;
}
.quote__block p { font-size: 1.35rem; color: var(--color-primary); font-weight: 500; margin-bottom: 0.8em; }
.quote__block cite { color: var(--color-text-muted); font-style: normal; font-size: 0.95rem; }


.cta-split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cta-split__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-split__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cta-split__card--accent { background: linear-gradient(160deg, var(--color-primary), var(--color-primary-light)); color: #fff; border-color: transparent; }
.cta-split__card--accent h3, .cta-split__card--accent p { color: #fff; }
.cta-split__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--color-bg-alt); color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.cta-split__card--accent .cta-split__icon { background: rgba(255,255,255,0.15); color: #fff; }
@media (max-width: 780px) { .cta-split__inner { grid-template-columns: 1fr; } }


.module-list { display: flex; flex-direction: column; gap: 1.1rem; }
.module-row {
  display: flex; gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.module-row:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.module-row--accent { border-color: var(--color-accent-light); background: #FFF6F0; }
.module-row__marker span {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  font-weight: 700; font-size: 1.15rem;
}
.module-row--accent .module-row__marker span { background: var(--color-accent); }
.module-row__content h3 { margin-bottom: 0.4em; }
.module-row__dl { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 0.6rem; }
.module-row__dl dt { font-size: 0.72rem; text-transform: uppercase; color: var(--color-text-muted); margin: 0; }
.module-row__dl dd { margin: 0; font-weight: 600; font-size: 0.9rem; color: var(--color-primary); }
@media (max-width: 640px) { .module-row { flex-direction: column; gap: 1rem; } }


.disclaimer-block .container {
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
}
.disclaimer-block__icon { font-size: 1.6rem; color: var(--color-gold); flex-shrink: 0; }
.disclaimer-block p { margin: 0; color: var(--color-text); }


.page-hero { padding: var(--space-xl) 0 var(--space-lg); background: linear-gradient(180deg, var(--color-bg-alt), var(--color-bg)); }
.page-hero__inner { max-width: 760px; }
.page-hero__title { font-size: clamp(2rem, 4.2vw, 3rem); }
.page-hero__subtitle { color: var(--color-text-muted); font-size: 1.08rem; max-width: 60ch; }


.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-card__image { width: 100%; height: 260px; object-fit: cover; }
.team-card__body { padding: 1.6rem; }
.team-card__name { margin-bottom: 0.15em; }
.team-card__role { color: var(--color-accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.team-card__dl dt { font-size: 0.72rem; text-transform: uppercase; color: var(--color-text-muted); margin: 0.6em 0 0.1em; }
.team-card__dl dd { margin: 0; font-size: 0.92rem; }
.team-card__quote { margin-top: 1.2rem; padding-left: 1rem; border-left: 3px solid var(--color-accent-light); }
.team-card__quote p { font-style: italic; color: var(--color-primary); margin-bottom: 0.3em; }
.team-card__quote cite { font-size: 0.85rem; color: var(--color-text-muted); font-style: normal; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }




.contact-section__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.chat-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.chat-bubble {
  max-width: 80%;
  margin-bottom: 0.8rem;
}
.chat-bubble--bot p {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  padding: 0.8rem 1.1rem;
  border-radius: 16px 16px 16px 4px;
  display: inline-block;
  margin: 0;
  font-size: 0.95rem;
}
.chat-bubble--user {
  margin-left: auto;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  background: var(--color-secondary);
  padding: 1rem 1.2rem;
  border-radius: 16px 16px 4px 16px;
  max-width: 100%;
}
.chat-bubble--user label { color: #fff; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; }
.chat-bubble--user input[type="text"],
.chat-bubble--user input[type="email"],
.chat-bubble--user textarea {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  font-family: 'Lexend', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: box-shadow 0.25s ease;
  min-height: 44px;
}
.chat-bubble--user input:focus, .chat-bubble--user textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.5); }
.chat-bubble--user .field-hint { color: rgba(255,255,255,0.75); font-size: 0.75rem; margin-top: 0.4rem; }
.field-group--checkbox { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 0.6rem; }
.field-group--checkbox input { width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; }
.field-group--checkbox label { color: #fff; font-weight: 400; font-size: 0.88rem; }
.field-group--checkbox label a { text-decoration: underline; }
.field-group--checkbox .field-hint { flex-basis: 100%; }

.chat-send-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  min-height: 48px;
}
.chat-send-btn:hover { background: #B4531F; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-alert { color: #B3261E; font-size: 0.9rem; margin: 0.5rem 0; min-height: 1.2em; }

.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.05rem; }
.contact-card address { font-style: normal; color: var(--color-text-muted); line-height: 1.7; }
.contact-card--person { display: flex; gap: 1rem; align-items: center; }
.contact-card__figure { flex-shrink: 0; }
.contact-card__image { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; }
.contact-card--person h3 { margin-bottom: 0.3em; }
.contact-card--person p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

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

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 380px; }


.thanks-section { padding: var(--space-xl) 0; min-height: 60vh; display: flex; align-items: center; }
.thanks-section__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.thanks-quote {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
  position: relative;
}
.thanks-quote::before {
  content: '\201C'; font-size: 4rem; color: var(--color-accent-light);
  position: absolute; top: -0.5rem; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif;
}
.thanks-quote p { font-size: 1.25rem; color: var(--color-primary); font-weight: 500; }
.thanks-quote cite { color: var(--color-text-muted); font-style: normal; font-size: 0.9rem; }
.thanks-section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
.thanks-section__text { color: var(--color-text-muted); margin-bottom: 2rem; }


.legal-hero { padding: var(--space-lg) 0 var(--space-md); background: var(--color-bg-alt); }
.legal-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 0.3em; }
.legal-hero--alt { background: linear-gradient(160deg, var(--color-primary), var(--color-primary-light)); }
.legal-hero--alt h1, .legal-hero--alt p, .legal-hero--alt small { color: #fff; }
.legal-hero--soft { background: #FFF6F0; }
.legal-content { padding: var(--space-lg) 0 var(--space-xl); }
.legal-content h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal-content p { color: var(--color-text); max-width: 76ch; }
.legal-list { padding-left: 1.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
.legal-list li { padding-left: 0.4rem; }
.legal-list h2 { margin-top: 0; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; max-width: 700px; }
.legal-table th, .legal-table td { text-align: left; padding: 0.7rem 1rem; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
.legal-table th { color: var(--color-text-muted); font-weight: 500; width: 40%; }
.cookie-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin: 1.5rem 0; }
.cookie-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.cookie-info-card h3 { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.cookie-info-card dt { font-size: 0.7rem; text-transform: uppercase; color: var(--color-text-muted); margin: 0.5em 0 0.1em; }
.cookie-info-card dd { margin: 0; font-size: 0.85rem; }
@media (max-width: 900px) { .cookie-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cookie-info-grid { grid-template-columns: 1fr; } }


.footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding: var(--space-lg) 0 var(--space-md); margin-top: auto; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.footer__logo-img { height: 52px; filter: brightness(0) invert(1); }
.footer__tagline { max-width: 520px; color: rgba(255,255,255,0.7); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
.footer__nav a { font-size: 0.9rem; position: relative; color: rgba(255,255,255,0.85); transition: color 0.25s ease; }
.footer__nav a::after { content:''; position:absolute; left:0; bottom:-3px; width:0; height:1px; background:#fff; transition: width 0.3s ease; }
.footer__nav a:hover { color: #fff; }
.footer__nav a:hover::after { width: 100%; }
.footer__address { font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer__address a { text-decoration: underline; }
.footer__bar { width: 100%; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.2rem; margin-top: 0.6rem; }
.footer__bar p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

html, body { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }


.cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(23,25,51,0.45);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-overlay--visible { opacity: 1; visibility: visible; }
.cookie-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 88vw;
  background: var(--color-surface);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
.cookie-panel--visible { transform: translateX(0); }
.cookie-panel__shield { font-size: 2rem; color: var(--color-accent); display: block; margin-bottom: 0.6rem; }
.cookie-panel__head h2 { font-size: 1.25rem; margin-bottom: 0.4em; }
.cookie-panel__head p { font-size: 0.85rem; color: var(--color-text-muted); }
.cookie-panel__list { display: flex; flex-direction: column; gap: 1rem; margin: 1.2rem 0; flex: 1; }
.cookie-toggle { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; border-bottom: 1px solid var(--color-border); padding-bottom: 0.9rem; }
.cookie-toggle__text strong { display: block; font-size: 0.9rem; color: var(--color-primary); }
.cookie-toggle__text span { font-size: 0.78rem; color: var(--color-text-muted); }
.switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__slider { position: absolute; cursor: pointer; inset: 0; background: var(--color-border); border-radius: 999px; transition: background 0.25s ease; }
.switch__slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform 0.25s ease; box-shadow: var(--shadow-sm); }
.switch input:checked + .switch__slider { background: var(--color-accent); }
.switch input:checked + .switch__slider::before { transform: translateX(18px); }
.switch--disabled { opacity: 0.6; }
.cookie-panel__actions { display: flex; flex-direction: column; gap: 0.7rem; }
.cookie-panel__link { text-align: center; font-size: 0.8rem; color: var(--color-secondary); text-decoration: underline; margin-top: 0.3rem; }


.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


.field-group { display: flex; flex-direction: column; }