:root {
  --paper: #f5f3ee;
  --paper-2: #ece9e1;
  --white: #ffffff;
  --ink: #0e0e10;
  --ink-2: #16161a;
  --ink-3: #1f1f24;
  --muted: #6d6d74;
  --muted-2: #9a9aa1;
  --red: #e2001a;
  --red-dark: #b30014;
  --line: rgba(14, 14, 16, 0.12);
  --line-strong: rgba(14, 14, 16, 0.22);
  --line-light: rgba(255, 255, 255, 0.14);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(14, 14, 16, 0.05), 0 18px 40px -24px rgba(14, 14, 16, 0.25);
  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

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

.section--ink {
  background: var(--ink);
  color: #fff;
}

.section--ink .muted,
.section--ink p {
  color: rgba(255, 255, 255, 0.66);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.h1 {
  font-size: clamp(3rem, 9.5vw, 8rem);
}

.h2 {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
}

.h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.h4 {
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
  font-family: var(--font-display);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.h1-dot {
  color: var(--red);
}

.mt-sm {
  margin-top: 1.25rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 2rem;
}

.mt-xl {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: pretty;
}

.muted {
  color: var(--muted);
}

p + p {
  margin-top: 1.1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  flex: none;
}

.eyebrow__num {
  color: var(--red);
}

.section--ink .eyebrow {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn svg {
  flex: none;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

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

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

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

.btn--ink:hover {
  background: var(--ink-3);
  transform: translateY(-1px);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 1.4s var(--ease);
  transition-delay: var(--d, 0ms);
}

.reveal-img.is-in {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.05rem;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(245, 243, 238, 0.85);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand__logo {
  background: #fff;
  border-radius: var(--radius);
  padding: 0.45rem 0.6rem;
  height: 44px;
  width: auto;
  box-shadow: 0 1px 0 rgba(14, 14, 16, 0.06);
  transition: height 0.35s var(--ease);
}

.site-header.is-scrolled .brand__logo {
  height: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

.nav-link[aria-current="page"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}

.header-phone:hover {
  color: var(--red);
}

body.has-hero-image .site-header:not(.is-scrolled) .nav-link,
body.has-hero-image .site-header:not(.is-scrolled) .header-phone {
  color: #fff;
}

body.has-hero-image .site-header:not(.is-scrolled) .nav-link:hover,
body.has-hero-image .site-header:not(.is-scrolled) .nav-link[aria-current="page"] {
  color: #fff;
}

body.has-hero-image .site-header:not(.is-scrolled) .nav-link[aria-current="page"]::after {
  background: var(--red);
}

.burger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

body.has-hero-image .site-header:not(.is-scrolled) .burger {
  border-color: rgba(255, 255, 255, 0.4);
}

.burger__lines {
  position: relative;
  width: 18px;
  height: 12px;
}

.burger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

body.has-hero-image .site-header:not(.is-scrolled) .burger__lines span {
  background: #fff;
}

.burger__lines span:nth-child(1) {
  top: 0;
}

.burger__lines span:nth-child(2) {
  top: 5px;
}

.burger__lines span:nth-child(3) {
  top: 10px;
}

.burger[aria-expanded="true"] .burger__lines span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.burger[aria-expanded="true"] .burger__lines span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

body.is-locked .site-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

body.is-locked .burger {
  border-color: rgba(255, 255, 255, 0.4);
}

body.is-locked .burger__lines span {
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.25s var(--ease);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: none;
}

.mobile-menu__link span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}

.mobile-menu__link:hover,
.mobile-menu__link[aria-current="page"] {
  color: var(--red);
}

.mobile-menu__foot {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-menu__foot a:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  padding-top: 8rem;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  transform: scale(1.06);
  animation: heroZoom 2.4s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 10, 12, 0.62) 0%,
      rgba(10, 10, 12, 0.22) 38%,
      rgba(10, 10, 12, 0.55) 72%,
      rgba(10, 10, 12, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(10, 10, 12, 0.5) 0%, rgba(10, 10, 12, 0) 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

.hero__title {
  font-size: clamp(3.4rem, 13vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero__sub {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 34ch;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__fact {
  padding: 1.15rem 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 1.3vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero__fact + .hero__fact {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__fact svg {
  flex: none;
  color: var(--red);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 6.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0.2);
    transform-origin: top;
    opacity: 0;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

.ticker {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 42s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.ticker__item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes tickerScroll {
  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split__media {
  position: relative;
}

.collage {
  position: relative;
  isolation: isolate;
  padding-bottom: 4.5rem;
  padding-right: 3rem;
}

.collage__main {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
}

.collage--portrait {
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.collage--portrait .collage__main {
  aspect-ratio: 5 / 6;
}

.collage__overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(140px, 42%, 260px);
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  z-index: 2;
}

.collage__frame {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 44%;
  height: 52%;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: 0;
}

.collage__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.collage__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--red);
}

.collage__badge span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.checklist {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9688rem;
  color: var(--ink);
}

.checklist svg {
  flex: none;
  margin-top: 0.2rem;
  color: var(--red);
}

.section--ink .checklist li {
  color: rgba(255, 255, 255, 0.85);
}

.statement {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-left: 3px solid var(--red);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.1vw, 1.6rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 62ch;
}

.services {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section--ink .services {
  border-top-color: var(--line-light);
}

.service {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem 2rem;
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease);
}

.service:hover {
  background: rgba(255, 255, 255, 0.6);
}

.section--ink .service {
  border-bottom-color: var(--line-light);
}

.section--ink .service:hover {
  background: rgba(255, 255, 255, 0.04);
}

.section--ink .service__text {
  color: rgba(255, 255, 255, 0.6);
}

.section--ink .tag {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
}

.service__num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  padding-top: 0.4rem;
}

.service__body {
  display: grid;
  gap: 0.6rem;
}

.service__text {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1rem;
}

.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.35s var(--ease);
}

.card:hover {
  background: var(--white);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--red);
}

.card p {
  color: var(--muted);
  font-size: 0.9688rem;
}

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.cta__media {
  position: absolute;
  inset: 0;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 12, 0.92) 0%, rgba(10, 10, 12, 0.72) 48%, rgba(10, 10, 12, 0.35) 100%);
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 0 8px rgba(226, 0, 26, 0.18);
}

.cta__icon img {
  width: 26px;
  height: auto;
}

.cta h2 {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 1.25rem;
  max-width: 54ch;
}

.cta .eye-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cta .eye-row::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-card {
  background: var(--paper);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background 0.3s var(--ease);
}

.contact-card:hover {
  background: var(--white);
}

.contact-card__icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--red);
  display: grid;
  place-items: center;
}

.contact-card__icon img {
  width: 22px;
  height: auto;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card p,
.contact-card a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-top: 0.3rem;
  line-height: 1.35;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-card small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.form__head {
  margin-bottom: 1.75rem;
}

.form__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.form__head p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.form__grid {
  display: grid;
  gap: 1.25rem;
}

.field {
  position: relative;
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.field .opt {
  color: var(--muted-2);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 0.9688rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14, 14, 16, 0.07);
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.1);
}

.field__error {
  font-size: 0.8125rem;
  color: var(--red);
  min-height: 1.1em;
}

.form__note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.form__note a {
  border-bottom: 1px solid var(--line-strong);
}

.form__success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form__success.is-visible {
  display: block;
}

.form__success svg {
  margin: 0 auto 1rem;
  color: var(--red);
}

.form__success h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.form__success p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-head {
  position: relative;
  padding-top: clamp(8rem, 16vw, 12rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper);
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 80% 0%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 90% at 80% 0%, #000 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.page-head__inner {
  position: relative;
  z-index: 1;
}

.page-head h1 {
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  margin-top: 1.25rem;
}

.page-head__lead {
  margin-top: 1.25rem;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  text-wrap: pretty;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

.crumbs span {
  color: var(--muted-2);
}

.prose {
  max-width: 74ch;
}

.legal-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.legal-nav {
  display: none;
}

.legal-nav__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-nav ol {
  display: grid;
  gap: 0.55rem;
  border-left: 1px solid var(--line);
}

.legal-nav a {
  display: block;
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .legal-nav {
    display: block;
    position: sticky;
    top: 110px;
  }
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 1.75rem;
}

.prose p,
.prose li {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9688rem;
  line-height: 1.7;
}

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

.prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}

.prose a:hover {
  color: var(--red);
  border-color: var(--red);
}

.prose address {
  font-style: normal;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9688rem;
  line-height: 1.7;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.footer-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.footer__brand-logo {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.55rem 0.7rem;
}

.footer__brand-logo img {
  height: 42px;
  width: auto;
}

.footer__tagline {
  margin-top: 1.5rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9688rem;
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.9688rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s var(--ease), padding 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact {
  display: grid;
  gap: 1rem;
  font-size: 0.9375rem;
}

.footer-contact a,
.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
  color: var(--red);
}

.footer-contact small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s var(--ease),
    background 0.25s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--red);
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: repeat(12, 1fr);
  }

  .split--intro .split__content--narrow {
    grid-column: 1 / span 5;
  }

  .split--intro .split__content--wide {
    grid-column: 7 / span 6;
  }

  .split__media {
    grid-column: 1 / span 6;
  }

  .split__content {
    grid-column: 7 / span 6;
  }

  .split--media-right .split__media {
    grid-column: 8 / span 5;
    order: 2;
  }

  .split--media-right .split__content {
    grid-column: 1 / span 6;
    order: 1;
  }

  .service {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .form__grid--2 {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .cta__inner {
    max-width: 760px;
  }
}

@media (max-width: 1023px) {
  .nav,
  .header-phone .header-phone__label {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-phone {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    justify-content: center;
  }

  body.has-hero-image .site-header:not(.is-scrolled) .header-phone {
    border-color: rgba(255, 255, 255, 0.4);
  }
}

@media (max-width: 767px) {
  .split__media {
    max-width: 520px;
  }

  .hero__kicker {
    font-size: 0.6875rem;
    letter-spacing: 0.13em;
    gap: 0.6rem;
  }

  .hero__kicker::before {
    width: 24px;
  }

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

  .hero__fact {
    padding: 0.75rem 0;
  }

  .hero__fact + .hero__fact {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero__scroll {
    display: none;
  }

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

  .to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media img {
    animation: none;
    transform: none;
  }

  .ticker__track,
  .hero__scroll::after {
    animation: none;
  }

  .reveal,
  .reveal-img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
