/* Exoteak — website UI kit styles */

body { overflow-x: hidden; }

.exo-site {
  background: var(--bg-page);
  color: var(--text-body);
  min-height: 100vh;
}

/* ── Container ─────────────────────────────────────────────────── */
.exo-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ── Header ────────────────────────────────────────────────────── */
.exo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: 6px var(--gutter);
  background: oklch(98% 0.01 80 / 0.85);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  border-bottom: 1px solid var(--border-hair);
}
.exo-header__brand { display: flex; align-items: center; }
.exo-header__brand img { height: 58px; width: auto; }
.exo-header__nav {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
}
.exo-header__nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-body);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.exo-header__nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--wood-700);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-sm) var(--ease-out);
}
.exo-header__nav a:hover { color: var(--wood-700); text-decoration: none; }
.exo-header__nav a:hover::after { transform: scaleX(1); }
.exo-header__cta { display: flex; align-items: center; gap: var(--space-4); justify-self: end; }
.exo-header__lang { display: flex; align-items: center; gap: 4px; margin-right: 4px; }
.exo-header__lang-link {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 3px 5px; border-radius: var(--radius-sm);
  transition: color var(--dur-sm) var(--ease-out);
}
.exo-header__lang-link:hover { color: var(--text-body); }
.exo-header__lang-link.is-active { color: var(--wood-700); font-weight: 700; }
.exo-header__lang-sep { color: var(--border-subtle); font-size: 13px; user-select: none; }
.exo-header__phone {
  font-family: var(--font-display); font-size: 16px;
  color: var(--text-strong); letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .exo-header__phone { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────── */
.exo-hero {
  position: relative;
  min-height: 760px;
  padding: 60px var(--gutter) 60px;
  color: var(--text-on-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
}
.exo-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: oklch(15% 0.03 38);
}
.exo-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
}
/* subtle scrim — text legibility without hiding the photo */
.exo-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    oklch(12% 0.04 40 / 0.72) 0%,
    oklch(12% 0.04 40 / 0.30) 55%,
    transparent 100%
  );
  z-index: 1;
}
@media (max-width: 900px) {
  .exo-hero__photo { display: none; }
  .exo-hero__bg { background: oklch(15% 0.03 38); }
}
.exo-hero__grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(95deg,
      transparent 0px, transparent 2px,
      oklch(20% 0.04 40 / 0.18) 2px, oklch(20% 0.04 40 / 0.18) 3px),
    repeating-linear-gradient(92deg,
      transparent 0px, transparent 9px,
      oklch(40% 0.05 50 / 0.06) 9px, oklch(40% 0.05 50 / 0.06) 11px);
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.exo-hero__inner {
  position: relative; z-index: 1;
  max-width: 880px;
  display: flex; flex-direction: column; gap: 22px;
}
.exo-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--parchment-50);
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exo-hero__title > span { display: block; }
.exo-hero__title em {
  font-style: italic;
  color: var(--brass-300);
  font-weight: 300;
  letter-spacing: 0;
  line-height: inherit;
}
.exo-hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 540px;
}
.exo-hero__cta { display: flex; gap: var(--space-3); margin-top: 16px; flex-wrap: wrap; }

.exo-hero__meta {
  position: relative; z-index: 1;
  display: grid;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 0 calc(-1 * var(--gutter));
  padding: 36px var(--gutter);
  border-top: 1px solid oklch(45% 0.04 45);
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: -60px;
}
.exo-hero__meta > div { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.exo-hero__pict {
  display: block;
  width: 64px; height: 64px;
  background-color: var(--brass-300);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.exo-hero__num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1;
  color: var(--brass-300);
  font-weight: 300;
}
.exo-hero__lbl {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-300);
  line-height: 1.25;
}

/* ── Section base ──────────────────────────────────────────────── */
.exo-section {
  padding: 60px var(--gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}
.exo-section__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--space-4);
  margin-bottom: 64px;
}
.exo-section__head--left {
  align-items: flex-start;
  text-align: left;
}
.exo-section__head h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  max-width: 760px;
}
.exo-section__head h2 em {
  color: var(--text-accent);
  font-style: italic;
}
.exo-section__lede {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Applications ──────────────────────────────────────────────── */
.exo-apps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.exo-apps__card {
  display: flex; flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-md) var(--ease-out),
              box-shadow var(--dur-md) var(--ease-out);
}
.exo-apps__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.exo-apps__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(30% 0.06 40) 0%, oklch(20% 0.04 40) 100%);
}
.exo-apps__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-md) var(--ease-out);
}
.exo-apps__card:hover .exo-apps__img img { transform: scale(1.03); }
.exo-apps__body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.exo-apps__body h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.exo-apps__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Feature variant: centered pictogram + title */
.exo-apps__img--icon {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 28px;
}
.exo-apps__pict {
  display: block;
  width: clamp(72px, 12vw, 120px);
  aspect-ratio: 1;
  background-color: var(--brass-400);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  transition: transform var(--dur-md) var(--ease-out);
}
.exo-apps__card--feature:hover .exo-apps__pict { transform: scale(1.06); }
.exo-apps__card--feature .exo-apps__body {
  align-items: center;
  text-align: center;
  padding: 20px 24px 32px;
}
.exo-apps__card--feature .exo-apps__body h3 {
  font-size: 24px;
}

/* ── Characteristics ───────────────────────────────────────────── */
.exo-chars {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
.exo-chars__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.exo-chars__item {
  display: block;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--border-hair);
}
.exo-chars__item:last-child { border-bottom: 1px solid var(--border-hair); }
.exo-chars__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--brass-500);
  font-style: italic;
  line-height: 1;
}
.exo-chars__item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
}
.exo-chars__item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 60ch;
}

/* ── About ─────────────────────────────────────────────────────── */
.exo-about {
  background: var(--surface-warm);
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.exo-about > * { max-width: var(--container-max); margin-left: auto; margin-right: auto; }
.exo-about__steps {
  list-style: none; margin: 0 auto; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  position: relative;
}
.exo-about__step {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px 16px;
  align-items: center;
  text-align: center;
}
.exo-about__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--wood-500);
  width: 56px; height: 56px;
  border: 1px solid var(--wood-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-page);
  line-height: 1;
  margin: 0 auto;
}
.exo-about__body h3 {
  font-size: 22px; font-weight: 400; margin-bottom: 6px; text-align: center;
}
.exo-about__body p {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
  max-width: 28ch; margin: 0 auto;
}
.exo-about__line {
  position: absolute;
  top: 52px; left: calc(50% + 34px); right: -10px;
  height: 1px; background: var(--wood-300);
  opacity: 0.6;
}
.exo-about__prose {
  max-width: var(--container-max);
  margin: 80px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border-hair);
  text-align: center;
}
.exo-about__prose h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 28px;
}
.exo-about__prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0 auto 20px;
}
.exo-about__prose p:last-child { margin-bottom: 0; }

/* ── Gallery ───────────────────────────────────────────────────── */
.exo-gallery__masonry {
  columns: 3 300px;
  column-gap: var(--space-5);
}
.exo-gallery__item {
  margin: 0 0 var(--space-5);
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface-warm);
  box-shadow: var(--shadow-sm);
}
.exo-gallery__item img {
  width: 100%;
  display: block;
  transition: transform var(--dur-md) var(--ease-out);
}
.exo-gallery__item:hover img { transform: scale(1.03); }
.exo-gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--parchment-50);
  background: linear-gradient(180deg, transparent 0%, oklch(15% 0.03 38 / 0.75) 100%);
  opacity: 0;
  transition: opacity var(--dur-md) var(--ease-out);
}
.exo-gallery__item:hover figcaption { opacity: 1; }

.exo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(14% 0.025 38 / 0.94);
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  padding: 24px;
}
.exo-lightbox__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.exo-lightbox__stage img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.exo-lightbox__stage figcaption {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--parchment-200);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.exo-lightbox__count {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--brass-300);
  letter-spacing: 0.05em;
}
.exo-lightbox__btn {
  font: inherit;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid oklch(60% 0.03 50 / 0.5);
  background: transparent;
  color: var(--parchment-100);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  transition: background var(--dur-sm) var(--ease-out), border-color var(--dur-sm) var(--ease-out);
}
.exo-lightbox__btn:hover { background: oklch(30% 0.04 45); border-color: var(--brass-400); }
.exo-lightbox__btn--close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
}
@media (max-width: 700px) {
  .exo-lightbox { grid-template-columns: 48px 1fr 48px; padding: 12px; }
  .exo-lightbox__btn { width: 42px; height: 42px; }
}

/* ── Contact ───────────────────────────────────────────────────── */
.exo-contact {
  background: var(--wood-800);
  color: var(--text-on-dark);
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px var(--gutter);
  position: relative;
  overflow: hidden;
}
.exo-contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, oklch(40% 0.08 50 / 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.exo-contact__inner {
  position: relative;
  max-width: var(--container-max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-16);
  align-items: start;
}
.exo-contact__info h2 {
  color: var(--text-on-dark);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400; line-height: 1.1;
  margin: 14px 0 18px;
}
.exo-contact__info h2 em { color: var(--brass-300); font-style: italic; }
.exo-contact__lede {
  font-size: 17px;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
  max-width: 460px;
}
.exo-contact__details {
  margin: 56px 0 0; padding: 36px 0 0;
  border-top: 1px solid oklch(45% 0.04 45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.exo-contact__details > div { display: flex; flex-direction: column; gap: 6px; }
.exo-contact__details dt {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
}
.exo-contact__details dd {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}
.exo-contact__details dd a {
  color: #fff;
}

.exo-contact__form { display: flex; flex-direction: column; gap: var(--space-4); }
.exo-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.exo-contact__full { grid-column: 1 / -1; }
.exo-contact__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.exo-chip {
  font: inherit;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur-sm) var(--ease-out);
}
.exo-chip:hover { color: var(--wood-700); border-color: var(--wood-500); }
.exo-chip.is-on {
  background: var(--wood-700);
  color: var(--parchment-50);
  border-color: var(--wood-700);
}
.exo-contact__submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: 8px;
  flex-wrap: wrap;
}
.exo-contact__legal {
  font-size: 12px;
  color: var(--text-quiet);
  max-width: 320px;
}
.exo-contact__legal a { color: var(--text-accent); }
.exo-contact__sent {
  position: relative;
  max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.exo-contact__sent h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 400; }

/* ── Footer ────────────────────────────────────────────────────── */
.exo-footer {
  background: var(--wood-800);
  color: var(--text-on-dark);
  padding: 0;
}
.exo-footer__top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 28px var(--gutter) 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  border-top: 1px solid oklch(35% 0.04 45);
}
.exo-footer__brand img {
  height: 42px;
  width: auto;
}
.exo-footer__brand p {
  font-size: 14px;
  color: var(--text-on-dark-muted);
  max-width: 280px;
  line-height: 1.55;
}
.exo-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.exo-footer__cols h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-400);
  margin: 0 0 14px;
}
.exo-footer__cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.exo-footer__cols li {
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
}
.exo-footer__cols li a {
  color: #fff;
}
.exo-footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  border-top: 1px solid oklch(35% 0.04 45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.04em;
}
.exo-footer__bottom a { color: var(--text-on-dark-muted); }
.exo-footer__bottom a:hover { color: var(--brass-400); }
.exo-footer__legal { display: flex; align-items: center; gap: 18px; }
.exo-footer__social { display: inline-flex; align-items: center; justify-content: center; color: var(--text-on-dark-muted); transition: color .2s ease; }
.exo-footer__social:hover { color: var(--brass-400); }
.exo-footer__tag {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
}
@media (max-width: 700px) {
  .exo-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .exo-footer__tag { order: 3; }
}

/* ── Toast notifications ───────────────────────────────────────── */
.exo-toast {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md, 8px);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  max-width: 440px;
  pointer-events: auto;
}
.exo-toast--success {
  background: var(--wood-800, #2a1a0e);
  color: var(--brass-200, #e6d4a8);
  border-left: 4px solid var(--brass-400, #c9a36a);
}
.exo-toast--error {
  background: #4a1518;
  color: #fcd5d5;
  border-left: 4px solid #e05252;
}
.exo-toast__close {
  background: none; border: none;
  color: inherit; opacity: 0.55;
  font-size: 20px; cursor: pointer;
  padding: 0; line-height: 1;
  margin-left: auto; flex-shrink: 0;
}
.exo-toast__close:hover { opacity: 1; }
[x-cloak] { display: none !important; }

/* ── Field validation ──────────────────────────────────────────── */
.exo-input.is-error,
.exo-textarea.is-error {
  border-color: #e05252 !important;
  box-shadow: 0 0 0 2px rgba(224,82,82,0.18);
}
.exo-field__error {
  display: block;
  font-size: 13px;
  color: #e05252;
  margin-top: 4px;
  font-family: var(--ff-body);
  line-height: 1.3;
}

/* ── Submit button states ──────────────────────────────────────── */
.exo-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 600px) {
  .exo-toast { left: 12px; right: 12px; max-width: none; top: 12px; }
}

/* ── Responsive softening ──────────────────────────────────────── */
/* ── Hamburger + mobile drawer ──────────────────── */
.exo-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 9px;
  background: transparent;
  border: none;
  cursor: pointer;
  justify-self: end;
}
.exo-burger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--text-strong);
  border-radius: 2px;
}
.exo-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}
.exo-drawer.is-open { visibility: visible; pointer-events: auto; }
.exo-drawer__overlay {
  position: absolute; inset: 0;
  background: oklch(15% 0.03 38 / 0.5);
  opacity: 0;
  transition: opacity var(--dur-md) var(--ease-out);
}
.exo-drawer.is-open .exo-drawer__overlay { opacity: 1; }
.exo-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: oklch(98% 0.01 80);
  box-shadow: -12px 0 40px oklch(15% 0.03 38 / 0.25);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: calc(var(--space-8) + 12px) var(--space-8) var(--space-8) var(--space-10);
  transform: translateX(100%);
  transition: transform var(--dur-md) var(--ease-out);
  overflow-y: auto;
}
.exo-drawer.is-open .exo-drawer__panel { transform: translateX(0); }
.exo-drawer__close {
  position: absolute; top: 14px; right: 16px;
  width: 40px; height: 40px;
  font-size: 30px; line-height: 1;
  color: var(--text-strong);
  background: transparent; border: none; cursor: pointer;
}
.exo-drawer__nav { display: flex; flex-direction: column; gap: var(--space-2); }
.exo-drawer__nav a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-strong);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-hair);
}
.exo-drawer__nav a:hover { color: var(--wood-700); }
.exo-drawer__lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 15px;
}
.exo-drawer__lang .exo-header__lang-link { font-size: 15px; padding: 4px 8px; }

@media (max-width: 900px) {
  .exo-header__nav { display: none; }
  .exo-header__cta { display: none; }
  .exo-burger { display: flex; }
  .exo-header { grid-template-columns: auto 1fr; }
  .exo-hero__meta { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .exo-apps__grid { grid-template-columns: 1fr; }
  .exo-chars { grid-template-columns: 1fr; }
  .exo-about__steps { grid-template-columns: 1fr; }
  .exo-about__line { display: none; }
  .exo-contact__inner { grid-template-columns: 1fr; }
  .exo-contact__details { grid-template-columns: 1fr; }
  .exo-footer__top { grid-template-columns: 1fr; }
  .exo-footer__cols { grid-template-columns: repeat(2, 1fr); }
  .exo-section__head h2 { padding: 0 var(--space-4); }
  /* Logo skaluje się do szerokości, bez sztywnej wysokości */
  .exo-header__brand img {
    height: auto;
    width: 100%;
    max-width: 180px;
  }
  .exo-footer__brand img {
    height: auto;
    width: 100%;
    max-width: 160px;
  }
  .exo-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
}
