:root {
  color-scheme: dark;
  --rosso: #da291c;
  --rosso-dark: #b01e0a;
  --ink: #ffffff;
  --body: #969696;
  --body-strong: #f6f6f6;
  --body-on-light: #181818;
  --muted-on-light: #666666;
  --canvas: #181818;
  --canvas-deep: #101010;
  --canvas-elevated: #303030;
  --canvas-light: #ffffff;
  --surface-light: #f7f7f7;
  --hairline: #303030;
  --hairline-light: #d2d2d2;
  --max: 1280px;
  --nav-height: 64px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--rosso);
  color: #fff;
  transform: translateY(-150%);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--nav-height);
  background: rgba(24, 24, 24, 0.86);
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 48px), var(--max));
  height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-size: 13px;
  font-weight: 700;
}

.brand-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--rosso);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.nav-menu a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--canvas-deep);
  display: grid;
  align-items: end;
  padding: calc(var(--nav-height) + 64px) 0 96px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.18) 72%),
    linear-gradient(0deg, rgba(24, 24, 24, 0.94) 0%, rgba(24, 24, 24, 0.18) 45%, rgba(24, 24, 24, 0.38) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rosso);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.eyebrow-on-red {
  color: #fff;
}

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

h1,
h2,
h3,
.hero-lead,
.section-heading p,
.statement p,
.contact-copy p {
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.16;
  font-weight: 500;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: #d4d4d4;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.button-primary {
  background: var(--rosso);
}

.button-primary:hover {
  background: var(--rosso-dark);
}

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

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

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.signal-item {
  min-height: 168px;
  padding: 32px;
  border-right: 1px solid var(--hairline);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span,
.service-number,
.method-list span {
  display: block;
  color: var(--rosso);
  font-size: 13px;
  font-weight: 700;
}

.signal-item strong {
  display: block;
  margin: 18px 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.signal-item p,
.service-item p,
.focus-item p,
.contact-copy p,
.form-note {
  color: var(--body);
}

.section {
  padding: 96px 0;
}

#top,
#services,
#method,
#focus,
#company,
#contact {
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

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

.section-light {
  background: var(--canvas-light);
  color: var(--body-on-light);
}

.section-inner,
.statement-inner,
.company-inner,
.contact-inner,
.footer-inner,
.policy-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading p:not(.eyebrow) {
  color: var(--body);
  font-size: 20px;
}

.section-heading-on-light p:not(.eyebrow) {
  color: var(--muted-on-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.service-item {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #202020;
}

.service-number {
  margin-bottom: 88px;
}

.statement {
  background: var(--rosso);
  color: #fff;
  padding: 96px 0;
}

.statement-inner {
  max-width: 1060px;
}

.statement h2 {
  font-size: 48px;
}

.statement p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-light);
}

.method-list li {
  min-height: 260px;
  padding: 28px 28px 0 0;
}

.method-list span {
  margin-bottom: 32px;
}

.method-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--body-on-light);
  font-size: 20px;
  line-height: 1.35;
}

.method-list p {
  color: var(--muted-on-light);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.focus-item {
  min-height: 198px;
  padding: 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.company-band {
  background: #111;
  padding: 88px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.company-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.company-list {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--hairline);
}

.company-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}

.company-list dt {
  color: var(--body);
  font-size: 14px;
}

.company-list dd {
  margin: 0;
  color: var(--body-strong);
}

.company-list a,
.text-link,
.consent-label a,
.policy-link {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(218, 41, 28, 0.85);
  text-underline-offset: 4px;
}

.contact {
  background: var(--canvas);
  padding: 96px 0;
}

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

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p:not(.eyebrow) {
  font-size: 20px;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--hairline);
  background: #202020;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--body-strong);
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #454545;
  border-radius: 4px;
  background: #181818;
  color: #fff;
  padding: 13px 14px;
  outline: none;
}

.contact-form select {
  appearance: auto;
}

.contact-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--rosso);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fff;
}

.contact-form .button {
  width: 100%;
}

.consent-label {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.form-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.footer {
  background: var(--canvas-deep);
  color: var(--body);
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr 0.7fr;
  gap: 40px;
  align-items: start;
  font-size: 13px;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
}

.footer p {
  margin: 0 0 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.policy-hero {
  padding: calc(var(--nav-height) + 96px) 0 72px;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}

.policy-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 56px;
}

.policy-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--body);
  font-size: 19px;
}

.policy-section {
  background: var(--canvas-light);
  color: var(--body-on-light);
  padding: 72px 0;
}

.policy-content {
  max-width: 920px;
}

.policy-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline-light);
}

.policy-content section:first-child {
  padding-top: 0;
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.policy-content p,
.policy-content li,
.policy-content dd {
  color: var(--muted-on-light);
}

.policy-content .policy-link {
  color: var(--body-on-light);
}

.policy-content ul {
  margin: 0;
  padding-left: 20px;
}

.policy-content li + li {
  margin-top: 8px;
}

.policy-table {
  display: grid;
  border-top: 1px solid var(--hairline-light);
}

.policy-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline-light);
}

.policy-table dt {
  color: var(--body-on-light);
  font-weight: 700;
}

.policy-table dd {
  margin: 0;
}

@media (max-width: 1068px) {
  h1 {
    font-size: 54px;
  }

  h2,
  .statement h2 {
    font-size: 38px;
  }

  .service-grid,
  .focus-grid,
  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--hairline);
  }

  .method-list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

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

  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-toggle {
    display: flex;
    position: fixed;
    top: 8px;
    right: 16px;
    z-index: 30;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(16, 16, 16, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .nav-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 72px;
  }

  .hero-visual {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 16, 16, 0.96) 0%, rgba(16, 16, 16, 0.68) 45%, rgba(16, 16, 16, 0.35) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.26) 70%);
  }

  .hero-copy,
  .section-inner,
  .statement-inner,
  .company-inner,
  .contact-inner,
  .footer-inner,
  .policy-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  h1,
  .policy-hero h1 {
    font-size: 38px;
  }

  h2,
  .statement h2 {
    font-size: 30px;
  }

  h2 br {
    display: none;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .contact-copy p:not(.eyebrow),
  .statement p:last-child {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-strip,
  .service-grid,
  .focus-grid,
  .method-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .signal-item,
  .signal-item:nth-child(2),
  .signal-item:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--hairline);
  }

  .service-item,
  .focus-item {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 48px;
  }

  .section,
  .statement,
  .company-band,
  .contact,
  .policy-section {
    padding: 64px 0;
  }

  .company-list div,
  .policy-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-links {
    justify-items: start;
  }

  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 380px) {
  h1,
  .policy-hero h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 720px;
  }
}
