:root,
html[data-edition="aqhaw"] {
  --graphite-950: #0c0f13;
  --graphite-900: #151a21;
  --graphite-800: #202731;
  --paper: #f7f5ef;
  --ink: #14171b;
  --muted: #646a72;
  --muted-dark: #9ba3ad;
  --cobalt: #6e7dff;
  --cobalt-deep: #4f5fdc;
  --coral: #e97962;
  --line-light: #d9d8d1;
  --line-dark: #2b323c;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --container: 1220px;
  --radius: 2px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

body::selection {
  color: var(--paper);
  background: var(--cobalt-deep);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 64px), var(--container));
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  padding: 24px 0;
  color: var(--paper);
}

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

.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: visible;
}

.brand__mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.36rem;
  letter-spacing: -0.05em;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 0;
  padding: 8px 0 8px 18px;
  color: var(--muted-dark);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.language-toggle span {
  transition: color 180ms ease;
}

.language-toggle span.is-active {
  color: var(--paper);
}

.language-toggle:hover span,
.language-toggle:focus-visible span {
  color: var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247, 245, 239, 0.8);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:not(.button) {
  transition: color 180ms ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--paper);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--dark {
  color: var(--paper);
  background: var(--graphite-950);
  border-color: var(--graphite-950);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--graphite-950);
  background: transparent;
  border-color: var(--graphite-950);
}

.button--light {
  color: var(--graphite-950);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--paper);
  background: transparent;
}

.button--compact {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.66rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 17px;
  color: var(--cobalt-deep);
}

.text-link--light {
  color: var(--paper);
}

.text-link--light:hover,
.text-link--light:focus-visible {
  color: var(--cobalt);
}

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

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

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: end;
  padding: 148px max(32px, calc((100vw - var(--container)) / 2)) 78px;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  padding-bottom: 18px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.8vw, 6.65rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--cobalt);
  font-style: italic;
}

.hero__lede {
  max-width: 530px;
  margin: 42px 0 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 94px;
  color: #68717e;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 515px;
  align-self: center;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
}

.hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 515px;
  object-fit: cover;
  object-position: center;
}

.hero__visual-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(233, 121, 98, 0.12);
}

.signal-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 30px;
  padding: 34px max(32px, calc((100vw - var(--container)) / 2));
  color: var(--paper);
  background: var(--graphite-900);
}

.signal-strip__item {
  display: flex;
  align-items: baseline;
  gap: 17px;
}

.signal-strip__item strong {
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.signal-strip__item span {
  color: var(--muted-dark);
  font-size: 0.71rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-strip__rule {
  height: 38px;
  background: var(--line-dark);
}

.section {
  padding: 150px max(32px, calc((100vw - var(--container)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1.1fr) minmax(230px, 0.7fr);
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.section-heading__index {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: -10px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.section-heading > p:last-child {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.portfolio-block {
  margin-top: 132px;
}

.portfolio-block--future {
  margin-top: 116px;
}

.portfolio-block__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 20px;
}

.portfolio-block h3 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.status-label {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-label--coral {
  color: var(--coral);
}

.status-label--light {
  color: var(--muted-dark);
}

.portfolio-block__count {
  color: var(--cobalt-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.product-rows {
  border-bottom: 1px solid var(--line-light);
}

.product-row {
  display: grid;
  grid-template-columns: 75px minmax(180px, 0.8fr) minmax(200px, 1fr) 40px;
  gap: 20px;
  align-items: center;
  min-height: 89px;
  border-top: 1px solid var(--line-light);
  transition: padding 180ms ease, background-color 180ms ease;
}

.product-row:first-child {
  border-top: 0;
}

.product-row:hover,
.product-row:focus-visible {
  padding: 0 15px;
  background: rgba(110, 125, 255, 0.08);
}

.product-row__code {
  color: var(--muted);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
}

.product-row__name {
  font-family: var(--serif);
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.product-row__description {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-row__arrow {
  justify-self: end;
  color: var(--cobalt-deep);
  font-size: 1.25rem;
}

.slash {
  color: var(--coral);
}

.portfolio-block__note {
  max-width: 560px;
  margin: 19px 0 0 95px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.6;
}

.portfolio-block__intro {
  max-width: 590px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.family-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.family-teaser span {
  flex: 1 1 33.333%;
  min-height: 68px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 22px 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.family-teaser span:nth-child(3n) {
  border-right: 0;
}

.family-teaser span:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.vilanet-section {
  padding-top: 148px;
  padding-bottom: 46px;
}

.section-heading--dark {
  border-top-color: var(--line-dark);
}

.section-heading--dark > p:last-child {
  color: var(--muted-dark);
}

.vilanet-workbench {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.4fr);
  gap: 70px;
  margin-top: 116px;
}

.product-nav {
  display: flex;
  flex-direction: column;
  align-self: start;
  border-top: 1px solid var(--line-dark);
}

.product-nav__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  min-height: 76px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  color: var(--muted-dark);
  background: transparent;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease;
}

.product-nav__item:hover,
.product-nav__item:focus-visible,
.product-nav__item.is-active {
  padding-left: 12px;
  color: var(--paper);
}

.product-nav__item.is-active {
  box-shadow: inset 2px 0 0 var(--coral);
}

.product-nav__item span {
  color: var(--cobalt);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-nav__item strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.product-detail {
  min-height: 460px;
  border: 1px solid var(--line-dark);
  padding: 44px;
  background: var(--graphite-900);
}

.product-detail__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 19px;
}

.product-detail__id {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-detail h3 {
  max-width: 600px;
  margin: 63px 0 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.91;
}

.product-detail > p {
  max-width: 590px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.product-detail__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0 38px;
  padding: 0;
  list-style: none;
}

.product-detail__specs li {
  border-top: 1px solid var(--line-dark);
  padding-top: 12px;
  color: var(--muted-dark);
  font-size: 0.72rem;
  line-height: 1.5;
}

.section-footnote {
  max-width: 560px;
  margin: 50px 0 0 auto;
  color: var(--muted-dark);
  font-size: 0.74rem;
  line-height: 1.6;
}

.method-list {
  max-width: 880px;
  margin: 110px 0 0 auto;
}

.method-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line-light);
  padding: 28px 0 33px;
}

.method-item:last-child {
  border-bottom: 1px solid var(--line-light);
}

.method-item__number {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.method-item h3 {
  margin: -6px 0 9px;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.method-item p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.evidence-section {
  padding-top: 130px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 104px;
}

.evidence-item {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 21px 0 24px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.evidence-item:hover,
.evidence-item:focus-visible {
  border-color: var(--cobalt-deep);
  transform: translateY(-4px);
}

.evidence-item__kind {
  color: var(--cobalt-deep);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-item h3 {
  max-width: 290px;
  margin: 63px 0 17px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.evidence-item p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.evidence-item__link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cases-section {
  padding-top: 136px;
  padding-bottom: 132px;
}

.cases-section .evidence-item__kind {
  color: var(--coral);
}

.cases-section .section-heading--dark > p:last-child {
  color: var(--muted-dark);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  margin-top: 108px;
}

.case-item {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid var(--line-dark);
  padding-top: 21px;
}

.case-item h3 {
  margin: 63px 0 18px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.case-item p {
  max-width: 530px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.7;
}

.case-item .text-link {
  margin-top: auto;
  padding-top: 27px;
}

.case-item__status {
  margin-top: auto;
  padding-top: 27px;
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 110px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-coral {
  color: var(--graphite-950);
  background: var(--coral);
}

.contact-section .section-heading__index {
  color: rgba(12, 15, 19, 0.65);
}

.contact-section h2 {
  margin: 48px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.09em;
  line-height: 0.93;
}

.contact-section h2 em {
  color: var(--paper);
}

.contact-section__copy > p:last-child {
  max-width: 350px;
  margin: 37px 0 0;
  color: rgba(12, 15, 19, 0.73);
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
  align-self: end;
  padding-top: 15px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(12, 15, 19, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(12, 15, 19, 0.5);
  border-radius: 0;
  padding: 11px 0;
  outline: 0;
  color: var(--graphite-950);
  background: transparent;
  font-size: 1rem;
  line-height: 1.4;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--graphite-950);
  box-shadow: 0 2px 0 var(--graphite-950);
}

.contact-form > .button {
  justify-self: start;
  margin-top: 9px;
}

.form-note,
.form-success {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(12, 15, 19, 0.62);
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-error {
  color: #5a1310;
  font-weight: 700;
}

.field--honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.privacy-control {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.privacy-control input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.1rem;
  accent-color: #0c0f13;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-success {
  color: var(--graphite-950);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 31px max(32px, calc((100vw - var(--container)) / 2));
  color: var(--muted-dark);
  background: var(--graphite-950);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 15px;
  color: var(--paper);
}

.site-footer__brand .brand__name {
  font-size: 1.2rem;
  text-transform: none;
}

.site-footer__note {
  color: #68717e;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header {
    width: min(calc(100% - 44px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 0 8px 8px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 44px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-dark);
    padding: 9px;
    background: var(--graphite-900);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 63px;
    padding-top: 142px;
  }

  .hero__visual {
    min-height: 405px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .hero__visual img {
    min-height: 405px;
  }

  .section-heading {
    grid-template-columns: 0.4fr 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .vilanet-workbench,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 62px;
  }

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

  .evidence-item {
    min-height: 245px;
  }

  .case-grid {
    gap: 50px;
  }

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

  .product-detail {
    min-height: unset;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 34px);
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
    padding: 122px 17px 42px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero__lede {
    margin-top: 30px;
    font-size: 0.94rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero__foot {
    margin-top: 62px;
    line-height: 1.6;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 290px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px 17px;
  }

  .signal-strip__rule {
    width: 100%;
    height: 1px;
  }

  .section,
  .vilanet-section {
    padding: 91px 17px 72px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin: 26px 0 25px;
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .section-heading > p:last-child {
    max-width: 390px;
  }

  .portfolio-block,
  .portfolio-block--future {
    margin-top: 82px;
  }

  .portfolio-block__head {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .portfolio-block h3 {
    font-size: 2.15rem;
  }

  .portfolio-block__count {
    position: absolute;
    right: 17px;
  }

  .product-row {
    grid-template-columns: 38px 1fr 24px;
    gap: 10px;
    min-height: 97px;
  }

  .product-row__description {
    grid-column: 2 / -1;
    grid-row: 2;
    margin-top: -26px;
    padding-right: 15px;
  }

  .product-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .portfolio-block__note {
    margin-left: 0;
  }

  .family-teaser {
    display: block;
  }

  .family-teaser span,
  .family-teaser span:nth-child(3n),
  .family-teaser span:nth-last-child(-n + 3) {
    display: block;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    padding: 18px 0;
  }

  .family-teaser span:last-child {
    border-bottom: 0;
  }

  .vilaNet-workbench {
    margin-top: 77px;
  }

  .vilanet-workbench {
    gap: 36px;
    margin-top: 76px;
  }

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

  .product-nav__item {
    min-height: 68px;
  }

  .product-detail {
    padding: 25px 20px 28px;
  }

  .product-detail__topline {
    align-items: start;
    flex-direction: column;
    gap: 11px;
  }

  .product-detail h3 {
    margin-top: 47px;
    font-size: 3.6rem;
  }

  .product-detail__specs {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 44px;
  }

  .section-footnote {
    margin-top: 34px;
  }

  .method-list {
    margin-top: 70px;
  }

  .evidence-section {
    padding-top: 76px;
  }

  .evidence-grid {
    margin-top: 70px;
  }

  .evidence-item h3,
  .case-item h3 {
    margin-top: 42px;
  }

  .cases-section {
    padding-top: 82px;
    padding-bottom: 80px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .method-item {
    grid-template-columns: 48px 1fr;
    gap: 10px;
  }

  .method-item h3 {
    font-size: 1.85rem;
  }

  .contact-section {
    gap: 45px;
    padding-top: 86px;
  }

  .contact-section h2 {
    margin-top: 31px;
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

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

  .field--wide {
    grid-column: auto;
  }

  .contact-form > .button,
  .form-note,
  .form-success {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 17px;
  }

  .site-footer__note {
    text-align: left;
  }
}

/* V0.8 — atelier de producto y evidencia */

.site-header {
  width: min(calc(100% - 72px), 1360px);
}

.language-toggle {
  margin-right: 22px;
}

.hero {
  min-height: 900px;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.22fr);
  gap: 28px;
  align-items: stretch;
  padding: 154px max(36px, calc((100vw - 1360px) / 2)) 54px;
}

.hero__copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 8px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4.25rem, 7.1vw, 7.7rem);
  line-height: 0.86;
}

.hero__lede {
  max-width: 570px;
  margin-top: 40px;
  font-size: 1.07rem;
}

.hero__actions {
  margin-top: 38px;
}

.hero__territory {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 68px;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero__territory i {
  width: 16px;
  height: 1px;
  background: var(--coral);
}

.hero__foot {
  margin-top: 19px;
}

.hero__visual {
  min-height: 690px;
  align-self: stretch;
  border-left: 0;
}

.hero__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, var(--graphite-950) 0%, rgba(12, 15, 19, 0.34) 17%, transparent 42%);
  content: "";
  pointer-events: none;
}

.hero__visual img {
  min-height: 690px;
  object-position: center right;
}

.hero__visual-caption {
  z-index: 2;
}

.signal-strip {
  background: #11151b;
}

.section {
  padding-top: 166px;
  padding-bottom: 166px;
}

.section-heading {
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1.18fr) minmax(260px, 0.62fr);
}

.section-heading h2 {
  font-size: clamp(3.2rem, 5.35vw, 5.8rem);
}

.portfolio-block {
  margin-top: 146px;
}

.product-ledger-head {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.72fr) minmax(220px, 0.85fr) minmax(270px, 1fr) 30px;
  gap: 20px;
  border-bottom: 1px solid var(--line-light);
  padding: 13px 0;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-row {
  grid-template-columns: 64px minmax(180px, 0.72fr) minmax(220px, 0.85fr) minmax(270px, 1fr) 30px;
  min-height: 108px;
}

.product-row__state {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.product-row:hover,
.product-row:focus-visible {
  padding: 0 12px;
}

.vilanet-workbench {
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1.52fr);
  gap: 82px;
}

.product-detail {
  min-height: 590px;
  border-right: 0;
  border-left: 0;
  padding: 32px 0 0;
  background: transparent;
}

.product-detail h3 {
  margin-top: 58px;
}

.product-detail > p {
  max-width: 710px;
}

.product-evidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 68px 0 40px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.product-evidence > div {
  min-height: 150px;
  border-right: 1px solid var(--line-dark);
  padding: 18px 24px 22px 0;
}

.product-evidence > div + div {
  padding-left: 24px;
}

.product-evidence > div:last-child {
  border-right: 0;
}

.product-evidence span {
  color: var(--cobalt);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-evidence p {
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.65;
}

.method-list {
  max-width: 990px;
}

.method-item {
  grid-template-columns: 92px minmax(0, 1fr);
  padding: 34px 0 40px;
}

.evidence-ledger {
  margin-top: 112px;
  border-top: 1px solid var(--line-light);
}

.evidence-record {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(130px, 0.5fr) minmax(320px, 1.65fr) 32px;
  gap: 26px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, padding 180ms ease, background-color 180ms ease;
}

.evidence-record:hover,
.evidence-record:focus-visible {
  padding: 0 12px;
  color: var(--cobalt-deep);
  background: rgba(110, 125, 255, 0.07);
}

.evidence-record__type {
  color: var(--coral);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-record strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.evidence-record p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.evidence-record > span:last-child {
  justify-self: end;
  color: var(--cobalt-deep);
  font-size: 1.2rem;
}

.case-grid {
  gap: 34px;
}

.case-item {
  min-height: 650px;
  border-top: 0;
  padding-top: 0;
}

.case-item__visual {
  position: relative;
  width: 100%;
  height: 330px;
  margin: 0 0 23px;
  overflow: hidden;
  background: var(--graphite-900);
}

.case-item__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 245, 239, 0.12);
  box-shadow: inset 0 -90px 100px rgba(12, 15, 19, 0.18);
  content: "";
  pointer-events: none;
}

.case-item__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.06);
  transition: transform 450ms ease, filter 450ms ease;
}

.case-item:hover .case-item__visual img {
  transform: scale(1.025);
  filter: saturate(0.94) contrast(1.03);
}

.case-item h3 {
  margin-top: 38px;
}

.contact-section {
  min-height: 720px;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 132px;
}

.contact-section h2 {
  font-size: clamp(3.7rem, 5.8vw, 6.6rem);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  }

  .product-ledger-head,
  .product-row {
    grid-template-columns: 52px minmax(160px, 0.65fr) minmax(190px, 0.8fr) minmax(220px, 1fr) 26px;
    gap: 14px;
  }

  .case-item__visual {
    height: 290px;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 44px);
  }

  .language-toggle {
    margin-right: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero__visual {
    min-height: 560px;
    order: 2;
    border-top: 0;
  }

  .hero__visual img {
    min-height: 560px;
  }

  .product-ledger-head {
    display: none;
  }

  .product-row {
    grid-template-columns: 52px minmax(180px, 0.8fr) minmax(230px, 1fr) 30px;
    gap: 16px;
    padding: 22px 0;
  }

  .product-row__state {
    grid-column: 2 / 4;
  }

  .product-row__arrow {
    grid-column: 4;
    grid-row: 1;
  }

  .product-evidence {
    grid-template-columns: 1fr;
  }

  .product-evidence > div,
  .product-evidence > div + div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 20px 0 24px;
  }

  .product-evidence > div:last-child {
    border-bottom: 0;
  }

  .product-evidence p {
    margin-top: 14px;
  }

  .evidence-record {
    grid-template-columns: minmax(130px, 0.5fr) minmax(130px, 0.5fr) minmax(250px, 1fr) 25px;
    gap: 18px;
  }

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

  .case-item {
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  .hero {
    gap: 36px;
    padding: 122px 17px 30px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.6vw, 5.2rem);
  }

  .hero__territory {
    gap: 8px;
    margin-top: 52px;
    line-height: 1.8;
  }

  .hero__foot {
    margin-top: 14px;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 360px;
  }

  .hero__visual::before {
    background: linear-gradient(180deg, var(--graphite-950) 0%, transparent 31%);
  }

  .section {
    padding-top: 96px;
    padding-bottom: 84px;
  }

  .product-row {
    grid-template-columns: 38px 1fr 24px;
    min-height: 0;
    padding: 23px 0 25px;
  }

  .product-row__description {
    grid-column: 2 / 4;
    grid-row: auto;
    margin: 2px 0 0;
  }

  .product-row__state {
    grid-column: 2 / 4;
  }

  .product-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .product-detail {
    min-height: 0;
    padding: 24px 0 0;
  }

  .product-detail h3 {
    font-size: 3.45rem;
  }

  .product-evidence {
    margin-top: 48px;
  }

  .evidence-ledger {
    margin-top: 72px;
  }

  .evidence-record {
    grid-template-columns: 1fr 24px;
    gap: 10px 14px;
    padding: 24px 0;
  }

  .evidence-record__type,
  .evidence-record strong,
  .evidence-record p {
    grid-column: 1;
  }

  .evidence-record > span:last-child {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  .evidence-record p {
    max-width: 350px;
  }

  .case-item {
    min-height: 0;
    padding-bottom: 55px;
  }

  .case-item__visual {
    height: 260px;
  }

  .contact-section {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* V0.9 — mobile-native editorial composition.
   This final layer deliberately supersedes the two inherited responsive passes. */
@media (max-width: 720px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    min-width: 0;
    overflow-x: clip;
  }

  .page-shell {
    overflow: clip;
  }

  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 74px;
    transform: none;
    padding: 13px 17px;
    border-bottom: 1px solid var(--line-dark);
    color: var(--paper);
    background: var(--graphite-950);
  }

  .brand {
    flex: 0 1 auto;
    gap: 9px;
    min-width: 0;
  }

  .brand__mark,
  .brand__mark img {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    display: block;
    font-size: 1.08rem;
    letter-spacing: -0.04em;
  }

  .language-toggle {
    flex: 0 0 auto;
    margin: 0 8px 0 auto;
    padding: 9px 5px;
    color: #858d98;
    font-size: 0.62rem;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line-dark);
    padding: 0;
    color: var(--coral);
    background: var(--graphite-900);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    transform-origin: center;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle.is-open > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.is-open > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    top: 74px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 86px);
    overflow-y: auto;
    border-color: #353d48;
    padding: 10px;
    background: #131920;
  }

  .site-nav.is-open {
    display: grid;
  }

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

  .hero {
    position: relative;
    display: block;
    min-height: 0;
    padding: 122px 17px 0;
    overflow: hidden;
  }

  .hero__copy {
    display: block;
    max-width: none;
    padding: 0 0 286px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 13vw, 4.25rem);
    line-height: 0.88;
    letter-spacing: -0.075em;
  }

  .hero__lede {
    max-width: 37ch;
    margin-top: 27px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 16px;
    margin-top: 29px;
  }

  .hero__actions .button {
    min-width: 0;
    justify-content: space-between;
    padding-inline: 16px;
    font-size: 0.68rem;
  }

  .hero__actions .text-link {
    align-self: center;
    font-size: 0.61rem;
    white-space: nowrap;
  }

  .hero__territory {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    margin-top: 38px;
    padding-bottom: 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .hero__territory::-webkit-scrollbar,
  .signal-strip::-webkit-scrollbar,
  .family-teaser::-webkit-scrollbar,
  .product-nav::-webkit-scrollbar {
    display: none;
  }

  .hero__territory span {
    flex: 0 0 auto;
  }

  .hero__territory i {
    flex: 0 0 13px;
  }

  .hero__foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
    font-size: 0.56rem;
    line-height: 1.5;
  }

  .hero__visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 268px;
    min-height: 0;
    border: 0;
    opacity: 0.94;
  }

  .hero__visual::before {
    background: linear-gradient(180deg, var(--graphite-950) 0%, rgba(12, 15, 19, 0.32) 34%, transparent 68%);
  }

  .hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 70% 58%;
  }

  .hero__visual-caption {
    right: 17px;
    bottom: 15px;
    max-width: calc(100% - 34px);
    font-size: 0.56rem;
  }

  .signal-strip {
    display: flex;
    gap: 0;
    padding: 0 17px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .signal-strip__item {
    min-height: 88px;
    flex: 0 0 72vw;
    gap: 13px;
    padding: 18px 20px 18px 0;
    border-right: 1px solid var(--line-dark);
    scroll-snap-align: start;
  }

  .signal-strip__item + .signal-strip__item {
    padding-left: 20px;
  }

  .signal-strip__item strong {
    font-size: 2rem;
  }

  .signal-strip__rule {
    display: none;
  }

  .section,
  .vilanet-section {
    padding: 86px 17px 78px;
    overflow: clip;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading h2 {
    max-width: 10ch;
    margin: 25px 0 22px;
    font-size: clamp(2.75rem, 12.5vw, 3.8rem);
    line-height: 0.93;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    max-width: 38ch;
    font-size: 0.9rem;
  }

  .portfolio-block,
  .portfolio-block--future {
    margin-top: 70px;
  }

  .portfolio-block__head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
  }

  .portfolio-block__count {
    position: static;
    align-self: start;
  }

  .portfolio-block h3 {
    font-size: 2rem;
  }

  .product-ledger-head {
    display: none;
  }

  .product-row {
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 7px 12px;
    min-height: 0;
    padding: 23px 0 25px;
  }

  .product-row:hover,
  .product-row:focus-visible {
    padding-inline: 8px;
  }

  .product-row__code {
    grid-column: 1;
    grid-row: 1;
  }

  .product-row__name {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 1.19rem;
    overflow-wrap: anywhere;
  }

  .product-row__description,
  .product-row__state {
    grid-column: 2 / 4;
    margin: 0;
    padding: 0;
  }

  .product-row__description {
    grid-row: 2;
  }

  .product-row__state {
    grid-row: 3;
    font-size: 0.7rem;
  }

  .product-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .portfolio-block__note {
    margin-left: 44px;
  }

  .family-teaser {
    display: flex;
    flex-wrap: nowrap;
    margin-right: -17px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .family-teaser span,
  .family-teaser span:nth-child(3n),
  .family-teaser span:nth-last-child(-n + 3) {
    display: flex;
    min-height: 72px;
    flex: 0 0 55vw;
    align-items: center;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    padding: 18px;
    scroll-snap-align: start;
  }

  .vilanet-section {
    padding-right: 0;
    padding-left: 0;
  }

  .vilanet-section > .section-heading,
  .vilanet-workbench,
  .section-footnote {
    margin-right: 17px;
    margin-left: 17px;
  }

  .vilanet-workbench {
    display: block;
    width: auto;
    min-width: 0;
    margin-top: 58px;
  }

  .product-nav {
    display: flex;
    width: auto;
    margin-right: -17px;
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-nav__item {
    min-width: 0;
    min-height: 78px;
    flex: 0 0 64vw;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 10px;
    border-right: 1px solid var(--line-dark);
    padding: 0 14px;
    scroll-snap-align: start;
  }

  .product-nav__item:hover,
  .product-nav__item:focus-visible,
  .product-nav__item.is-active {
    padding-left: 14px;
  }

  .product-nav__item.is-active {
    color: var(--paper);
    background: var(--graphite-900);
    box-shadow: inset 0 -3px 0 var(--coral);
  }

  .product-nav__item strong {
    min-width: 0;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

  .product-detail {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 31px 0 0;
  }

  .product-detail__topline {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .product-detail h3 {
    max-width: 9ch;
    margin: 38px 0 18px;
    font-size: clamp(2.85rem, 13vw, 4rem);
    overflow-wrap: anywhere;
  }

  .product-detail > p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .product-evidence {
    display: block;
    margin: 46px 0 31px;
  }

  .product-evidence > div,
  .product-evidence > div + div {
    display: grid;
    grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 19px 0 21px;
  }

  .product-evidence > div:last-child {
    border-bottom: 0;
  }

  .product-evidence p {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
  }

  .product-detail > .button {
    width: 100%;
    justify-content: space-between;
  }

  .section-footnote {
    margin-top: 37px;
  }

  .method-list {
    margin-top: 62px;
  }

  .method-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    padding: 25px 0 28px;
  }

  .method-item h3 {
    font-size: 1.75rem;
  }

  .evidence-ledger {
    margin-top: 65px;
  }

  .evidence-record {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 9px 12px;
    padding: 21px 0;
  }

  .evidence-record__type,
  .evidence-record strong,
  .evidence-record p {
    grid-column: 1;
  }

  .evidence-record > span:last-child {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

  .case-grid {
    margin-top: 67px;
  }

  .case-item {
    min-height: 0;
    padding-bottom: 48px;
  }

  .case-item__visual {
    height: min(67vw, 280px);
  }

  .case-item h3 {
    margin-top: 33px;
  }

  .contact-section {
    min-height: 0;
    gap: 40px;
  }

  .contact-section h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 13.5vw, 4.2rem);
  }

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

  .field--wide,
  .contact-form > .button,
  .form-note,
  .form-success,
  .form-error {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 12px;
    align-items: start;
    padding: 28px 17px;
  }

  .site-footer__note {
    grid-column: 1 / -1;
    text-align: left;
  }
}

/* Edition boundary: Narnia's global stylesheet is bundled by the shared root
   route. These higher-specificity rules keep its generic shell selectors from
   mutating the Âqhâw! edition. */
html[data-edition="aqhaw"] {
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
}

html[data-edition="aqhaw"] body {
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

html[data-edition="aqhaw"] .site-header {
  position: absolute;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

html[data-edition="aqhaw"] .site-footer {
  border-top: 0;
  padding: 31px max(32px, calc((100vw - var(--container)) / 2));
  color: var(--muted-dark);
  background: var(--graphite-950);
  font-size: 0.68rem;
}

@media (max-width: 720px) {
  html[data-edition="aqhaw"] .site-header {
    position: absolute;
    border-bottom: 1px solid var(--line-dark);
    padding: 13px 17px;
    background: var(--graphite-950);
  }

  html[data-edition="aqhaw"] .site-footer {
    padding: 28px 17px;
  }
}

@media (max-width: 360px) {
  .hero__actions {
    grid-template-columns: 1fr;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .hero__actions .button {
    font-size: 0.64rem;
    white-space: nowrap;
  }
}
