/* --------------------------------------------------
   F&F Montaggi — landing page
   Visual language: graphite, warm paper, oxide red
   -------------------------------------------------- */

:root {
  --ink: #121613;
  --ink-soft: #1b211d;
  --paper: #f2efe8;
  --paper-deep: #e9e4da;
  --white: #fffdf8;
  --steel: #747a76;
  --steel-light: #b9bdb8;
  --line: rgba(18, 22, 19, 0.17);
  --line-light: rgba(255, 253, 248, 0.22);
  --oxide: #a8321b;
  --oxide-dark: #812411;
  --success: #78a57e;
  --body-font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --display-font: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  --shell: 1280px;
  --header-height: 84px;
  --ease: cubic-bezier(.22, .7, .25, 1);
  --shadow: 0 28px 80px rgba(10, 13, 11, .16);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 em,
h2 em {
  color: var(--oxide);
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--oxide);
}

:focus-visible {
  outline: 3px solid #d84b2c;
  outline-offset: 4px;
}

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

.section {
  padding-block: clamp(96px, 11vw, 168px);
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--oxide);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--oxide);
}

/* Header */

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: height .35s var(--ease), background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, rgba(9, 12, 10, .62), transparent);
  transition: opacity .35s ease;
}

.site-header.is-scrolled,
.site-header.is-nav-open {
  height: 72px;
  background: rgba(18, 22, 19, .97);
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
.site-header.is-nav-open::before {
  opacity: 0;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
}

.brand__mark {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  background: var(--white);
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}

.brand__name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: inherit;
  font-family: var(--display-font);
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.brand__name strong {
  color: var(--white);
  font-size: 23px;
  letter-spacing: -.07em;
}

.brand__name small {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  letter-spacing: .08em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.primary-nav a {
  position: relative;
  padding-block: 9px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--oxide);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  gap: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s ease;
}

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

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

/* Shared elements */

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--oxide);
}

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

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: clamp(54px, 7vw, 92px);
  padding-bottom: 22px;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

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

.section-number {
  margin: 0;
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-number--light {
  color: rgba(255, 255, 255, .55);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  gap: 32px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);
  background: var(--oxide);
}

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

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
  background: rgba(18, 22, 19, .16);
}

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

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

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

.button__icon {
  font-size: 18px;
  font-weight: 400;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 7px;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: gap .25s var(--ease), color .25s ease, border-color .25s ease;
}

.text-link:hover {
  gap: 33px;
  color: var(--oxide);
  border-color: var(--oxide);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__shade,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  animation: hero-in 1.4s var(--ease) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 13, 11, .9) 0%, rgba(10, 13, 11, .72) 43%, rgba(10, 13, 11, .26) 73%, rgba(10, 13, 11, .36) 100%),
    linear-gradient(0deg, rgba(10, 13, 11, .65) 0%, transparent 40%);
}

.hero__grid {
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 10vw 10vw;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 112px;
  gap: 50px;
}

.hero__copy {
  width: min(850px, 70%);
  animation: hero-copy-in .9s .15s var(--ease) both;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 8.4vw, 8.5rem);
  line-height: .82;
  text-wrap: balance;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  display: grid;
  min-width: 220px;
  border-top: 1px solid var(--line-light);
  animation: hero-copy-in .9s .35s var(--ease) both;
}

.hero__facts > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  padding: 18px 0;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.hero__facts span {
  color: var(--oxide);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero__facts strong {
  font-family: var(--display-font);
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__caption span + span {
  position: relative;
  padding-left: 22px;
}

.hero__caption span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: var(--oxide);
  transform: translateY(-50%);
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 27px;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .65);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .35);
}

.hero__scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  animation: scroll-line 2.2s ease infinite;
}

@keyframes hero-in {
  from { opacity: .2; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(110%); }
}

/* Proof strip */

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

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.proof__item {
  min-height: 138px;
  padding: 31px clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--line-light);
}

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

.proof__item strong,
.proof__item span {
  display: block;
}

.proof__item strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.proof__item span {
  max-width: 220px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.5;
}

/* About */

.about__grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(450px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
}

.about__copy h2,
.services h2,
.projects h2,
.process h2,
.faq h2 {
  margin-bottom: 34px;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.lead-copy {
  margin-bottom: 24px;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.62;
}

.about__copy > p:not(.lead-copy) {
  max-width: 540px;
  color: #4f5651;
}

.about__visual {
  position: relative;
  padding: 0 0 64px 54px;
}

.about__visual::before {
  position: absolute;
  z-index: -1;
  top: -46px;
  right: -200px;
  bottom: 18px;
  left: 0;
  content: "";
  border: 1px solid var(--line);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .45;
}

.about__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.about__photo:hover img {
  transform: scale(1.025);
}

.about__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 38px 24px 18px;
  color: rgba(255, 255, 255, .68);
  background: linear-gradient(transparent, rgba(10, 13, 11, .72));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about__seal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(118px, 11vw, 155px);
  aspect-ratio: 1;
  padding: 13px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 13, 11, .18);
}

.about__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Services */

.services {
  position: relative;
  overflow: hidden;
}

.services::after {
  position: absolute;
  z-index: 0;
  top: -240px;
  right: -260px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(18, 22, 19, .025), 0 0 0 140px rgba(18, 22, 19, .018);
}

.services__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(570px, 1.25fr);
  gap: clamp(48px, 8vw, 118px);
}

.services__intro .section-heading {
  display: block;
  margin-bottom: 54px;
}

.services__intro .section-number {
  margin-bottom: 18px;
}

.services__sticky {
  position: sticky;
  top: calc(var(--header-height) + 46px);
}

.services__sticky h2 {
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.services__sticky > p {
  max-width: 440px;
  margin-bottom: 34px;
  color: #555c57;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  transform: scale(.3);
  transition: transform .5s var(--ease);
}

.service-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1);
}

.service-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 68px;
}

.service-card__number {
  color: var(--oxide);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.service-card h3 {
  margin-bottom: 17px;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 0;
  color: #606762;
  font-size: 14px;
  line-height: 1.65;
  transition: color .35s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, .65);
}

.service-extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2.1fr;
  align-items: start;
  margin-top: 18px;
  padding: 40px 0 0;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.service-extra__label {
  color: var(--oxide);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-extra p {
  max-width: 830px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.22;
}

/* Projects */

.projects {
  background: var(--paper);
}

.projects__heading {
  display: grid;
  grid-template-columns: 1.6fr .6fr;
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 100px);
  padding-bottom: 28px;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.projects__heading .section-number {
  margin-bottom: 20px;
}

.projects__heading h2 {
  margin-bottom: 0;
}

.projects__heading > p {
  margin-bottom: 8px;
  color: #555c57;
}

.project-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 255px;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  width: 100%;
  min-height: 255px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.project-card--wide {
  grid-column: span 8;
}

.project-card--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.project-card--portrait {
  grid-column: span 12;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease, transform .75s var(--ease), filter .45s ease;
}

.project-card--tall img {
  object-position: center;
}

.project-card:hover img,
.project-card:focus-visible img {
  opacity: .74;
  filter: saturate(.8);
  transform: scale(1.045);
}

.project-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 70px 24px 22px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(10, 13, 11, .88));
  text-align: left;
}

.project-card__overlay strong {
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1;
}

.project-card__overlay small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-card__open {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--oxide);
  font-size: 19px;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
}

.project-card:hover .project-card__open,
.project-card:focus-visible .project-card__open {
  transform: translateY(0);
}

/* Values */

.values {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 820px;
  color: var(--white);
  background: var(--ink);
}

.values__image {
  min-height: 600px;
  overflow: hidden;
}

.values__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.04);
}

.values__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px);
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 62px 62px;
}

.values__content .section-number {
  margin-bottom: 20px;
}

.values__content h2 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 4.9vw, 5.8rem);
}

.values__content > div > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.value-list {
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 18px 0;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
}

.value-list span {
  color: var(--oxide);
  font-size: 10px;
  font-weight: 800;
}

.value-list strong {
  font-family: var(--display-font);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Process */

.process__heading {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  align-items: start;
  margin-bottom: clamp(65px, 8vw, 110px);
  gap: 72px;
}

.process__heading .section-number {
  margin-bottom: 18px;
}

.process__heading h2 {
  max-width: 850px;
  margin: 0;
}

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

.process-list li {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, background .3s ease;
}

.process-list li:hover {
  color: var(--white);
  background: var(--ink);
}

.process-list__number {
  display: block;
  margin-bottom: 96px;
  color: var(--oxide);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.process-list h3 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
}

.process-list p {
  margin: 0;
  color: #606762;
  font-size: 13px;
  line-height: 1.65;
  transition: color .3s ease;
}

.process-list li:hover p {
  color: rgba(255, 255, 255, .62);
}

.process-list__arrow {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--steel);
  font-size: 20px;
}

/* Sectors ticker */

.sectors {
  width: 100%;
  overflow: hidden;
  contain: layout paint;
  color: var(--white);
  background: var(--oxide);
}

.sectors__track {
  display: flex;
  width: max-content;
  padding: 28px 0;
  animation: ticker 28s linear infinite;
}

.sectors__track span,
.sectors__track i {
  flex: none;
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.8vw, 2.6rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.sectors__track span {
  padding-inline: 34px;
}

.sectors__track i {
  color: rgba(255, 255, 255, .45);
}

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

/* FAQ */

.faq {
  background: var(--paper-deep);
}

.faq__layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.faq__intro .section-number {
  margin-bottom: 18px;
}

.faq__intro h2 {
  margin-bottom: 28px;
}

.faq__intro > p:last-child {
  max-width: 440px;
  color: #555c57;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 22px 4px;
  gap: 25px;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--oxide);
  transition: transform .3s var(--ease);
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--oxide);
}

.faq-list details > p {
  max-width: 690px;
  margin: -5px 50px 30px 0;
  color: #555c57;
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact__grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, black 55%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  padding-block: clamp(96px, 11vw, 160px);
  gap: clamp(60px, 9vw, 130px);
}

.contact__copy .section-number {
  margin-bottom: 18px;
}

.contact__copy h2 {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: clamp(3.4rem, 6.2vw, 7rem);
}

.contact__copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, .65);
  font-size: 17px;
}

.contact__channels {
  max-width: 560px;
  margin-top: 34px;
  border-top: 1px solid var(--line-light);
}

.contact__channels a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 82px;
  padding-block: 14px;
  gap: 2px 18px;
  border-bottom: 1px solid var(--line-light);
  transition: color .25s ease, padding-left .3s var(--ease);
}

.contact__channels a:hover {
  padding-left: 8px;
  color: #ed765d;
}

.contact__channels small {
  display: block;
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact__channels strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.contact__channels a > span {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-light);
  color: var(--oxide);
  transition: color .25s ease, border-color .25s ease, transform .3s var(--ease);
}

.contact__channels a:hover > span {
  border-color: var(--oxide);
  color: var(--white);
  transform: translate(2px, -2px);
}

.contact__note {
  display: grid;
  grid-template-columns: 42px 1fr;
  max-width: 560px;
  margin-top: 30px;
  padding-top: 25px;
  gap: 18px;
  border-top: 1px solid var(--line-light);
}

.contact__note > span {
  color: var(--oxide);
  font-size: 23px;
}

.contact__note p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.contact__note strong {
  color: var(--white);
}

.contact-form {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(4px);
}

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

.field {
  position: relative;
  margin-bottom: 25px;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field label span,
.checkbox-field label span {
  color: #d54b2c;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  transition: border-color .25s ease, background .25s ease;
}

.field input,
.field select {
  height: 50px;
}

.field textarea {
  min-height: 124px;
  padding: 13px 0;
  resize: vertical;
}

.field select {
  padding-right: 32px;
  cursor: pointer;
}

.field select option {
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--oxide);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .32);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-bottom-color: #ff7a5e;
  background: rgba(168, 50, 27, .08);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #ff9d88;
  font-size: 11px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--oxide);
}

.checkbox-field label {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.5;
}

.checkbox-field label a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .45);
  text-underline-offset: 3px;
}

.checkbox-field label a:hover {
  color: #ed765d;
  text-decoration-color: currentColor;
}

.checkbox-error {
  margin: 3px 0 14px 31px;
}

.form-submit {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 24px;
}

.form-submit p {
  max-width: 180px;
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: #e9c7be;
  font-size: 12px;
}

.form-status.is-success {
  color: #a8cfad;
}

/* Footer */

.site-footer {
  color: var(--ink);
  background: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 190px;
  gap: 70px;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  color: var(--ink);
}

.brand--footer .brand__name strong {
  color: var(--ink);
}

.brand--footer .brand__name small {
  color: var(--steel);
}

.site-footer__address {
  margin: 0;
  color: #5b625d;
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.site-footer__address strong {
  color: var(--ink);
  font-weight: 800;
}

.site-footer__address a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(18, 22, 19, .26);
  text-underline-offset: 3px;
}

.site-footer__address a:hover {
  color: var(--oxide);
  text-decoration-color: currentColor;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 20px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.back-to-top span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 18px;
  transition: transform .25s var(--ease), background .25s ease;
}

.back-to-top:hover span {
  background: var(--oxide);
  transform: translateY(-4px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 30px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  margin-left: auto;
  gap: 18px;
  text-align: right;
}

.footer-legal a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: var(--oxide);
  text-decoration-color: currentColor;
}

/* Legal pages */

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 28px;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  gap: 12px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.legal-header__back span {
  color: var(--oxide);
  font-size: 19px;
  transition: transform .25s var(--ease);
}

.legal-header__back:hover span {
  transform: translateX(-5px);
}

.legal-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.legal-hero__grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 82%);
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 410px;
  padding-block: 72px 62px;
  gap: 50px;
}

.legal-hero .eyebrow {
  margin-bottom: 22px;
}

.legal-hero h1 {
  margin-bottom: 0;
  font-size: clamp(4.6rem, 9vw, 8.8rem);
  letter-spacing: -.065em;
}

.legal-hero__meta {
  display: grid;
  min-width: 260px;
  gap: 8px;
  padding: 20px 0 4px 24px;
  border-left: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-hero__meta span:first-child {
  color: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  justify-content: space-between;
  padding-block: clamp(76px, 9vw, 128px);
  gap: clamp(56px, 8vw, 112px);
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 30px;
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.legal-toc > p {
  margin-bottom: 22px;
  color: var(--steel);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  display: grid;
  grid-template-columns: 30px 1fr;
  min-height: 48px;
  padding-block: 11px;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: #555c57;
  font-size: 12px;
  line-height: 1.35;
  transition: color .2s ease, padding-left .25s var(--ease);
}

.legal-toc a span {
  color: var(--oxide);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
}

.legal-toc a:hover {
  padding-left: 5px;
  color: var(--ink);
}

.legal-content {
  min-width: 0;
}

.legal-content a {
  color: var(--oxide-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(129, 36, 17, .34);
  text-underline-offset: 3px;
}

.legal-content a:hover {
  text-decoration-color: currentColor;
}

.legal-intro {
  margin-bottom: 72px;
  padding: 0 0 42px 30px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--oxide);
}

.legal-intro p {
  max-width: 690px;
  margin-bottom: 15px;
  color: #424944;
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  line-height: 1.72;
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-content > section {
  position: relative;
  padding: 0 0 72px 62px;
  scroll-margin-top: 30px;
}

.legal-content > section + section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.legal-section__number {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--oxide);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.legal-content > section + section .legal-section__number {
  top: 74px;
}

.legal-content h2 {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.legal-content h3 {
  margin: 38px 0 12px;
  font-size: 1.28rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: #424944;
  font-size: 16px;
  line-height: 1.78;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 24px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-data-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--paper-deep);
}

.legal-data-card > strong {
  display: block;
  max-width: 620px;
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -.035em;
  line-height: 1.15;
}

.legal-data-card address {
  margin-bottom: 26px;
  color: #555c57;
  font-style: normal;
}

.legal-data-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-data-card dl > div {
  display: grid;
  padding: 16px 12px 0 0;
  gap: 4px;
}

.legal-data-card dt {
  color: var(--steel);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-data-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

.legal-note {
  margin: 30px 0;
  padding: 25px 28px;
  border-left: 3px solid var(--oxide);
  background: var(--paper-deep);
}

.legal-note strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--display-font);
  font-size: 1.14rem;
  letter-spacing: -.02em;
}

.legal-note p {
  margin: 0;
  font-size: 14px;
}

.legal-purpose-list {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}

.legal-purpose-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding-block: 26px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.legal-purpose-list > div > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display-font);
  font-weight: 800;
}

.legal-purpose-list h3 {
  margin: 2px 0 8px;
}

.legal-purpose-list p {
  margin-bottom: 8px;
}

.legal-purpose-list small {
  display: block;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.65;
}

.legal-status {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  margin-bottom: 72px;
  padding: 28px 30px;
  gap: 20px;
  border: 1px solid rgba(69, 123, 78, .32);
  background: #e7eee4;
}

.legal-status > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #4d7652;
  font-size: 18px;
}

.legal-status strong {
  display: block;
  margin: 2px 0 4px;
  font-family: var(--display-font);
  font-size: 1.2rem;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.legal-status p {
  margin: 0;
  color: #536455;
  font-size: 13px;
}

.legal-check-list li::marker {
  color: var(--oxide);
  content: "✓  ";
}

.legal-table-wrap {
  max-width: 100%;
  margin: 30px 0 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.legal-table caption {
  padding: 15px 16px;
  color: var(--steel);
  background: var(--paper-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.legal-table th,
.legal-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  color: #424944;
  font-size: 13px;
  line-height: 1.45;
  vertical-align: top;
}

.legal-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-table tbody th {
  color: var(--ink);
  font-weight: 800;
}

.legal-table tbody tr:last-child th,
.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-source {
  margin-top: 8px;
  padding: 28px 0 0 62px;
  border-top: 3px solid var(--ink);
}

.legal-source > span {
  display: block;
  margin-bottom: 5px;
  color: var(--steel);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-source p {
  margin: 0;
}

.legal-footer {
  color: var(--white);
  background: var(--ink);
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 30px;
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.legal-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.legal-footer a:hover,
.legal-footer a[aria-current="page"] {
  color: var(--white);
}

.legal-footer a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--oxide);
  text-underline-offset: 5px;
}

/* Lightbox */

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: rgba(9, 12, 10, .97);
}

.lightbox::backdrop {
  background: rgba(9, 12, 10, .92);
}

.lightbox__inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 68px 8vw 44px;
  place-items: center;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: calc(100% - 58px);
  max-height: calc(100vh - 145px);
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--oxide);
  border-color: var(--oxide);
}

.lightbox__close {
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

/* Reveal animation */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

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

/* Tablet */

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

  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(86vw, 480px);
    height: 100dvh;
    padding: 110px 54px 60px;
    gap: 7px;
    background: var(--ink);
    box-shadow: -25px 0 70px rgba(0, 0, 0, .28);
    transform: translateX(105%);
    transition: transform .42s var(--ease);
  }

  .primary-nav::before {
    position: absolute;
    right: 32px;
    bottom: 35px;
    left: 54px;
    padding-top: 20px;
    content: "F&F Montaggi SNC · Dal 2013";
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 11px 0;
    font-family: var(--display-font);
    font-size: clamp(2rem, 7vw, 3.4rem);
    letter-spacing: -.03em;
    line-height: 1;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .no-js .primary-nav {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0;
    gap: 18px;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .no-js .primary-nav::before,
  .no-js .nav-toggle {
    display: none;
  }

  .no-js .primary-nav a {
    font-family: var(--body-font);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .hero__copy {
    width: min(800px, 76%);
  }

  .hero__facts {
    min-width: 190px;
  }

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

  .services__sticky,
  .faq__intro {
    position: static;
  }

  .services__sticky {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 45px;
  }

  .services__sticky h2 {
    grid-column: 1 / -1;
    max-width: 780px;
  }

  .services__sticky > p {
    margin: 0;
  }

  .services__sticky .button {
    justify-self: end;
  }

  .values {
    min-height: 700px;
  }

  .values__content {
    padding: 70px 52px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq__layout,
  .contact__inner {
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
  }
}

/* Mobile landscape / narrow tablet */

@media (max-width: 820px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding-block: 90px;
  }

  .brand__name small {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero__media {
    inset: 0;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(10, 13, 11, .93) 0%, rgba(10, 13, 11, .66) 62%, rgba(10, 13, 11, .34) 100%),
      linear-gradient(90deg, rgba(10, 13, 11, .65), transparent);
  }

  .hero__grid {
    background-size: 22vw 22vw;
    mask-image: linear-gradient(0deg, black, transparent 82%);
  }

  .hero__content {
    display: block;
    padding-top: 170px;
    padding-bottom: 112px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 15vw, 6.5rem);
  }

  .hero__lead {
    max-width: 560px;
  }

  .hero__facts {
    display: none;
  }

  .hero__caption {
    display: none;
  }

  .hero__scroll {
    left: 20px;
  }

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

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

  .proof__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about__copy {
    max-width: 680px;
  }

  .about__visual {
    padding-left: 38px;
  }

  .service-extra {
    grid-template-columns: 1fr;
  }

  .projects__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .projects__heading > p {
    max-width: 580px;
  }

  .project-grid {
    grid-auto-rows: 250px;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .project-card--wide,
  .project-card--tall,
  .project-card--portrait {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-card:first-child,
  .project-card:nth-child(4) {
    grid-column: 1 / -1;
  }

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

  .values__image {
    min-height: 450px;
  }

  .values__content {
    padding: 80px 32px;
  }

  .process__heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .faq__layout,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .contact__copy {
    max-width: 670px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-block: 50px;
    gap: 32px;
  }

  .site-footer__address {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-basis: 100%;
    margin-left: 0;
    text-align: left;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .legal-hero__inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 36px;
  }

  .legal-hero__meta {
    min-width: 0;
  }

  .lightbox__inner {
    padding-inline: 72px;
  }

  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* Phones */

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    display: block;
    margin-bottom: 48px;
  }

  .section-heading .section-number {
    margin-bottom: 15px;
  }

  .site-header__inner {
    gap: 12px;
  }

  .brand__mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    width: 100%;
    padding-inline: 30px;
  }

  .primary-nav::before {
    left: 30px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 140px;
    padding-bottom: 92px;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.45rem, 17.5vw, 5.3rem);
  }

  .hero__lead {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__scroll {
    bottom: 18px;
  }

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

  .proof__item,
  .proof__item:nth-child(2) {
    min-height: 110px;
    padding: 25px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .proof__item:last-child {
    border-bottom: 0;
  }

  .about__copy h2,
  .services h2,
  .projects h2,
  .process h2,
  .faq h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .about__visual {
    padding: 0 0 46px 22px;
  }

  .about__visual::before {
    top: -24px;
    background-size: 38px 38px;
  }

  .about__photo img {
    aspect-ratio: 1 / 1.05;
  }

  .about__photo figcaption span:last-child {
    display: none;
  }

  .about__seal {
    width: 104px;
  }

  .services__sticky {
    display: block;
  }

  .services__sticky > p {
    margin-bottom: 28px;
  }

  .services__sticky .button {
    width: 100%;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 275px;
  }

  .service-card__top {
    margin-bottom: 45px;
  }

  .service-extra {
    padding-top: 32px;
  }

  .project-grid {
    display: grid;
    grid-auto-rows: 245px;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(4) {
    grid-column: 1;
  }

  .values__image {
    min-height: 350px;
  }

  .values__content {
    padding: 70px 22px;
  }

  .values__content h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 255px;
  }

  .process-list__number {
    margin-bottom: 58px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.2rem;
  }

  .contact__inner {
    padding-block: 78px;
  }

  .contact__copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .contact__channels a {
    min-height: 76px;
  }

  .contact__channels strong {
    font-size: 1.12rem;
  }

  .contact-form {
    margin-inline: -4px;
    padding: 25px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

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

  .form-submit p {
    max-width: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    justify-self: start;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
    gap: 10px;
  }

  .footer-legal {
    display: flex;
    max-width: 440px;
    margin-left: 0;
    text-align: left;
  }

  .legal-header__inner {
    min-height: 78px;
  }

  .legal-header__back {
    font-size: 0;
    gap: 0;
  }

  .legal-header__back span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    font-size: 20px;
  }

  .legal-hero,
  .legal-hero__inner {
    min-height: 350px;
  }

  .legal-hero__inner {
    padding-block: 60px 48px;
  }

  .legal-hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.4rem);
  }

  .legal-hero__meta {
    padding: 15px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .legal-layout {
    padding-block: 64px 80px;
    gap: 50px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

  .legal-content > section,
  .legal-content > section + section {
    padding-right: 0;
    padding-bottom: 58px;
    padding-left: 0;
  }

  .legal-content > section + section {
    padding-top: 58px;
  }

  .legal-section__number {
    position: static;
    display: block;
    margin-bottom: 12px;
  }

  .legal-content > section + section .legal-section__number {
    top: auto;
  }

  .legal-content h2 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .legal-intro {
    margin-bottom: 58px;
    padding: 0 0 32px 20px;
  }

  .legal-data-card {
    box-shadow: 7px 7px 0 var(--paper-deep);
  }

  .legal-data-card dl {
    grid-template-columns: 1fr;
  }

  .legal-purpose-list > div {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .legal-purpose-list > div > span {
    width: 34px;
    height: 34px;
  }

  .legal-note,
  .legal-status {
    padding: 22px 20px;
  }

  .legal-status {
    grid-template-columns: 1fr;
  }

  .legal-source {
    padding-left: 0;
  }

  .legal-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
    gap: 6px;
  }

  .legal-footer nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .lightbox__inner {
    padding: 70px 14px 45px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox__nav--prev { left: calc(50% - 59px); }
  .lightbox__nav--next { right: calc(50% - 59px); }

  .lightbox figure img {
    height: calc(100% - 80px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .legal-header,
  .scroll-progress,
  .hero__scroll,
  .hero__actions,
  .contact-form,
  .lightbox,
  .sectors {
    display: none !important;
  }

  .legal-hero__grid,
  .legal-toc,
  .legal-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: 0;
    padding: 70px 0;
    color: #000;
    background: #fff;
  }

  .hero__media,
  .hero__shade,
  .hero__grid {
    display: none;
  }

  .legal-hero,
  .legal-hero__inner {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .legal-hero__inner {
    display: block;
    padding: 0 0 34px;
  }

  .legal-hero .eyebrow,
  .legal-hero__meta {
    color: #000;
  }

  .legal-hero h1 {
    font-size: 50pt;
  }

  .legal-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .legal-content > section,
  .legal-content > section + section {
    padding-left: 0;
  }

  .legal-section__number {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .legal-data-card,
  .legal-note,
  .legal-status {
    box-shadow: none;
    color: #000;
    background: #fff;
    border: 1px solid #777;
  }

  .legal-content a[href^="http"]::after {
    content: " (" attr(href) ")";
    color: #000;
    font-size: 9pt;
    font-weight: 400;
    overflow-wrap: anywhere;
  }
}
