@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171719;
  --ink-soft: #404044;
  --paper: #f7f5f2;
  --paper-deep: #ece9e4;
  --white: #ffffff;
  --red: #c62d26;
  --red-dark: #95231e;
  --red-soft: #f5e6e3;
  --stone: #9b9995;
  --line: #dad6d0;
  --shadow-sm: 0 10px 30px rgba(23, 23, 25, 0.08);
  --shadow-lg: 0 25px 70px rgba(23, 23, 25, 0.16);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section--compact {
  padding-block: clamp(58px, 8vw, 92px);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.lead {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(18px);
  transition: height 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom-color: rgba(23, 23, 25, 0.08);
  box-shadow: 0 8px 30px rgba(23, 23, 25, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 138px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  margin-left: 30px;
}

.nav-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-toggle-lines {
  display: grid;
  gap: 5px;
  width: 25px;
}

.nav-toggle-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--ink) url("/assets/img/hero-bridge.webp") center 58% / cover no-repeat;
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 16, 0.84) 0%, rgba(14, 14, 16, 0.42) 55%, rgba(14, 14, 16, 0.2) 100%),
    linear-gradient(0deg, rgba(14, 14, 16, 0.48) 0%, transparent 55%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 110px 138px;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy h1 {
  max-width: 790px;
  margin-bottom: 28px;
}

.hero-copy h1 span {
  color: #ff817a;
}

.hero-copy > p {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 42px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.stats-strip {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.stat {
  min-height: 145px;
  padding: 30px 38px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.intro-grid h2 {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.intro-copy p {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.intro-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 1.78rem);
  line-height: 1.5;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  position: relative;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.pillar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.pillar-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 12, 13, 0.9) 0%, rgba(12, 12, 13, 0.08) 68%);
  content: "";
}

.pillar-card:hover img {
  transform: scale(1.035);
}

.pillar-content {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.pillar-number {
  display: block;
  margin-bottom: 12px;
  color: #ff817a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.pillar-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.pillar-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.offer-card .tag {
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 600;
}

.offer-card h3 {
  max-width: 520px;
  margin: 34px 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.offer-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.offer-card .text-link {
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-step {
  padding: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-step span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ff817a;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.about-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50% 50% 0 0;
  background: var(--red);
  content: "";
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.about-copy .lead {
  margin-bottom: 28px;
}

.about-copy p:not(.lead) {
  color: var(--ink-soft);
}

.cta-band {
  padding-block: clamp(70px, 9vw, 112px);
  background: var(--red);
  color: var(--white);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.subhero {
  position: relative;
  display: grid;
  min-height: 620px;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.subhero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 14, 16, 0.9) 0%, rgba(14, 14, 16, 0.52) 56%, rgba(14, 14, 16, 0.18) 100%);
  content: "";
}

.subhero--business { background-image: url("/assets/img/structure.webp"); }
.subhero--private { background-image: url("/assets/img/people.webp"); }
.subhero--contact { background-image: url("/assets/img/hero-bridge.webp"); }
.subhero--legal { background-image: url("/assets/img/change.webp"); }

.subhero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
}

.subhero-inner h1 {
  max-width: 870px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.subhero-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card-image {
  height: 300px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.035);
}

.service-card-content {
  padding: clamp(28px, 4vw, 44px);
}

.service-card h2,
.service-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.service-card .service-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 15px;
  height: 9px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
  content: "";
  transform: rotate(-45deg);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 110px);
  align-items: center;
}

.manifesto-quote {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.manifesto-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.private-offers {
  display: grid;
  gap: 32px;
}

.private-offer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.private-offer:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.private-offer:nth-child(even) .private-offer-image {
  order: 2;
}

.private-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-offer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.private-offer-content h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.disclaimer {
  display: flex;
  gap: 18px;
  padding: 25px 28px;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--red-soft);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.about-hero {
  padding: calc(var(--header-height) + 90px) 0 100px;
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 9vw, 110px);
  align-items: center;
}

.about-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.about-hero h1 span {
  color: var(--red);
}

.about-hero-image {
  position: relative;
  padding: 24px 24px 0 0;
}

.about-hero-image::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 68%;
  height: 46%;
  border-radius: 220px 220px 0 0;
  background: var(--red);
  content: "";
}

.about-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
}

.prose {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.prose p {
  margin-bottom: 1.35em;
}

.prose strong {
  color: var(--ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.value-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.value-card h3 {
  margin: 22px 0 15px;
}

.value-card ul {
  padding-left: 18px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(50px, 9vw, 110px);
  align-items: start;
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-form-wrap > p {
  margin-bottom: 34px;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 190px;
  padding: 15px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-block: 4px 6px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.form-check input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--red);
}

.form-check a {
  color: var(--red-dark);
}

.field-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  padding: 16px 18px;
  margin-bottom: 24px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-status--success {
  border: 1px solid #9cc6a8;
  background: #e8f5eb;
  color: #235d32;
}

.form-status--error {
  border: 1px solid #e1aaa6;
  background: #fff0ef;
  color: #81231d;
}

.form-status ul {
  margin: 0;
  padding-left: 20px;
}

.contact-card {
  position: sticky;
  top: 112px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.contact-card h2 {
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-method {
  display: block;
  padding-block: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-method span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: 1rem;
  font-weight: 500;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal-nav strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--red);
}

.legal-content section {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--red-dark);
}

.not-found {
  display: grid;
  min-height: 75svh;
  padding: calc(var(--header-height) + 80px) 0 90px;
  place-items: center;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--red);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 1;
}

.not-found h1 {
  margin: 18px 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 170px;
  margin-bottom: 22px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: var(--white);
}

.site-footer address {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  margin-left: 22px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1020px) {
  :root { --header-height: 80px; }

  .site-nav ul { gap: 18px; }
  .header-cta { margin-left: 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .intro-grid { gap: 60px; }
  .pillar-card { min-height: 420px; }
  .service-card-image { height: 250px; }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 12px;
  }

  .header-cta {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    height: calc(100svh - var(--header-height));
    padding: 42px 20px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    align-content: start;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    display: block;
    padding: 17px 2px;
    font-size: 1.2rem;
  }

  .site-nav a::after { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid h2 { position: static; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 500px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 360px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding-inline: 0; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-image { max-width: 560px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 30px; }
  .cta-band-inner .button { justify-self: start; }
  .service-grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .private-offer,
  .private-offer:nth-child(even) { grid-template-columns: 1fr; }
  .private-offer:nth-child(even) .private-offer-image { order: 0; }
  .private-offer-image { height: 370px; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-image { max-width: 580px; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container,
  .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .header-cta { display: none; }
  .brand img { width: 123px; }
  .nav-toggle { margin-left: auto; }
  .home-hero { min-height: 790px; }
  .hero-inner { padding-block: 90px 120px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-note { right: 14px; left: 14px; bottom: 28px; }
  .stats-strip { margin-top: -35px; }
  .stat { padding: 25px 28px; }
  .pillar-card { min-height: 430px; }
  .about-image::before { right: 0; }
  .section-heading { margin-bottom: 40px; }
  .service-card-image { height: 220px; }
  .private-offer-image { height: 280px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom a { margin: 0 20px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
