:root {
  --ink: #18253b;
  --ink-deep: #101929;
  --paper: #edf1f2;
  --paper-deep: #dfe8e4;
  --accent: #c16c50;
  --signal: #b8c77f;
  --muted: #657080;
  --line: rgba(24, 37, 59, .18);
  --line-dark: rgba(237, 241, 242, .28);
  --max: 82rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --title-size: clamp(2.65rem, 4.25vw, 4.8rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 1rem/1.65 Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea { font-family: Arial, Helvetica, sans-serif; }

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: .18rem solid var(--accent);
  outline-offset: .25rem;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

[hidden] { display: none !important; }

.skip-link {
  position: absolute;
  z-index: 20;
  top: -4rem;
  left: 1rem;
  padding: .6rem .9rem;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(.7rem);
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.site-header.is-scrolled {
  background: var(--paper);
  border-color: rgba(24, 37, 59, .28);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto minmax(11rem, 1fr);
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: 6.2rem;
  margin-inline: auto;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.site-logo img {
  width: clamp(10.5rem, 15vw, 13rem);
  height: auto;
  object-fit: contain;
  transition: transform .45s var(--ease), filter .35s ease;
}

.site-logo:hover img { transform: translateX(.25rem); }

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav a,
.language-switch,
.header-link {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after,
.language-switch::after,
.header-link::after,
.article a::after,
footer a::after {
  position: absolute;
  right: 0;
  bottom: -.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.main-nav a:hover,
.language-switch:hover,
.header-link:hover { color: var(--accent); }

.main-nav a:hover::after,
.language-switch:hover::after,
.header-link:hover::after,
.article a:hover::after,
footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.language-switch[aria-current="page"] { color: var(--accent); }

.language-switch[aria-current="page"]::before {
  position: absolute;
  top: -.45rem;
  left: 50%;
  width: .25rem;
  height: .25rem;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.header-link { font-size: 1.1rem; line-height: 1; }

.hero {
  position: relative;
  display: grid;
  min-height: min(52rem, calc(100vh - 6.2rem));
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(100deg, rgba(24, 37, 59, .96), rgba(24, 37, 59, .52)),
    url("assets/hero-mindset-v2.png") center / cover;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-threads.svg") center / cover no-repeat;
  content: "";
  opacity: .1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
  padding: 5rem 0;
  text-align: left;
}

.kicker {
  margin: 0 0 1.2rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: .98;
  text-wrap: balance;
}

.display-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-size: var(--title-size);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.display-title .title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.display-title .title-line:nth-child(2) {
  transform: translateX(clamp(1rem, 5vw, 4.5rem));
}

.display-title .title-line:nth-child(3) {
  transform: translateX(clamp(2rem, 10vw, 9rem));
}

.display-title .title-line:nth-child(4) {
  transform: translateX(clamp(3rem, 15vw, 13rem));
}

.method .display-title,
.vision .display-title { align-items: center; }

.method .display-title .title-line:nth-child(2) { transform: none; }

.display-title .accent-line,
.intro-title .accent-line,
.vision h2 .accent-line,
.contact-intro h2 .accent-line { color: var(--accent); }

.hero h1 {
  max-width: none;
}

.hero-ai-word { white-space: nowrap; }
.hero-ai { color: var(--accent); }

.hero-signature {
  margin: 1.7rem 0 .8rem;
  font-size: .95rem;
  letter-spacing: .35em;
  text-indent: .35em;
}

.hero-lede {
  max-width: 36rem;
  margin: 0 0 2rem;
  color: rgba(237, 241, 242, .82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 3.1rem;
  overflow: hidden;
  padding: .85rem 1.35rem;
  border: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.button:hover { transform: translateY(-.18rem); }

.button-arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}

.button:hover .button-arrow { transform: translateX(.35rem); }

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

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

.button--light {
  color: var(--paper);
  background: transparent;
}

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

.button--signal {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
  cursor: pointer;
}

.button--signal:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}

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

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

.section--light::before,
.section--sage::before,
.section--dark::before {
  position: absolute;
  inset: 0;
  background-image: url("assets/overlay-threads.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.section--light::before { opacity: .1; }
.section--sage { background: var(--paper-deep); }
.section--sage::before { opacity: .08; }

.section::after {
  position: absolute;
  inset: 0;
  background-image: url("assets/overlay-orbits.svg");
  background-position: center;
  background-size: 125% auto;
  background-repeat: no-repeat;
  content: "";
  opacity: .055;
  pointer-events: none;
}

.section[data-pattern="threads"]::before { background-image: url("assets/overlay-threads.svg"); }
.section[data-pattern="threads"]::after { background-image: url("assets/overlay-orbits.svg"); }
.section[data-pattern="arches"]::before { background-image: url("assets/overlay-arches.svg"); }
.section[data-pattern="arches"]::after { background-image: url("assets/overlay-grid.svg"); }
.section[data-pattern="orbits"]::before { background-image: url("assets/overlay-orbits.svg"); }
.section[data-pattern="orbits"]::after { background-image: url("assets/overlay-constellation.svg"); }
.section[data-pattern="constellation"]::before { background-image: url("assets/overlay-constellation.svg"); }
.section[data-pattern="constellation"]::after { background-image: url("assets/overlay-threads.svg"); }
.section[data-pattern="grid"]::before { background-image: url("assets/overlay-grid.svg"); }
.section[data-pattern="grid"]::after { background-image: url("assets/overlay-arches.svg"); }

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

.section--dark::before {
  filter: invert(1) saturate(.7);
  opacity: .12;
}

.section--dark::after {
  filter: invert(1) saturate(.7);
  opacity: .08;
}

.section--dark > * { z-index: 2; }

.section-mark {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.5rem;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-mark::before {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.center {
  max-width: 68rem;
  margin-inline: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  max-width: var(--max);
  margin-inline: auto;
  text-align: left;
}

.intro-title,
.vision h2 {
  max-width: none;
  margin: 0;
}

.intro-copy-wrap { text-align: center; }

.intro-copy {
  max-width: 42rem;
  margin: 0 auto 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.vision { text-align: center; }

.vision h2 { margin-inline: auto; }

.vision-copy {
  max-width: 52rem;
  margin: 2rem auto 2.3rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.split-copy { max-width: 37rem; }

.split-copy h2 {
  max-width: none;
  margin-bottom: 1.7rem;
}

.split-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.photo {
  height: 38rem;
  margin: 0;
  overflow: hidden;
  background: var(--signal);
}

.photo img,
.method-card img { transition: transform .9s var(--ease), filter .6s ease; }

.photo:hover img { transform: scale(1.035); }

.process-list {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list b {
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .12em;
}

.process-list strong { font-size: 1rem; }

.method {
  max-width: 100rem;
  margin-inline: auto;
  text-align: center;
}

.method h2 {
  max-width: 100%;
  margin-inline: auto;
}

.method h2 .accent-line { color: var(--signal); }

.method-title-line { white-space: nowrap; }

.method-intro {
  max-width: 43rem;
  margin: 2rem auto 4rem;
  color: #c8d0d2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.method-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  transition: transform .5s var(--ease), border-color .35s ease, background .35s ease;
}

.method-card:hover {
  border-color: var(--signal);
  background: #233149;
  transform: translateY(-.35rem);
}

.method-card figure {
  position: relative;
  height: 13rem;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.method-card:hover img { transform: scale(1.06); }

.method-card-body { padding: 1.4rem; }

.number {
  display: block;
  margin-bottom: 2.6rem;
  color: var(--signal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.method-card h3 {
  margin-bottom: .7rem;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.method-card p {
  margin: 0;
  color: #c8d0d2;
  font-size: .95rem;
}

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin: 3.5rem auto 0;
  text-align: left;
}

.door {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .45s var(--ease), border-color .35s ease, background .35s ease;
}

.door:hover {
  border-color: var(--accent);
  background: #f1ded7;
  transform: translateY(-.3rem);
}

.door-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.door h3 {
  margin-bottom: .8rem;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.door p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
}

.contact-intro { max-width: 31rem; }

.contact-intro h2 {
  max-width: none;
  margin-bottom: 1.4rem;
}

.contact-copy {
  max-width: 29rem;
  margin: 0 0 1.4rem;
  color: #c8d0d2;
}

.contact-note {
  margin: 0;
  color: var(--signal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-context {
  max-width: 29rem;
  margin: 1.3rem 0 1.5rem;
  color: #c8d0d2;
  font-size: .9rem;
  line-height: 1.55;
}

.contact-context a {
  color: var(--paper);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.contact-whatsapp { margin-top: .1rem; }

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  color: var(--paper);
  font-size: .92rem;
  text-decoration: none;
  text-underline-offset: .18em;
}

.contact-email:hover { text-decoration: underline; }

.contact-email .button-arrow {
  transition: transform .35s var(--ease);
}

.contact-email:hover .button-arrow { transform: translate(.2rem, -.2rem); }

.contact-form {
  position: relative;
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.4rem, 3vw, 3rem);
  border: 1px solid var(--line-dark);
  background: var(--ink);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.form-field { display: grid; gap: .45rem; }

.form-field label {
  color: var(--paper);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(237, 241, 242, .35);
  border-radius: 0;
  padding: .9rem 1rem;
  color: var(--paper);
  background: var(--ink-deep);
  font: inherit;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(237, 241, 242, .55); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--signal);
  outline: .15rem solid var(--signal);
  outline-offset: .15rem;
  background: var(--ink-deep);
  transform: translateY(-.1rem);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
}

.privacy-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin: .2rem 0 0;
  accent-color: var(--signal);
}

.privacy-consent label {
  color: #c8d0d2;
  font-size: .8rem;
  line-height: 1.45;
}

.privacy-consent a { color: var(--paper); }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.form-note,
.form-status {
  flex: 1 1 14rem;
  margin: 0;
  color: #c8d0d2;
  font-size: .82rem;
}

.form-status {
  flex-basis: 100%;
  color: var(--signal);
}

footer {
  padding: 1.1rem var(--gutter);
  color: #c8d0d2;
  background: var(--ink-deep);
  font-size: .72rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

footer a {
  position: relative;
  color: var(--paper);
  text-decoration: none;
}

.privacy-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.privacy-hero::before {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-orbits.svg") center / cover no-repeat;
  content: "";
  filter: invert(1) saturate(.7);
  opacity: .12;
  pointer-events: none;
}

.privacy-hero::after,
.privacy-section::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-constellation.svg") center / 125% auto no-repeat;
  content: "";
  filter: invert(1) saturate(.7);
  opacity: .06;
  pointer-events: none;
}

.privacy-hero[data-pattern="arches"]::before,
.privacy-section[data-pattern="arches"]::before { background-image: url("assets/overlay-arches.svg"); }

.privacy-hero[data-pattern="arches"]::after,
.privacy-section[data-pattern="arches"]::after { background-image: url("assets/overlay-grid.svg"); }

.privacy-hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.privacy-hero h1 {
  max-width: none;
}

.privacy-hero h1 .accent-line { color: var(--signal); }

.hero-copy {
  max-width: 36rem;
  margin: 2rem 0 0;
  color: #c8d0d2;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.privacy-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter);
}

.privacy-section::before {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-threads.svg") center / cover no-repeat;
  content: "";
  opacity: .08;
  pointer-events: none;
}

.article {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin-inline: auto;
}

.article h2 {
  margin: 3.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.article p,
.article li { color: var(--muted); }

.article ul { padding-left: 1.25rem; }

.article a {
  position: relative;
  color: var(--accent);
}

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

/* Chi sono */
.about-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.about-hero::before,
.about-hero::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-threads.svg") center / cover no-repeat;
  content: "";
  pointer-events: none;
}

.about-hero::before { opacity: .12; }
.about-hero::after {
  background-image: url("assets/overlay-constellation.svg");
  filter: invert(1) saturate(.7);
  opacity: .08;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  min-height: min(49rem, calc(100vh - 6.2rem));
  margin-inline: auto;
  padding: 5rem 0;
}

.about-hero h1 { max-width: 53rem; }
.about-hero h1 .accent-line { color: var(--signal); }

.about-hero-lede {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #c8d0d2;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.about-hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.3rem;
  color: var(--signal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-hero-visual {
  position: relative;
  height: clamp(25rem, 62vw, 42rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(237, 241, 242, .28);
  background: var(--ink-deep);
}

.about-hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1rem solid rgba(184, 199, 127, .1);
  content: "";
  pointer-events: none;
}

.about-hero-visual img { object-position: 50% 50%; }

.about-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  max-width: var(--max);
  margin-inline: auto;
}

.about-pull {
  max-width: 37rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .94;
  text-transform: uppercase;
}

.about-pull em,
.about-threshold blockquote em { color: var(--accent); font-style: normal; }

.about-prose {
  max-width: 41rem;
  padding-top: .5rem;
}

.about-prose p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.about-prose p:last-child { margin-bottom: 0; }

.about-section-intro,
.about-environment-inner,
.about-forms-head,
.about-invite-inner { max-width: var(--max); margin-inline: auto; }

.about-section-intro { margin-bottom: 3.5rem; }

.about-section-intro h2,
.about-forms-head h2,
.about-invite h2 {
  max-width: 55rem;
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.about-section-intro h2 .accent-line,
.about-forms-head h2 .accent-line,
.about-invite h2 .accent-line { color: var(--accent); }

.about-section-intro > p:not(.section-mark) {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
}

.about-practice-card {
  min-height: 14rem;
  padding: 1.5rem;
  border-top: 1px solid var(--ink);
  background: rgba(237, 241, 242, .52);
}

.about-practice-card b,
.about-action b {
  display: block;
  margin-bottom: 2rem;
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: .15em;
}

.about-practice-card h3 { margin-bottom: .65rem; font-size: 1.45rem; letter-spacing: -.04em; }
.about-practice-card p { max-width: 24rem; margin: 0; color: var(--muted); }

.about-environment h2 {
  max-width: 58rem;
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5.4vw, 6rem);
  letter-spacing: -.08em;
  text-transform: uppercase;
}

.about-environment h2 .accent-line { color: var(--signal); }

.about-environment-copy {
  max-width: 42rem;
  margin: 2rem 0 3rem;
  color: #c8d0d2;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.about-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.about-action {
  min-height: 8rem;
  padding: 1.2rem 1rem 0 0;
  border-right: 1px solid var(--line-dark);
}

.about-action:not(:first-child) { padding-left: 1rem; }
.about-action:last-child { border-right: 0; }
.about-action b { margin-bottom: 1.5rem; color: var(--signal); }
.about-action strong { font-size: 1rem; }

.about-threshold { text-align: center; }

.about-threshold blockquote {
  max-width: 67rem;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 7rem);
  font-weight: 700;
  letter-spacing: -.09em;
  line-height: .94;
  text-transform: uppercase;
}

.about-threshold cite {
  display: block;
  max-width: 34rem;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
}

.about-forms-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.about-forms-head > p { max-width: 25rem; margin: 0 0 .25rem; color: var(--muted); }

.about-forms-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max);
  margin-inline: auto;
}

.about-form-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 23rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .4);
  transition: transform .45s var(--ease), border-color .35s ease, background .35s ease;
}

.about-form-card:nth-child(4),
.about-form-card:nth-child(5) { grid-column: span 3; }
.about-form-card:hover { border-color: var(--accent); background: var(--paper); transform: translateY(-.3rem); }

.about-form-card-logo {
  display: grid;
  place-items: center;
  min-height: 8.5rem;
  margin-bottom: 1.3rem;
  padding: 1.2rem;
  color: var(--ink);
  background: #fff;
}

.about-form-card-logo img { width: min(100%, 12rem); height: 5.5rem; object-fit: contain; }
.about-form-card--big5 .about-form-card-logo { background: #f5f2e9; }
.about-form-card--sgusciato .about-form-card-logo { background: #f3e7d4; }

.about-form-card--facciamo .about-form-card-logo {
  display: flex;
  justify-content: center;
  gap: .75rem;
  color: #192333;
  background: #dff17d;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.04em;
}

.about-form-card--facciamo .about-form-card-logo img { width: 3rem; height: 3rem; }
.about-form-card h3 { margin-bottom: .65rem; font-size: 1.4rem; letter-spacing: -.04em; }
.about-form-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.about-form-card-link {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.about-form-card-link span { display: inline-block; transition: transform .35s var(--ease); }
.about-form-card-link:hover span { transform: translateX(.3rem); }

.about-invite-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, .7fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.about-invite h2 { max-width: 55rem; font-size: clamp(2.5rem, 5.5vw, 6rem); }
.about-invite h2 .accent-line { color: var(--signal); }
.about-invite p { max-width: 25rem; margin: 0 0 1.8rem; color: #c8d0d2; font-size: 1.05rem; }
.about-invite-note { margin-top: 1.5rem; color: var(--signal); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

@keyframes hero-drift {
  from { background-position: 50% 50%; }
  to { background-position: 53% 48%; }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

html.js [data-reveal="media"] {
  transform: scale(.97);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.js [data-delay="1"] { transition-delay: .08s; }
html.js [data-delay="2"] { transition-delay: .16s; }
html.js [data-delay="3"] { transition-delay: .24s; }
html.js [data-delay="4"] { transition-delay: .32s; }
html.js [data-delay="5"] { transition-delay: .4s; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: minmax(9rem, 1fr) auto minmax(8rem, 1fr); gap: 1rem; }
  .main-nav { gap: 1rem; }
  .split,
  .contact-grid,
  .intro-grid { grid-template-columns: 1fr; }
  .intro-heading,
  .intro-copy-wrap { text-align: center; }
  .intro-heading .display-title { align-items: center; }
  .intro-title,
  .split-copy,
  .contact-intro { margin-inline: auto; }
  .split-copy { max-width: 43rem; }
  .photo { height: 28rem; }
  .contact-intro { text-align: center; }
  .contact-intro h2,
  .contact-copy { margin-inline: auto; }
  .about-hero-inner,
  .about-statement-grid,
  .about-forms-head,
  .about-invite-inner { grid-template-columns: 1fr; }
  .about-hero-inner { min-height: auto; }
  .about-hero-visual { height: 30rem; }
  .about-forms-head { gap: 1rem; }
}

@media (max-width: 760px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    min-height: 5.5rem;
    padding: .7rem 0;
  }
  .site-logo img { width: 11rem; }
  .header-tools { margin-left: auto; }
  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .2rem;
    font-size: .67rem;
  }
  .hero { min-height: calc(100vh - 5.5rem); }
  .display-title { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .hero-signature { letter-spacing: .2em; text-indent: .2em; }
  .section { padding-block: 5rem; }
  .method-title-line { white-space: normal; }
  .method-grid,
  .door-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-practice-grid,
  .about-actions { grid-template-columns: 1fr; }
  .about-practice-card { min-height: auto; }
  .about-practice-card b { margin-bottom: 1.5rem; }
  .about-action,
  .about-action:not(:first-child),
  .about-action:last-child { min-height: auto; padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .about-action:last-child { border-bottom: 0; }
  .about-forms-grid { grid-template-columns: 1fr; }
  .about-form-card,
  .about-form-card:nth-child(4),
  .about-form-card:nth-child(5) { grid-column: auto; min-height: 20rem; }
}

@media (max-width: 460px) {
  .site-logo img { width: 9.5rem; }
  .header-tools { gap: .7rem; font-size: .64rem; }
  .main-nav { gap: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Chi sono — pagina editoriale */
.editorial-wrap {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.editorial-hero::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-threads.svg") center / cover no-repeat;
  content: "";
  opacity: .06;
  pointer-events: none;
}

.editorial-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(17rem, .56fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: min(48rem, calc(100vh - 6.2rem));
  padding-block: clamp(5rem, 10vw, 9rem);
}

.editorial-index,
.editorial-rail {
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.editorial-index {
  align-self: start;
  padding-top: .3rem;
  border-top: 1px solid var(--accent);
}

.editorial-index span { color: var(--muted); }

.editorial-hero-copy { padding-bottom: 1rem; }

.editorial-kicker {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.editorial-hero h1 {
  max-width: 46rem;
  font-size: clamp(3.3rem, 6.8vw, 8rem);
  font-weight: 700;
  letter-spacing: -.095em;
  line-height: .91;
  text-wrap: balance;
}

.editorial-hero h1 em { display: inline-block; color: var(--accent); font-style: normal; }

.editorial-no-break { white-space: nowrap; }

.editorial-lead {
  max-width: 35rem;
  margin: 2.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.editorial-signature {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.8rem;
  margin-top: 2.4rem;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-signature span + span::before {
  margin-right: 1.8rem;
  color: var(--accent);
  content: "—";
}

.editorial-hero-image {
  position: relative;
  height: clamp(25rem, 46vw, 39rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(24, 37, 59, .28);
  background: var(--ink);
}

.editorial-hero-image::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(184, 199, 127, .62);
  content: "";
  pointer-events: none;
}

.editorial-hero-image img { object-position: 50% 32%; }

.editorial-section,
.editorial-dark,
.editorial-pause,
.editorial-close {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 10rem);
}

.editorial-section::after,
.editorial-dark::after,
.editorial-pause::after,
.editorial-close::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-orbits.svg") center / 125% auto no-repeat;
  content: "";
  opacity: .045;
  pointer-events: none;
}

.editorial-section > *,
.editorial-dark > *,
.editorial-pause > *,
.editorial-close > * { position: relative; z-index: 1; }

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

.editorial-grid {
  display: grid;
  grid-template-columns: 7rem minmax(0, 49rem);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.editorial-rail {
  padding-top: .4rem;
  border-top: 1px solid currentColor;
}

.editorial-copy { max-width: 49rem; }

.editorial-copy h2,
.editorial-close h2 {
  max-width: 45rem;
  margin: 0 0 2rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .92;
  text-wrap: balance;
}

.editorial-copy > p:not(.editorial-kicker),
.editorial-close > .editorial-wrap > div > p:not(.editorial-kicker) {
  max-width: 42rem;
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.editorial-copy blockquote {
  max-width: 38rem;
  margin: 3.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .98;
}

.editorial-copy blockquote em { color: var(--accent); font-style: normal; }

.editorial-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.8rem;
  border-top: 1px solid var(--line);
}

.editorial-notes > div {
  min-height: 10rem;
  padding: 1rem 1rem 0 0;
  border-right: 1px solid var(--line);
}

.editorial-notes > div:last-child { border-right: 0; }
.editorial-notes span,
.editorial-sequence span { display: block; margin-bottom: 1.8rem; color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.editorial-notes h3 { margin-bottom: .5rem; font-size: 1.15rem; letter-spacing: -.03em; }
.editorial-notes p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }

.editorial-inline-words {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin-top: 2.8rem !important;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-size: .72rem !important;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.editorial-inline-words span + span::before {
  margin: 0 .65rem;
  color: var(--accent);
  content: "·";
}

.editorial-dark {
  color: var(--paper);
  background: var(--ink);
}

.editorial-dark::after,
.editorial-close::after { filter: invert(1) saturate(.7); opacity: .08; }
.editorial-dark .editorial-rail,
.editorial-close .editorial-rail { color: var(--signal); }
.editorial-dark .editorial-kicker { color: var(--signal); }
.editorial-dark .editorial-copy h2,
.editorial-close h2 { color: var(--paper); }
.editorial-dark .editorial-copy > p:not(.editorial-kicker),
.editorial-close > .editorial-wrap > div > p:not(.editorial-kicker) { color: #c8d0d2; }
.editorial-dark .editorial-copy blockquote { color: var(--paper); border-color: var(--line-dark); }
.editorial-dark .editorial-copy blockquote em { color: var(--signal); }
.editorial-inline-words--dark { color: var(--paper) !important; border-color: var(--line-dark); }
.editorial-inline-words--dark span + span::before { color: var(--signal); }

.editorial-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 3.7rem;
  border-top: 1px solid var(--line-dark);
}

.editorial-sequence > div {
  min-height: 8rem;
  padding: 1.1rem 1rem 0 0;
  border-right: 1px solid var(--line-dark);
}

.editorial-sequence > div:not(:first-child) { padding-left: 1rem; }
.editorial-sequence > div:last-child { border-right: 0; }
.editorial-sequence span { color: var(--signal); }
.editorial-sequence strong { font-size: .95rem; }

.editorial-pause {
  text-align: center;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.editorial-pause-inner { max-width: 72rem; }
.editorial-pause .editorial-kicker { text-align: center; }

.editorial-pause h2 {
  max-width: 45rem;
  margin: 0 auto 1.7rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  letter-spacing: -.07em;
  line-height: .95;
  text-wrap: balance;
}

.editorial-pause blockquote {
  max-width: 66rem;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 8rem);
  font-weight: 700;
  letter-spacing: -.1em;
  line-height: .9;
}

.editorial-pause blockquote em { color: var(--accent); font-style: normal; }
.editorial-pause-inner > p { max-width: 42rem; margin: 0 auto 1.35rem; color: var(--muted); line-height: 1.7; text-wrap: pretty; }
.editorial-pause-inner > p:last-child { max-width: 34rem; margin-top: 2.2rem; margin-bottom: 0; }

.editorial-forms { background: var(--paper); }

.editorial-forms-head {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
  margin-bottom: 4rem;
}

.editorial-forms-head h2 { max-width: 45rem; margin: 0 0 1rem; color: var(--ink); font-size: clamp(2.35rem, 4.4vw, 4.8rem); font-weight: 700; letter-spacing: -.065em; line-height: .92; text-wrap: balance; }
.editorial-forms-lead { max-width: 40rem; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; text-wrap: pretty; }

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

.editorial-form {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) 2rem;
  gap: 1.3rem;
  align-items: center;
  padding: 1.25rem 0;
  color: inherit;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .4s var(--ease), background .35s ease;
}

.editorial-form:hover { padding-inline: 1rem; background: rgba(255, 255, 255, .75); }
.editorial-form-number { color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }

.editorial-form-logo {
  display: grid;
  place-items: center;
  width: 9rem;
  height: 4.5rem;
  overflow: hidden;
  padding: .6rem;
  background: #fff;
}

.editorial-form-logo img { width: 100%; height: 100%; object-fit: contain; }
.editorial-form-logo--big5 { background: #f5f2e9; }
.editorial-form-logo--big5 img { transform: scale(1.12); }
.editorial-form-logo--sgusciato { background: #f3e7d4; }
.editorial-form-logo--sgusciato img { mix-blend-mode: multiply; transform: scale(1.08); }
.editorial-form-logo--fairquota {
  background: var(--ink);
  -webkit-mask-image: url("assets/projects/fairquota.webp");
  -webkit-mask-mode: luminance;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("assets/projects/fairquota.webp");
  mask-mode: luminance;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.editorial-form-logo--fairquota img { opacity: 0; }
.editorial-form-logo--facciamo { display: flex; align-items: center; justify-content: center; gap: .55rem; color: #192333; background: #dff17d; font-size: .85rem; font-weight: 700; letter-spacing: -.04em; }
.editorial-form-logo--facciamo img { width: 2.1rem; height: 2.1rem; }

.editorial-form-body strong { display: block; margin-bottom: .25rem; color: var(--ink); font-size: 1.35rem; letter-spacing: -.04em; text-wrap: balance; }
.editorial-form-body small { display: block; max-width: 42rem; color: var(--muted); font-size: .94rem; line-height: 1.5; text-wrap: pretty; }
.editorial-form-arrow { color: var(--accent); font-size: 1.5rem; transition: transform .35s var(--ease); }
.editorial-form:hover .editorial-form-arrow { transform: translate( .25rem, -.25rem); }

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

.editorial-contact::after {
  position: absolute;
  inset: 0;
  background: url("assets/overlay-threads.svg") center / cover no-repeat;
  content: "";
  opacity: .08;
  pointer-events: none;
}

.editorial-contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.editorial-contact-lead {
  max-width: 34rem;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1.02;
  text-wrap: pretty;
}

.editorial-contact-context {
  max-width: 31rem;
  margin: 1.6rem 0 0;
  color: #c8d0d2;
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.editorial-contact-context a {
  color: var(--paper);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.editorial-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.editorial-contact-secondary {
  color: var(--paper);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-contact-secondary span {
  display: inline-block;
  margin-left: .4rem;
  transition: transform .35s var(--ease);
}

.editorial-contact-secondary:hover span { transform: translateX(.3rem); }

.editorial-contact-email {
  font-size: .86rem;
  letter-spacing: .02em;
  text-transform: none;
}

.editorial-close { color: var(--paper); background: var(--ink-deep); }
.editorial-close h2 { max-width: 52rem; }
.editorial-close > .editorial-wrap > div > p:not(.editorial-kicker) { font-size: 1.25rem; }

@media (max-width: 980px) {
  .editorial-hero-grid { grid-template-columns: 4.5rem minmax(0, 1fr); }
  .editorial-hero-image { grid-column: 2; height: 28rem; }
  .editorial-grid,
  .editorial-forms-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .editorial-rail { max-width: 10rem; }
}

@media (max-width: 760px) {
  .editorial-hero-grid { display: block; min-height: auto; padding-block: 4.5rem 5rem; }
  .editorial-index { display: inline-block; margin-bottom: 3.5rem; }
  .editorial-hero h1 { font-size: clamp(2.45rem, 13vw, 5.4rem); }
  .editorial-hero-image { height: 24rem; margin-top: 3.5rem; }
  .editorial-section,
  .editorial-dark,
  .editorial-pause,
  .editorial-close { padding-block: 5rem; }
  .editorial-notes,
  .editorial-sequence { grid-template-columns: 1fr; }
  .editorial-notes > div,
  .editorial-sequence > div,
  .editorial-sequence > div:not(:first-child) { min-height: auto; padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-notes > div:last-child,
  .editorial-sequence > div:last-child { border-bottom: 0; }
  .editorial-notes span,
  .editorial-sequence span { margin-bottom: .6rem; }
  .editorial-form { grid-template-columns: 6.2rem minmax(0, 1fr); gap: .8rem; }
  .editorial-form-logo { width: 6.2rem; height: 3.7rem; }
  .editorial-form-body strong { font-size: 1.08rem; }
  .editorial-form-body small { font-size: .84rem; }
  .editorial-form-arrow { grid-column: 2; justify-self: end; margin-top: -.5rem; }
  .editorial-contact-inner { align-items: flex-start; flex-direction: column; }
}
