
:root {
  --color-navy: #1c2444;
  --color-terracotta: #dd5b35;
  --color-mustard: #e3a13d;
  --color-teal: #1f6f5c;
  --color-plum: #7a3b69;
  --color-cream: #faf5ec;
  --ink: #221c2e;
  --paper: #fffaf3;

  --navy-light: color-mix(in oklch, var(--color-navy), white 18%);
  --navy-dark: color-mix(in oklch, var(--color-navy), black 22%);
  --navy-tint: color-mix(in oklch, var(--color-navy), white 88%);

  --terracotta-light: color-mix(in oklch, var(--color-terracotta), white 25%);
  --terracotta-dark: color-mix(in oklch, var(--color-terracotta), black 20%);
  --terracotta-tint: color-mix(in oklch, var(--color-terracotta), white 90%);

  --mustard-light: color-mix(in oklch, var(--color-mustard), white 25%);
  --mustard-dark: color-mix(in oklch, var(--color-mustard), black 25%);
  --mustard-tint: color-mix(in oklch, var(--color-mustard), white 88%);

  --teal-light: color-mix(in oklch, var(--color-teal), white 25%);
  --teal-dark: color-mix(in oklch, var(--color-teal), black 20%);
  --teal-tint: color-mix(in oklch, var(--color-teal), white 90%);

  --plum-light: color-mix(in oklch, var(--color-plum), white 25%);
  --plum-dark: color-mix(in oklch, var(--color-plum), black 20%);
  --plum-tint: color-mix(in oklch, var(--color-plum), white 90%);

  --font-heading: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28,20,10,.07), 0 1px 1px rgba(28,20,10,.05);
  --shadow-md: 0 10px 26px -10px rgba(28,20,10,.22), 0 3px 8px rgba(28,20,10,.09);
  --shadow-lg: 0 28px 54px -18px rgba(28,20,10,.30), 0 10px 20px -6px rgba(28,20,10,.14);

  --space-3xs: .375rem;
  --space-xs: .625rem;
  --space-sm: 1.1rem;
  --space-md: 1.85rem;
  --space-lg: 3.25rem;
  --space-xl: 5.5rem;
  --space-2xl: 8.5rem;

  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }


.hero__title, .page-hero__title { font-size: clamp(2.4rem, 4.5vw + 1rem, 4.4rem); line-height: 1.05; }
.section__title { font-size: clamp(1.75rem, 2.2vw + 1rem, 2.65rem); line-height: 1.15; }
.section__lead { font-size: clamp(1.02rem, .4vw + 1rem, 1.2rem); color: color-mix(in oklch, var(--ink), white 25%); max-width: 60ch; }


.section { padding: var(--space-2xl) 1.5rem; position: relative; }
.section--cream { background: var(--color-cream); color: var(--ink); }
.section--terracotta { background: var(--color-terracotta); color: #fff8f3; }
.section--teal { background: var(--color-teal); color: #f2fbf8; }
.section--plum { background: var(--color-plum); color: #fbf3f8; }
.section--mustard { background: var(--color-mustard); color: #2b1e07; }
.section--navy { background: var(--color-navy); color: #f2f3fb; }

.section__header { max-width: 780px; margin: 0 auto var(--space-xl); text-align: left; }
.section__eyebrow { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; margin-bottom: .6em; display: inline-block; }
.section__eyebrow--terracotta { color: var(--terracotta-dark); }
.section__eyebrow--on-terracotta { color: #fff0e6; }
.section__eyebrow--on-teal { color: #d3f5ec; }
.section__eyebrow--on-plum { color: #f6d9ec; }
.section__eyebrow--on-mustard { color: #4a3208; }
.section__eyebrow--on-navy { color: #b9c2f2; }

.section__title--on-terracotta, .section__title--on-teal, .section__title--on-plum, .section__title--on-navy { color: inherit; }
.section__title--on-mustard { color: #241705; }
.section__lead--on-terracotta, .section__lead--on-teal, .section__lead--on-plum { color: rgba(255,255,255,.86); }
.section__lead--on-mustard { color: #3d2a09; }
.section__lead--on-navy { color: rgba(242,243,251,.82); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--paper), transparent 8%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklch, var(--ink), transparent 92%);
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .35s var(--ease);
}
.site-header--scrolled {
  background: color-mix(in oklch, var(--paper), transparent 2%);
  box-shadow: var(--shadow-sm);
}
.site-header--scrolled .site-header__inner { padding: .8rem 1.5rem; }
.site-header--scrolled .site-header__logo-img { width: 32px; height: 32px; }
.site-header--scrolled .site-header__logo-text { font-size: 1rem; }

.site-header__logo { display: flex; align-items: center; gap: .6rem; }
.site-header__logo-img { width: 42px; height: 42px; transition: width .35s var(--ease), height .35s var(--ease); }
.site-header__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--color-navy); transition: font-size .35s var(--ease); }

.nav { display: flex; align-items: center; }
.nav__list--desktop { display: flex; gap: 2rem; }
.nav__link { font-weight: 500; font-size: .95rem; padding: .4rem 0; position: relative; color: var(--ink); transition: color .25s var(--ease); }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--color-terracotta); transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link--active { color: var(--color-terracotta); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav__toggle-bar { width: 24px; height: 2px; background: var(--color-navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--color-cream);
  transition: max-height .4s var(--ease);
}
.nav__mobile-panel--open { max-height: 420px; }
.nav__list--mobile { display: flex; flex-direction: column; padding: 1rem 1.5rem 1.6rem; gap: .3rem; }
.nav__list--mobile .nav__link { display: block; padding: .8rem .2rem; border-bottom: 1px solid color-mix(in oklch, var(--ink), transparent 90%); min-height: 44px; }

@media (max-width: 880px) {
  .nav__list--desktop { display: none; }
  .nav__toggle { display: flex; }
}


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem; border-radius: var(--radius-pill); font-weight: 500; font-size: .98rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  min-height: 44px;
}
.btn--primary { background: var(--color-terracotta); color: #fff8f3; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost-light { border-color: rgba(255,255,255,.55); color: #f5f6fc; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn--dark { background: var(--color-navy); color: #f5f6fc; box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--wide { width: 100%; }


.hero { background: var(--color-navy); color: #f2f3fb; padding: var(--space-2xl) 1.5rem var(--space-xl); overflow: hidden; position: relative; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 20%, color-mix(in oklch, var(--color-plum), transparent 55%), transparent 55%),
              radial-gradient(circle at 10% 90%, color-mix(in oklch, var(--color-terracotta), transparent 65%), transparent 55%);
}
.hero__inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; font-weight: 600; color: #c8cef2; margin-bottom: 1em; display: block; }
.hero__subtitle { font-size: clamp(1.02rem, .3vw + 1rem, 1.18rem); color: rgba(242,243,251,.82); max-width: 54ch; margin-bottom: 2em; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .5rem 1rem; border-radius: var(--radius-pill); font-size: .85rem; }
.hero__media { position: relative; margin-left: 2rem; }
.hero__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { margin-left: 0; order: -1; max-width: 420px; }
}


.intro__inner { max-width: 1280px; margin: 0 auto var(--space-xl); display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.intro__media { transform: translateY(1.5rem); }
.intro__img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.feature-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--paper); border-radius: var(--radius-md); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 93%);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card__icon { font-size: 1.6rem; color: var(--color-terracotta); margin-bottom: .8rem; }
.feature-card__title { font-size: 1.15rem; margin-bottom: .4rem; }
.feature-card__text { font-size: .95rem; color: color-mix(in oklch, var(--ink), white 25%); margin: 0; }

@media (max-width: 980px) {
  .intro__inner { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}


.module-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.module-card {
  background: color-mix(in oklch, var(--color-terracotta), black 8%);
  border-radius: var(--radius-md); padding: 2.2rem 1.8rem; position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.14); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.module-card:nth-child(2n) { transform: translateY(1.4rem); }
.module-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.module-card:nth-child(2n):hover { transform: translateY(1.4rem) translateY(-6px); }
.module-card__number { position: absolute; top: 1.3rem; right: 1.6rem; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; opacity: .28; }
.module-card__icon { font-size: 1.6rem; margin-bottom: 1rem; color: #ffe4d6; }
.module-card__title { font-size: 1.2rem; margin-bottom: .5rem; }
.module-card__text { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 1.2rem; }
.module-card__duration { display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; background: rgba(255,255,255,.14); padding: .4rem .9rem; border-radius: var(--radius-pill); }

@media (max-width: 980px) { .module-grid { grid-template-columns: repeat(2, 1fr); } .module-card:nth-child(2n) { transform: none; } }
@media (max-width: 620px) { .module-grid { grid-template-columns: 1fr; } }


.method__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: center; }
.method__img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; }
.steps { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 1.5rem; }
.steps__item { display: flex; gap: 1.2rem; align-items: flex-start; }
.steps__number {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem;
}
.steps__title { font-size: 1.1rem; margin-bottom: .3rem; }
.steps__text { margin: 0; color: rgba(242,251,248,.82); font-size: .96rem; }

@media (max-width: 940px) { .method__inner { grid-template-columns: 1fr; } }


.compliance__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.compliance__column { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); padding: 2.2rem; }
.compliance__heading { display: flex; align-items: center; gap: .6rem; font-size: 1.2rem; margin-bottom: 1.2rem; }
.compliance__heading--positive i { color: #b9f0d4; }
.compliance__heading--negative i { color: #f6c3c3; }
.compliance__list { display: flex; flex-direction: column; gap: .9rem; }
.compliance__list li { position: relative; padding-left: 1.4rem; font-size: .98rem; color: rgba(251,243,248,.9); }
.compliance__list li::before { content: '—'; position: absolute; left: 0; opacity: .6; }

@media (max-width: 820px) { .compliance__grid { grid-template-columns: 1fr; } }


.contact-preview__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.contact-card {
  background: color-mix(in oklch, var(--color-mustard), white 12%); border-radius: var(--radius-md); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(36,23,5,.08); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-card__icon { font-size: 1.5rem; color: var(--color-navy); margin-bottom: .8rem; }
.contact-card__title { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card__text { margin: 0; font-size: .95rem; }
.contact-card__text a:hover { color: var(--color-terracotta); }
.contact-preview__cta { text-align: center; margin-top: var(--space-lg); }

@media (max-width: 980px) { .contact-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-preview__grid { grid-template-columns: 1fr; } }


.footer {
  background: linear-gradient(135deg, var(--color-navy) 0%, color-mix(in oklch, var(--color-plum), var(--color-navy) 40%) 50%, var(--color-terracotta) 130%);
  color: #f4f1f8; padding: var(--space-xl) 1.5rem var(--space-md);
}
.footer__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: var(--space-lg); }
.footer__logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; }
.footer__logo-img { width: 36px; height: 36px; }
.footer__tagline { color: rgba(244,241,248,.75); font-size: .95rem; max-width: 34ch; }
.footer__heading { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1.1rem; color: rgba(244,241,248,.9); }
.footer__list { display: flex; flex-direction: column; gap: .7rem; font-size: .93rem; }
.footer__list a { color: rgba(244,241,248,.78); transition: color .25s var(--ease); }
.footer__list a:hover { color: #fff; }
.footer__list li { display: flex; align-items: center; gap: .5rem; color: rgba(244,241,248,.78); }
.footer__bottom { max-width: 1280px; margin: 0 auto; border-top: 1px solid rgba(244,241,248,.18); padding-top: 1.4rem; font-size: .85rem; color: rgba(244,241,248,.68); }

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


.page-hero { padding: var(--space-2xl) 1.5rem var(--space-xl); }
.page-hero__inner { max-width: 820px; margin: 0 auto; text-align: left; }
.page-hero__subtitle { font-size: clamp(1.02rem, .3vw + 1rem, 1.15rem); max-width: 60ch; opacity: .9; }
.page-hero--teal { background: var(--color-teal); color: #f2fbf8; }
.page-hero--plum { background: var(--color-plum); color: #fbf3f8; }
.page-hero--navy { background: var(--color-navy); color: #f2f3fb; }


.story__row { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story__row--center { grid-template-columns: 1fr; text-align: center; }
.story__text--wide { max-width: 760px; margin: 0 auto; }
.story__img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; object-fit: cover; }
.section__title--on-navy, .section__lead--on-navy { color: inherit; }

@media (max-width: 900px) {
  .story__row, .story--reverse .story__row { grid-template-columns: 1fr !important; }
  .story--reverse .story__media { order: -1; }
}


.mentoring__row { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mentoring__img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; object-fit: cover; }
@media (max-width: 900px) {
  .mentoring__row, .mentoring--reverse .mentoring__row { grid-template-columns: 1fr !important; }
  .mentoring--reverse .mentoring__media { order: -1; }
}

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq__item { background: rgba(36,23,5,.05); border: 1px solid rgba(36,23,5,.1); border-radius: var(--radius-md); padding: 1.2rem 1.6rem; }
.faq__question { cursor: pointer; font-weight: 600; font-size: 1.02rem; padding: .4rem 0; }
.faq__answer { margin-top: .6rem; font-size: .96rem; color: #3d2a09; }
.mentoring-faq__cta { text-align: center; margin-top: var(--space-lg); }


.glossary__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.glossary__item { background: var(--paper); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid color-mix(in oklch, var(--ink), transparent 93%); }
.glossary__term { font-size: 1.05rem; margin-bottom: .5rem; color: var(--terracotta-dark); }
.glossary__def { font-size: .93rem; margin: 0; color: color-mix(in oklch, var(--ink), white 20%); }

@media (max-width: 980px) { .glossary__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .glossary__grid { grid-template-columns: 1fr; } }

.checklist__row { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.checklist__list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.checklist__list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; }
.checklist__list i { margin-top: .25rem; color: #ffe4d6; }
.checklist__img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3.4; object-fit: cover; }
@media (max-width: 900px) { .checklist__row { grid-template-columns: 1fr; } }

.sources__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.sources__card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); padding: 2rem; transition: transform .3s var(--ease); }
.sources__card:hover { transform: translateY(-6px); }
.sources__icon { font-size: 1.6rem; margin-bottom: .8rem; color: #d3f5ec; }
.sources__title { font-size: 1.15rem; margin-bottom: .5rem; }
.sources__text { margin: 0; font-size: .95rem; color: rgba(242,251,248,.85); }
@media (max-width: 700px) { .sources__grid { grid-template-columns: 1fr; } }

.example__box { max-width: 820px; margin: 0 auto; text-align: left; background: rgba(255,255,255,.35); border-radius: var(--radius-lg); padding: 2.6rem; border: 1px solid rgba(36,23,5,.1); }


.contact-page { padding-top: var(--space-2xl); }
.contact-page .container, .contact-page { }
.contact-page { display: block; }
.contact-page__form-wrap { max-width: 720px; margin: 0 auto var(--space-xl); }
.contact-page__title { font-size: clamp(2rem, 3vw + 1rem, 3rem); text-align: center; }
.contact-page__subtitle { text-align: center; color: color-mix(in oklch, var(--ink), white 25%); max-width: 56ch; margin: 0 auto 2.5rem; }

.form { display: flex; flex-direction: column; gap: 1.8rem; background: var(--paper); border-radius: var(--radius-lg); padding: 2.8rem; box-shadow: var(--shadow-md); border: 1px solid color-mix(in oklch, var(--ink), transparent 93%); }
.form__group { display: flex; flex-direction: column; gap: .5rem; }
.form__label { font-weight: 600; font-size: .95rem; }
.form__input, .form__textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid color-mix(in oklch, var(--ink), transparent 82%); background: #fff; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  min-height: 44px;
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__input:focus, .form__textarea:focus { outline: none; border-color: var(--color-terracotta); box-shadow: 0 0 0 4px color-mix(in oklch, var(--color-terracotta), transparent 82%); }
.form__hint { font-size: .82rem; color: color-mix(in oklch, var(--ink), white 35%); }
.form__group--checkbox { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
.form__checkbox-label { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; cursor: pointer; }
.form__checkbox-label input { margin-top: .2rem; width: 20px; height: 20px; flex-shrink: 0; }
.form__checkbox-label a { color: var(--color-terracotta); text-decoration: underline; }

.contact-page__side { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-page__map { grid-column: 1 / -1; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-page__info-card { background: var(--paper); border-radius: var(--radius-md); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid color-mix(in oklch, var(--ink), transparent 93%); }
.contact-page__info-card h3 { font-size: 1rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; }
.contact-page__info-card p { margin: 0; font-size: .95rem; }
.contact-page__info-card a:hover { color: var(--color-terracotta); }

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


.thanks { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: var(--space-2xl) 1.5rem; text-align: center; }
.thanks__title { font-size: clamp(2.4rem, 4vw + 1rem, 4rem); margin-bottom: .5em; }
.thanks__text { font-size: 1.1rem; color: color-mix(in oklch, var(--ink), white 25%); margin-bottom: 2rem; }


.legal__inner { max-width: 820px; margin: 0 auto; }
.legal__updated { display: inline-block; background: var(--terracotta-tint); color: var(--terracotta-dark); font-weight: 600; padding: .4rem 1rem; border-radius: var(--radius-pill); font-size: .85rem; margin-bottom: 1.2rem; }
.legal__title { font-size: clamp(2rem, 3vw + 1rem, 2.9rem); margin-bottom: .6em; }
.legal__intro { font-size: 1.05rem; color: color-mix(in oklch, var(--ink), white 20%); margin-bottom: 2.5rem; }
.legal__section { margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid color-mix(in oklch, var(--ink), transparent 90%); }
.legal__section:last-child { border-bottom: none; }
.legal__summary { font-weight: 700; font-size: 1.1rem; color: var(--terracotta-dark); margin-bottom: .6rem; font-family: var(--font-heading); }
.legal__section--lettered .legal__summary { color: var(--teal-dark); }
.legal__section--plain .legal__summary { color: var(--plum-dark); background: var(--plum-tint); display: inline-block; padding: .3rem .9rem; border-radius: var(--radius-sm); }
.legal__detail { font-size: .98rem; color: color-mix(in oklch, var(--ink), white 15%); margin: 0; }


.cookie-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--color-navy); color: #f2f3fb;
  transform: translateY(-100%); transition: transform .5s var(--ease);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { margin: 0; font-size: .9rem; flex: 1; min-width: 220px; }
.cookie-banner__text a { text-decoration: underline; color: #d3d9ff; }
.cookie-banner__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.cookie-banner__btn { padding: .6rem 1.2rem; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 500; border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease); min-height: 44px; }
.cookie-banner__btn--ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #f2f3fb; }
.cookie-banner__btn--ghost:hover { background: rgba(255,255,255,.12); }
.cookie-banner__btn--solid { background: var(--color-terracotta); color: #fff; }
.cookie-banner__btn--solid:hover { background: var(--terracotta-dark); }

@media (max-width: 640px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; } .cookie-banner__actions { justify-content: stretch; } .cookie-banner__btn { flex: 1; } }

.cookie-modal {
  position: fixed; inset: 0; z-index: 1100; background: rgba(28,20,10,.55);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.cookie-modal--open { opacity: 1; visibility: visible; }
.cookie-modal__panel { background: var(--paper); border-radius: var(--radius-lg); padding: 2.2rem; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.cookie-modal__title { margin-bottom: .5rem; }
.cookie-modal__desc { font-size: .93rem; color: color-mix(in oklch, var(--ink), white 25%); margin-bottom: 1.4rem; }
.cookie-modal__category { border-top: 1px solid color-mix(in oklch, var(--ink), transparent 90%); padding: 1rem 0; }
.cookie-modal__category p { margin: .3rem 0 0; font-size: .87rem; color: color-mix(in oklch, var(--ink), white 30%); }
.cookie-modal__category-head { display: flex; align-items: center; justify-content: space-between; font-weight: 600; }
.cookie-modal__category-head input { width: 20px; height: 20px; }
.cookie-modal__actions { display: flex; gap: 1rem; margin-top: 1.5rem; justify-content: flex-end; }


.tippy-box[data-theme~='custom'] { background: var(--color-navy); color: #f2f3fb; font-size: .85rem; border-radius: var(--radius-sm); padding: .1rem; box-shadow: var(--shadow-md); }
.tippy-box[data-theme~='custom'][data-placement^='top'] > .tippy-arrow::before { border-top-color: var(--color-navy); }
.tippy-box[data-theme~='custom'][data-placement^='bottom'] > .tippy-arrow::before { border-bottom-color: var(--color-navy); }


@media (max-width: 640px) {
  .section { padding: var(--space-xl) 1.2rem; }
  .hero { padding: var(--space-xl) 1.2rem var(--space-lg); }
}