:root {
  --primary: #6b1f2f;
  --primary-dark: #46101c;
  --primary-soft: rgba(107, 31, 47, 0.08);
  --ink: #111012;
  --ink-soft: #4a4448;
  --paper: #ffffff;
  --paper-soft: #f7f2ee;
  --line: rgba(17, 16, 19, 0.12);
  --shadow: 0 24px 60px rgba(12, 10, 12, 0.12);
  --max: 1320px;
  --header-height: 92px;
  --font-sans: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 85% -10%, rgba(107, 31, 47, 0.12), transparent 60%),
    radial-gradient(720px 320px at 10% 15%, rgba(17, 16, 19, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(107, 31, 47, 0.04), rgba(107, 31, 47, 0) 35%),
    var(--paper);
  line-height: 1.6;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

section {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin: 0 0 10px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 18px;
}

.h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 0 0 12px;
}

.h2--light {
  color: #fff;
}

.h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
}

.h3--light {
  color: #fff;
}

.p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.p--light {
  color: rgba(255, 255, 255, 0.85);
}

.p.small {
  font-size: 13px;
}

.subtle {
  opacity: 0.75;
}

.text-link {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  border-bottom: 1px solid rgba(107, 31, 47, 0.4);
  padding-bottom: 2px;
  color: var(--primary);
}

.text-link--light {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.text-link:hover {
  border-bottom-color: rgba(107, 31, 47, 0.9);
}

.text-link--light:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.12);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  --header-ink: #fff;
  --header-line: rgba(255, 255, 255, 0.4);
  color: var(--header-ink);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.site-header.is-scrolled {
  --header-ink: var(--ink);
  --header-line: var(--line);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
}

.brand__text {
  display: grid;
  gap: 4px;
  color: var(--header-ink);
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand__tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--header-ink);
}

.site-nav a {
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-bottom-color: var(--header-line);
}

.site-nav .btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 10px 18px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--header-line);
  background: transparent;
  color: var(--header-ink);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle__icon {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

body.nav-open .nav-toggle__icon {
  background: transparent;
}

body.nav-open .nav-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(620px, 100vh, 960px);
  margin-top: calc(var(--header-height) * -1);
  --hero-focus-y: 12%;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 45%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 2;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("assets/RTL_LUX_TurczerJózsef2602.jpg");
  background-size: cover;
  background-position: 50% var(--hero-focus-y, 0%);
  filter: saturate(0.9) contrast(1.02);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 31, 47, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 170px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.hero__text {
  max-width: 560px;
}

.lead {
  font-size: 17px;
}

.lead--light {
  color: rgba(255, 255, 255, 0.85);
}

.hero__note {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hero__actions li {
  min-width: 190px;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.hero__motifs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(320px, 100%);
}

.motif-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.motif-card__label {
  color: rgba(255, 255, 255, 0.75);
}

.motif {
  width: 72px;
  height: 72px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.motif__line {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: motif-draw 10s ease-in-out infinite;
}

.motif__line.line-2 {
  animation-delay: 0.2s;
}

.motif__line.line-3 {
  animation-delay: 0.4s;
}

.motif__line.line-4 {
  animation-delay: 0.6s;
}

.motif__line.line-5 {
  animation-delay: 0.8s;
}

.motif__window {
  fill: currentColor;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: motif-pop 10s ease-in-out infinite;
}

.motif__window.window-1 {
  animation-delay: 0.7s;
}

.motif__window.window-2 {
  animation-delay: 1s;
}

.motif__dot {
  fill: currentColor;
}

.motif__pulse {
  fill: none;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1.4;
  transform-box: fill-box;
  transform-origin: center;
  animation: motif-pulse 6s ease-out infinite;
  opacity: 0;
}

.motif__pulse--delay {
  animation-delay: 1.8s;
}

@keyframes motif-draw {
  0% {
    stroke-dashoffset: 220;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  38% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes motif-pop {
  0%,
  32% {
    opacity: 0;
    transform: scale(0.6);
  }
  44% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes motif-pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.4);
  }
  60% {
    opacity: 0;
    transform: scale(2.4);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

/* Sections */

.section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.section--image {
  position: relative;
  padding: 180px 0;
  --about-focus-y: 8%;
  color: #fff;
  border-top: none;
}

.section--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 31, 47, 0.78) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.section__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
  z-index: 0;
}

.section__media--about {
  background-image: url("assets/RTL_LUX_TurczerJózsef2129.jpg");
  background-position: 50% var(--about-focus-y, 0%);
}

.section--about {
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.about__content {
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 18px;
}

.about__stat {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}

.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: none;
}

.about__stat-label {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
}

.about__list {
  margin: 0 0 18px;
}

.about__list strong {
  color: var(--ink);
  font-weight: 600;
}

.about__figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.about__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about__figure figcaption {
  padding: 12px 16px 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section__content {
  position: relative;
  z-index: 2;
}

.section__content--center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section--primary {
  position: relative;
  background: linear-gradient(135deg, #6b1f2f 0%, #57202c 50%, #45101c 100%);
  color: #fff;
  border-top: none;
  overflow: hidden;
}

.section--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 15% 10%, rgba(255, 255, 255, 0.16), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.section--primary::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -20px;
  width: 260px;
  height: 260px;
  background: url("assets/tg_without_background_logo.png") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.section--primary > .container {
  position: relative;
  z-index: 1;
}

.section--soft {
  background: var(--paper-soft);
}

.section--press {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f0ec 100%);
}

.section--press::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 85% 20%, rgba(107, 31, 47, 0.1), transparent 60%);
  opacity: 0.32;
  pointer-events: none;
}

.section--press > .container {
  position: relative;
  z-index: 1;
}

.press {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.press__media {
  position: relative;
  border: 1px solid rgba(17, 16, 19, 0.1);
  box-shadow: var(--shadow);
  background: #fff;
}

.press__media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(107, 31, 47, 0.2);
  pointer-events: none;
}

.press__media img {
  width: 100%;
  height: auto;
  display: block;
}

.press__media figcaption {
  padding: 12px 16px 16px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.press__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.press__signature img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.16));
}

.section__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section__head--light {
  align-items: flex-end;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 40px rgba(12, 10, 12, 0.1);
}

.card--light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

.split--reverse > :last-child {
  order: 1;
}

.split__image img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.list li {
  margin: 8px 0;
}

.list--light {
  color: rgba(255, 255, 255, 0.88);
}

.list--light strong {
  color: #fff;
}

.list--icon {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 10px;
}

.list--icon li {
  position: relative;
  padding-left: 28px;
  margin: 0;
}

.list--icon li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    rgba(255, 255, 255, 0.16)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0%200%2024%2024'%3E%3Cpath d='M20%206L9%2017l-5-5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.services-list {
  column-count: 2;
  column-gap: 32px;
}

.services-list li {
  break-inside: avoid;
  margin-bottom: 16px;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 40px rgba(12, 10, 12, 0.1);
  position: relative;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(107, 31, 47, 0.18);
  pointer-events: none;
}

.panel--accent {
  border-color: rgba(107, 31, 47, 0.24);
  background: linear-gradient(180deg, rgba(107, 31, 47, 0.08), #fff 60%);
}

.panel__kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 14px;
}

.kpi {
  padding: 12px;
  border: 1px solid rgba(107, 31, 47, 0.18);
  background: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
}

.kpi__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: none;
}

.kpi__label {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
}

.panel--outlined {
  border-color: rgba(107, 31, 47, 0.3);
}

.panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.panel__list span {
  border: 1px solid rgba(107, 31, 47, 0.28);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section--sales {
  background: var(--paper);
}

.sales__steps {
  display: grid;
  gap: 14px;
  margin: 24px 0 20px;
}

.sales__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 24px rgba(12, 10, 12, 0.08);
}

.sales__step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 31, 47, 0.3);
  color: var(--primary);
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
}

.sales__outcome {
  padding: 16px 18px;
  border-left: 2px solid var(--primary);
  background: var(--paper-soft);
}

.sales__outcome-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.sales__outcome-text {
  margin: 0;
  color: var(--ink);
}

.section--investment {
  background: var(--paper);
}

.investment {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

.investment--reverse > :first-child {
  order: 2;
}

.investment--reverse > :last-child {
  order: 1;
}

.investment__content {
  max-width: 560px;
}

.investment__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.investment__note {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.investment__cards {
  display: grid;
  gap: 16px;
}

.investment-card {
  position: relative;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 30px rgba(12, 10, 12, 0.08);
}

.investment-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: rgba(107, 31, 47, 0.4);
}

.investment-card__title {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.success__tags {
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* Contact */

.section--contact {
  background: var(--paper-soft);
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0;
}

.contact__address {
  font-style: normal;
  margin: 18px 0;
  padding: 16px 18px;
  border-left: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact__address a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(107, 31, 47, 0.4);
}

.form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(17, 16, 19, 0.2);
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(107, 31, 47, 0.5);
  box-shadow: 0 0 0 3px rgba(107, 31, 47, 0.15);
}

/* Footer */

.footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  opacity: 0.85;
}

.footer__sep {
  opacity: 0.5;
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1100px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__aside {
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__actions li {
    min-width: auto;
  }

  .hero__motifs {
    width: min(360px, 100%);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    color: var(--ink);
    padding: 18px 16px;
    border: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid transparent;
  }

  .site-nav .btn {
    width: 100%;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .services-list {
    column-count: 1;
  }

  .press {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .panel__kpis {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investment {
    grid-template-columns: 1fr;
  }

  .investment--reverse > :first-child,
  .investment--reverse > :last-child {
    order: initial;
  }

  .split--reverse > :first-child,
  .split--reverse > :last-child {
    order: initial;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .hero__content {
    padding: 120px 0 48px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions li {
    width: 100%;
  }

  .hero__motifs {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .motif-card {
    min-height: 130px;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section--image {
    padding: 120px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motif__line,
  .motif__window,
  .motif__pulse {
    animation: none;
  }

  .motif__line {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .motif__window,
  .motif__pulse {
    opacity: 1;
    transform: none;
  }
}
