:root {
  --color-ink: #171a21;
  --color-ink-soft: #2c313c;
  --color-paper: #f7f2ea;
  --color-paper-alt: #efe6d3;
  --color-line: #ddd0b0;
  --color-rust: #c9502e;
  --color-rust-dark: #a13f22;
  --color-gold: #b6883c;
  --text-body: #262a33;
  --text-muted: #5b5f6a;

  --shadow-sm: 0 1px 2px rgba(23,26,33,.08), 0 1px 1px rgba(23,26,33,.05);
  --shadow-md: 0 4px 10px rgba(23,26,33,.08), 0 14px 28px -10px rgba(23,26,33,.16);
  --shadow-lg: 0 10px 22px rgba(23,26,33,.10), 0 26px 52px -16px rgba(23,26,33,.22);
  --shadow-xl: 0 18px 36px rgba(23,26,33,.14), 0 44px 90px -24px rgba(23,26,33,.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lexend', sans-serif;
  background: var(--color-paper);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Lexend', sans-serif; margin: 0; color: var(--color-ink); font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

.section { padding-block: clamp(3.5rem, 7vw, 7rem); max-width: 1240px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section__header { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600; color: var(--color-rust); margin-bottom: .75rem; }
.section__title { font-size: clamp(1.8rem, 2.6vw + 1rem, 2.75rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
.section__lead { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; max-width: 60ch; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.8rem; border-radius: var(--radius-full);
  font-weight: 500; font-size: .95rem; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  min-height: 44px;
}
.btn--primary { background: var(--color-rust); color: var(--color-paper); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--color-rust-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--secondary { background: var(--color-ink); color: var(--color-paper); }
.btn--secondary:hover { background: var(--color-ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: var(--color-ink); color: var(--color-paper); border: 1.5px solid var(--color-line); }
.btn--ghost:hover { background: var(--color-ink); color: var(--color-paper); border-color: var(--color-ink); transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.1rem; font-size: .82rem; }


.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--color-ink); border-bottom: 1px solid transparent;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header__inner {
  max-width: 1400px; margin-inline: auto; padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; gap: .6rem; }
.header__logo-mark { width: 34px; height: 34px; }
.header__logo-text { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; color: var(--color-paper); transition: color .35s ease; }
.nav__list { display: flex; gap: clamp(1.2rem, 2vw, 2.2rem); }
.nav__link { font-size: .95rem; font-weight: 500; color: var(--color-paper); opacity: .85; position: relative; padding-bottom: 4px; transition: opacity .25s ease, color .35s ease; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-rust); transition: width .3s ease; }
.nav__link:hover { opacity: 1; }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link--active { opacity: 1; }

.header--scrolled { background: var(--color-paper); box-shadow: var(--shadow-md); border-bottom-color: var(--color-line); }
.header--scrolled .header__logo-text { color: var(--color-ink); }
.header--scrolled .nav__link { color: var(--color-ink); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle__bar { width: 24px; height: 2px; background: var(--color-paper); border-radius: 2px; transition: background-color .35s ease; }
.header--scrolled .menu-toggle__bar { background: var(--color-ink); }


.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--color-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform .55s cubic-bezier(.77,0,.18,1);
  padding: 2rem;
}
.mobile-menu--open { transform: translateY(0); }
.mobile-menu__list { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-menu__item { opacity: 0; transform: translateY(-30px); transition: opacity .4s ease, transform .4s ease; }
.mobile-menu--open .mobile-menu__item { opacity: 1; transform: translateY(0); }
.mobile-menu__link { font-size: 1.8rem; font-weight: 600; color: var(--color-paper); }
.mobile-menu__link:hover { color: var(--color-rust); }
.mobile-menu__close { position: absolute; bottom: 2.5rem; color: var(--color-paper); border: 1px solid rgba(247,242,234,.35); padding: .75rem 1.6rem; border-radius: var(--radius-full); display: inline-flex; gap: .5rem; align-items: center; min-height: 44px; }
.mobile-menu__close:hover { background: var(--color-paper); color: var(--color-ink); }


.hero { padding-top: clamp(6.5rem, 10vw, 9rem); padding-bottom: clamp(3rem, 6vw, 5rem); max-width: 1400px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 600; color: var(--color-rust); margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.4rem, 3vw + 1.6rem, 4.2rem); line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.hero__subtitle { font-size: 1.08rem; color: var(--text-muted); max-width: 56ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__media { position: relative; }
.hero__image { width: 100%; height: clamp(280px, 45vw, 480px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.hero__accent-card {
  position: absolute; left: -1rem; bottom: -1.4rem; background: var(--color-paper);
  border-radius: var(--radius-md); padding: 1.1rem 1.4rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem; max-width: 280px; border: 1px solid var(--color-line);
}
.hero__accent-card-icon { width: 42px; height: 42px; border-radius: var(--radius-full); background: var(--color-rust); color: var(--color-paper); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero__accent-card-text { font-size: .88rem; font-weight: 500; color: var(--color-ink); }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 0.85fr 1fr; }
}


.quickfacts { background: var(--color-ink); padding-block: clamp(2rem, 4vw, 3rem); }
.quickfacts__list { max-width: 1240px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.quickfacts__item { display: flex; flex-direction: column; gap: .35rem; border-left: 2px solid var(--color-rust); padding-left: 1rem; }
.quickfacts__value { color: var(--color-paper); font-size: 1.25rem; font-weight: 600; }
.quickfacts__label { color: rgba(247,242,234,.65); font-size: .85rem; }
@media (min-width: 800px) { .quickfacts__list { grid-template-columns: repeat(4, 1fr); } }


.editorial { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.editorial__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.editorial__image { width: 100%; height: clamp(260px, 32vw, 420px); object-fit: cover; }
.editorial__quote { font-size: 1.2rem; font-weight: 500; color: var(--color-ink); border-left: 3px solid var(--color-rust); padding-left: 1rem; margin-block: 1.2rem; }
.editorial__content p:not(.editorial__quote) { color: var(--text-muted); margin-bottom: 1rem; }
@media (min-width: 900px) { .editorial { grid-template-columns: 0.9fr 1fr; } }
.editorial:nth-of-type(even) .editorial__media { order: 2; }


.reasons__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.reason-card { background: var(--color-paper); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 2rem 1.75rem; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.reason-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.reason-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--color-ink); color: var(--color-paper); font-size: 1.3rem; margin-bottom: 1.2rem; }
.reason-card__title { font-size: 1.15rem; margin-bottom: .6rem; }
.reason-card__body { color: var(--text-muted); font-size: .95rem; }
@media (min-width: 700px) { .reasons__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .reasons__grid { grid-template-columns: repeat(4, 1fr); } }


.program__grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
@media (min-width: 900px) { .program__grid { grid-template-columns: repeat(2, 1fr); } }
.card-stack { position: relative; padding: 10px; }
.card-stack::before, .card-stack::after {
  content: ''; position: absolute; inset: 10px; background: var(--color-paper-alt);
  border: 1px solid var(--color-line); border-radius: var(--radius-md);
}
.card-stack::before { transform: rotate(-3deg) translate(8px, 10px); z-index: 1; }
.card-stack::after { transform: rotate(2deg) translate(-8px, 12px); z-index: 2; }
.card-stack__main {
  position: relative; z-index: 3; background: var(--color-paper); border-radius: var(--radius-md);
  border: 1px solid var(--color-line); overflow: hidden; box-shadow: var(--shadow-md);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card-stack:hover .card-stack__main { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.card-stack__image-wrap { position: relative; }
.card-stack__image { width: 100%; height: 230px; object-fit: cover; }
.card-stack__index { position: absolute; top: 1rem; right: 1rem; background: var(--color-rust); color: var(--color-paper); font-weight: 700; font-size: .95rem; padding: .4rem .8rem; border-radius: var(--radius-full); box-shadow: var(--shadow-sm); }
.card-stack__body { padding: 1.75rem; }
.card-stack__title { font-size: 1.3rem; margin-bottom: .7rem; }
.card-stack__text { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.1rem; }
.card-stack__topics { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .8rem; }
.card-stack__topic { font-size: .82rem; color: var(--color-ink); padding-left: 1.1rem; position: relative; }
.card-stack__topic::before { content: '\2013'; position: absolute; left: 0; color: var(--color-rust); font-weight: 700; }


.process__list { display: grid; grid-template-columns: 1fr; gap: 2.5rem; position: relative; }
.process__item { position: relative; padding-left: 4.5rem; }
.process__number { position: absolute; left: 0; top: 0; width: 3.4rem; height: 3.4rem; border-radius: var(--radius-full); background: var(--color-ink); color: var(--color-paper); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; box-shadow: var(--shadow-sm); }
.process__title { font-size: 1.15rem; margin-bottom: .4rem; }
.process__text { color: var(--text-muted); font-size: .93rem; }
@media (min-width: 900px) { .process__list { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; } .process__item { padding-left: 0; padding-top: 4.4rem; } .process__number { top: 0; left: 0; } }


.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.gallery__item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: block; transition: transform .3s ease, box-shadow .3s ease; }
.gallery__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery__image { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover .gallery__image { transform: scale(1.05); }
@media (min-width: 800px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }


.cta { text-align: center; }
.cta__inner { background: var(--color-ink); border-radius: var(--radius-lg); padding: clamp(2.5rem, 5vw, 4rem); box-shadow: var(--shadow-xl); }
.cta__title { color: var(--color-paper); font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem); max-width: 46ch; margin-inline: auto; margin-bottom: 1rem; }
.cta__text { color: rgba(247,242,234,.75); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }


.footer { background: var(--color-ink); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__inner { max-width: 760px; margin-inline: auto; padding-inline: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.footer__logo { display: flex; align-items: center; gap: .6rem; }
.footer__tagline { color: rgba(247,242,234,.7); max-width: 40ch; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: .5rem; }
.footer__link { color: rgba(247,242,234,.85); font-size: .92rem; }
.footer__link:hover { color: var(--color-rust); }
.footer__contact { display: flex; gap: .6rem; color: var(--color-paper); font-weight: 500; }
.footer__contact a:hover { color: var(--color-rust); }
.footer__divider { color: rgba(247,242,234,.4); }
.footer__address { color: rgba(247,242,234,.6); font-size: .88rem; }
.footer__legal { display: flex; gap: 1.2rem; margin-top: .5rem; }
.footer__legal a { color: rgba(247,242,234,.55); font-size: .82rem; }
.footer__legal a:hover { color: var(--color-rust); }
.footer__copyright { color: rgba(247,242,234,.4); font-size: .8rem; margin-top: .75rem; }


.page-hero { background: var(--color-ink); padding-top: clamp(7.5rem, 10vw, 10rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.page-hero__inner { max-width: 900px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.page-hero__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 600; color: var(--color-rust); margin-bottom: 1rem; }
.page-hero__title { color: var(--color-paper); font-size: clamp(2rem, 3vw + 1rem, 3.2rem); line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.01em; }
.page-hero__text { color: rgba(247,242,234,.75); max-width: 62ch; font-size: 1.02rem; }


.team__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.team-card { background: var(--color-paper); border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card__photo-wrap { overflow: hidden; }
.team-card__photo { width: 100%; height: 280px; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card__photo { transform: scale(1.04); }
.team-card__body { padding: 1.6rem; }
.team-card__name { font-size: 1.2rem; margin-bottom: .25rem; }
.team-card__role { color: var(--color-rust); font-size: .85rem; font-weight: 600; margin-bottom: .8rem; }
.team-card__bio { color: var(--text-muted); font-size: .92rem; margin-bottom: 1rem; }
.team-card__tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.team-card__tag { font-size: .75rem; background: var(--color-paper-alt); border: 1px solid var(--color-line); padding: .3rem .7rem; border-radius: var(--radius-full); color: var(--color-ink); }
@media (min-width: 800px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }


.steps__list { display: flex; flex-direction: column; gap: 1.75rem; max-width: 780px; }
.steps__item { display: flex; gap: 1.25rem; align-items: flex-start; }
.steps__marker { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: var(--radius-full); background: var(--color-rust); color: var(--color-paper); display: flex; align-items: center; justify-content: center; font-weight: 700; box-shadow: var(--shadow-sm); }
.steps__title { font-size: 1.1rem; margin-bottom: .3rem; }
.steps__text { color: var(--text-muted); font-size: .93rem; }


.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--color-line); }
.data-table { width: 100%; border-collapse: collapse; background: var(--color-paper); font-size: .92rem; min-width: 560px; }
.data-table th, .data-table td { text-align: left; padding: .95rem 1.2rem; border-bottom: 1px solid var(--color-line); }
.data-table thead th { background: var(--color-ink); color: var(--color-paper); font-weight: 600; }
.data-table tbody tr:hover { background: var(--color-paper-alt); }
.table-note { margin-top: 1rem; color: var(--text-muted); font-size: .88rem; max-width: 70ch; }


.faq { display: flex; flex-direction: column; gap: 1rem; max-width: 820px; }
.faq__item { background: var(--color-paper); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); }
.faq__question { cursor: pointer; font-weight: 600; color: var(--color-ink); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; color: var(--color-rust); font-size: 1.3rem; font-weight: 400; }
.faq__item[open] .faq__question::after { content: '\2212'; }
.faq__answer { color: var(--text-muted); font-size: .93rem; margin-top: .9rem; }


.location__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.location__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.location__image { width: 100%; height: clamp(260px, 34vw, 440px); object-fit: cover; }
.location__list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.location__item { display: flex; gap: .8rem; align-items: flex-start; color: var(--text-body); font-size: .95rem; }
.location__item i { color: var(--color-rust); margin-top: .2rem; }
@media (min-width: 900px) { .location__grid { grid-template-columns: 0.9fr 1fr; } }


.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--color-line); }
.map__frame { width: 100%; height: 400px; border: 0; display: block; }


.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.contact-card { background: var(--color-paper); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--shadow-md); }
.contact-card__title { font-size: 1.4rem; margin-bottom: .5rem; }
.contact-card__text { color: var(--text-muted); font-size: .92rem; margin-bottom: 1.6rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: .4rem; }
.contact-form__label { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.contact-form__input, .contact-form__textarea {
  border: 1.5px solid var(--color-line); border-radius: var(--radius-sm); padding: .8rem 1rem;
  background: var(--color-paper); color: var(--text-body); font-size: .95rem; transition: border-color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.contact-form__textarea { resize: vertical; min-height: 44px; }
.contact-form__input:focus, .contact-form__textarea:focus { outline: none; border-color: var(--color-rust); box-shadow: 0 0 0 4px rgba(201,80,46,.15); }
.contact-form__row--secondary { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin-top: .5rem; }
.contact-form__checkbox { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--text-muted); }
.contact-form__checkbox input { width: 20px; height: 20px; accent-color: var(--color-rust); }
.contact-form__note { font-size: .85rem; color: var(--color-rust-dark); margin-top: .8rem; }
@media (min-width: 900px) { .contact-form__row:not(.contact-form__row--secondary) { grid-template-columns: 0.8fr 1fr 1.4fr; } }

.contact-side__image-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 1.5rem; }
.contact-side__image { width: 100%; height: 220px; object-fit: cover; }
.contact-side__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-side__item { display: flex; gap: .8rem; align-items: center; font-size: .95rem; }
.contact-side__item i { color: var(--color-rust); width: 20px; }
@media (min-width: 900px) { .contact-section__grid { grid-template-columns: 1.3fr 0.9fr; } }


.urgent__inner { background: var(--color-paper-alt); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; gap: 1.5rem; align-items: flex-start; box-shadow: var(--shadow-sm); }
.urgent__icon { flex-shrink: 0; width: 3.2rem; height: 3.2rem; border-radius: var(--radius-full); background: var(--color-rust); color: var(--color-paper); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.urgent__title { font-size: 1.2rem; margin-bottom: .6rem; }
.urgent__text { color: var(--text-muted); font-size: .93rem; margin-bottom: 1rem; }
.urgent__contact { display: inline-flex; gap: .5rem; align-items: center; font-weight: 600; color: var(--color-ink); }
.urgent__contact:hover { color: var(--color-rust); }
@media (max-width: 600px) { .urgent__inner { flex-direction: column; } }


.thanks__inner { max-width: 640px; margin-inline: auto; text-align: center; padding-top: clamp(2rem, 4vw, 3rem); }
.thanks__title { font-size: clamp(1.6rem, 2vw + 1rem, 2.3rem); margin: 1rem 0; }
.thanks__text { color: var(--text-muted); margin-bottom: 1.75rem; }
.timeline { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.8rem; text-align: left; }
.timeline__item { display: flex; gap: 1.1rem; align-items: flex-start; }
.timeline__marker { flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: .95rem; box-shadow: var(--shadow-sm); }
.timeline__item--done .timeline__marker { background: var(--color-ink); color: var(--color-paper); }
.timeline__item--active .timeline__marker { background: var(--color-rust); color: var(--color-paper); }
.timeline__item--upcoming .timeline__marker { background: var(--color-paper-alt); color: var(--text-muted); border: 1px solid var(--color-line); }
.timeline__title { font-size: 1.05rem; margin-bottom: .2rem; }
.timeline__item--upcoming .timeline__title, .timeline__item--upcoming .timeline__text { color: var(--text-muted); opacity: .7; }
.timeline__text { font-size: .88rem; color: var(--text-muted); }


.legal__inner { max-width: 820px; margin-inline: auto; }
.legal__main-title { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem); margin-bottom: 1.5rem; }
.legal__title { font-size: 1.2rem; margin-top: 2.2rem; margin-bottom: .8rem; color: var(--color-ink); }
.legal__inner p { color: var(--text-body); margin-bottom: 1rem; font-size: .96rem; }
.legal__dl { display: flex; flex-direction: column; gap: 1rem; margin: 1.2rem 0; }
.legal__dl dt { font-weight: 700; color: var(--color-rust); }
.legal__dl dd { margin: 0; color: var(--text-muted); font-size: .93rem; }


.cookie-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 400; background: var(--color-ink);
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.77,0,.18,1);
  box-shadow: var(--shadow-lg);
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner { max-width: 1300px; margin-inline: auto; padding: 1rem clamp(1.25rem, 4vw, 2.5rem); display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.cookie-banner__text { color: rgba(247,242,234,.85); font-size: .85rem; max-width: 640px; }
.cookie-banner__text a { color: var(--color-paper); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 700px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; } .cookie-banner__actions { justify-content: stretch; } .cookie-banner__actions .btn { flex: 1; } }


.cookie-modal { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.cookie-modal--open { display: flex; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(23,26,33,.65); backdrop-filter: blur(2px); }
.cookie-modal__dialog { position: relative; background: var(--color-paper); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); max-width: 560px; width: 100%; box-shadow: var(--shadow-xl); max-height: 85vh; overflow-y: auto; }
.cookie-modal__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.cookie-modal__header h2 { font-size: 1.3rem; }
.cookie-modal__close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-full); background: var(--color-paper-alt); }
.cookie-modal__close:hover { background: var(--color-rust); color: var(--color-paper); }
.cookie-modal__category { border-top: 1px solid var(--color-line); padding-block: 1rem; }
.cookie-modal__category-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: .4rem; }
.cookie-modal__category input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--color-rust); }
.cookie-modal__category p { color: var(--text-muted); font-size: .85rem; margin: 0; }
.cookie-modal__footer { display: flex; gap: .8rem; justify-content: flex-end; margin-top: 1.5rem; flex-wrap: wrap; }


@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}
@media (min-width: 901px) {
  .mobile-menu, .menu-toggle { display: none !important; }
}


img, .hero__image, .editorial__image, .card-stack__image, .gallery__image, .team-card__photo, .location__image, .contact-side__image { display: block; }
.section--no-top { padding-top: 0; }