:root {
  --alv-ink: #17201b;
  --alv-ink-2: #253129;
  --alv-forest: #304036;
  --alv-sage: #6d7c70;
  --alv-bronze: #a7794f;
  --alv-bronze-dark: #805934;
  --alv-paper: #f2f0ea;
  --alv-paper-2: #e7e4dc;
  --alv-white: #fff;
  --alv-text: #2d3831;
  --alv-muted: #667069;
  --alv-line: rgba(23, 32, 27, 0.16);
  --alv-line-light: rgba(255, 255, 255, 0.18);
  --alv-display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --alv-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --alv-container: 1280px;
  --alv-gutter: clamp(20px, 4vw, 64px);
  --alv-section: clamp(76px, 10vw, 144px);
  --alv-radius: 2px;
  --alv-shadow: 0 24px 70px rgba(23, 32, 27, 0.12);
}

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

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

body.aluvello-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--alv-white);
  color: var(--alv-text);
  font-family: var(--alv-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--alv-bronze-dark);
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #d4985c;
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.55em;
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 6.9rem);
}

h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.75rem);
}

h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

h4 {
  font-size: 1.35rem;
}

p,
ul,
ol,
blockquote,
table {
  margin-top: 0;
}

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

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

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

.dark-section,
.alv-section--dark {
  background: var(--alv-ink);
  color: rgba(255, 255, 255, 0.78);
}

.dark-section :where(h1, h2, h3, h4),
.alv-section--dark :where(h1, h2, h3, h4) {
  color: var(--alv-white);
}

.eyebrow,
.alv-eyebrow {
  margin: 0 0 20px;
  color: var(--alv-bronze-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light,
.dark-section .eyebrow,
.alv-section--dark .alv-eyebrow {
  color: #d9b38c;
}

.lead-copy,
.alv-lead {
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

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

.screen-reader-text:focus {
  top: 12px;
  left: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--alv-white);
  color: var(--alv-ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--alv-white);
  color: var(--alv-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.button,
.alv-button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid var(--alv-ink);
  border-radius: 0;
  background: var(--alv-ink);
  color: var(--alv-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.alv-button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  border-color: var(--alv-bronze);
  background: var(--alv-bronze);
  color: var(--alv-white);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 0.68rem;
}

.button-light,
.alv-button--light {
  border-color: var(--alv-white);
  background: var(--alv-white);
  color: var(--alv-ink);
}

.button-light:hover,
.alv-button--light:hover {
  border-color: #d8c3ac;
  background: #d8c3ac;
  color: var(--alv-ink);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--alv-white);
}

.button-ghost-light:hover {
  border-color: var(--alv-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--alv-white);
}

.button-row,
.alv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link,
.alv-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--alv-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span,
.alv-link span {
  transition: transform 180ms ease;
}

.text-link:hover,
.alv-link:hover {
  color: var(--alv-bronze-dark);
}

.text-link:hover span,
.alv-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--alv-line);
  background: rgba(255, 255, 255, 0.98);
}

.admin-bar .site-header {
  top: 32px;
}

.site-announcement {
  background: var(--alv-ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-inner a {
  color: var(--alv-white);
  text-decoration: none;
}

.header-inner {
  display: grid;
  min-height: 90px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--alv-ink);
  line-height: 1;
  text-decoration: none;
}

.wordmark:hover {
  color: var(--alv-ink);
}

.wordmark-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wordmark-main {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wordmark-line {
  color: var(--alv-muted);
  font-family: var(--alv-display);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.primary-navigation {
  justify-self: end;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 38px);
}

.primary-menu a {
  position: relative;
  display: block;
  padding-block: 31px;
  color: var(--alv-ink);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--alv-bronze);
  content: "";
  transition: transform 180ms ease;
}

.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current-menu-ancestor > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-menu .sub-menu {
  position: absolute;
  min-width: 230px;
  padding: 12px 20px;
  border: 1px solid var(--alv-line);
  background: var(--alv-white);
  box-shadow: var(--alv-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  padding: 12px 0;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--alv-ink);
}

.menu-toggle-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: flex;
  width: 23px;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(46px, 6vw, 82px);
  color: var(--alv-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--alv-ink);
  text-decoration: none;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 124px));
  overflow: hidden;
  background: #101712;
}

.home-hero-media,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-media img,
.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  background: linear-gradient(120deg, #121a15 0%, #2d3b32 52%, #6d746e 100%);
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 17, 13, 0.9) 0%, rgba(11, 17, 13, 0.61) 46%, rgba(11, 17, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(11, 17, 13, 0.58) 0%, transparent 48%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(860px, calc(100svh - 124px));
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(92px, 13vh, 158px) 46px;
}

.home-hero-copy {
  max-width: 900px;
}

.home-hero h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: var(--alv-white);
  text-wrap: balance;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.home-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero-notes span {
  display: flex;
  align-items: center;
}

.home-hero-notes span:not(:last-child)::after {
  width: 38px;
  height: 1px;
  margin-inline: 18px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.split-intro h2 {
  max-width: 560px;
}

.intro-copy {
  max-width: 700px;
}

.intro-copy > :last-child {
  margin-bottom: 0;
}

.section-heading,
.compact-heading {
  margin-bottom: clamp(52px, 7vw, 92px);
}

.compact-heading {
  max-width: 880px;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
}

.heading-row > :last-child {
  justify-self: end;
}

.heading-row-light > p {
  max-width: 490px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.product-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 78px);
}

.product-system-card {
  min-width: 0;
}

.product-card-offset {
  margin-top: clamp(0px, 8vw, 110px);
}

.product-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #d9d8d1;
  color: var(--alv-ink);
}

.product-card-media img,
.product-card-media .media-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.product-card-media:hover img {
  transform: scale(1.025);
}

.product-card-index {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  color: var(--alv-ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-card-body {
  padding: 32px 4px 0;
}

.product-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card-body > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--alv-muted);
}

.media-placeholder {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: end start;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.18) 47% 48%, transparent 48%),
    repeating-linear-gradient(0deg, #59645d 0 12px, #657168 12px 14px);
  color: var(--alv-white);
}

.media-placeholder::before {
  position: absolute;
  inset: 14% 18%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-bottom-width: 6px;
  content: "";
}

.media-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--alv-line);
  border: 1px solid var(--alv-line);
}

.selection-card {
  min-height: 490px;
  padding: clamp(38px, 5vw, 74px);
  background: var(--alv-white);
}

.selection-card-dark {
  background: var(--alv-forest);
  color: rgba(255, 255, 255, 0.73);
}

.selection-card-dark h3 {
  color: var(--alv-white);
}

.selection-number {
  display: block;
  margin-bottom: clamp(90px, 12vw, 160px);
  color: var(--alv-bronze);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.selection-card h3 {
  max-width: 440px;
}

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

.plain-list {
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.plain-list li {
  padding: 12px 0;
  border-top: 1px solid var(--alv-line);
  font-size: 0.83rem;
  font-weight: 600;
}

.selection-card-dark .plain-list li {
  border-color: var(--alv-line-light);
}

.selection-note {
  max-width: 880px;
  margin: 38px auto 0;
  text-align: center;
}

.selection-note a {
  font-weight: 700;
}

.audience-section {
  overflow: hidden;
}

.audience-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 110px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--alv-line-light);
  border-bottom: 1px solid var(--alv-line-light);
}

.audience-grid article {
  min-height: 370px;
  padding: 36px clamp(22px, 3vw, 46px) 40px;
  border-right: 1px solid var(--alv-line-light);
}

.audience-grid article:first-child {
  padding-left: 0;
}

.audience-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.audience-grid article > span {
  display: block;
  margin-bottom: 82px;
  color: #d9b38c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.audience-grid h3 {
  color: var(--alv-white);
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.65);
}

.audience-grid a {
  color: var(--alv-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
}

.process-heading {
  position: sticky;
  top: 34px;
}

.process-heading > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--alv-muted);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: none;
}

.process-list li {
  display: grid;
  padding: 36px 0 42px;
  border-top: 1px solid var(--alv-line);
  grid-template-columns: 70px 1fr;
  gap: 24px;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--alv-line);
}

.process-list li > span {
  color: var(--alv-bronze-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.process-list p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--alv-muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 54px 27px 0;
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: var(--alv-bronze-dark);
  content: "+";
  font-family: var(--alv-sans);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 48px 27px 0;
  margin: 0;
  color: var(--alv-muted);
}

.home-faq .aluvello-faq {
  display: block;
  gap: 0;
}

.home-faq .aluvello-faq details {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--alv-line);
  border-radius: 0;
  background: transparent;
}

.home-faq .aluvello-faq details:last-child {
  border-bottom: 1px solid var(--alv-line);
}

.home-faq .aluvello-faq summary {
  position: relative;
  padding: 27px 54px 27px 0;
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  font-weight: 400;
  line-height: 1.3;
}

.home-faq .aluvello-faq summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: var(--alv-bronze-dark);
  content: "+";
  font-family: var(--alv-sans);
}

.home-faq .aluvello-faq details[open] summary::after {
  content: "−";
}

.home-faq .aluvello-faq__answer {
  max-width: 720px;
  padding: 0 48px 27px 0;
  color: var(--alv-muted);
}

.home-faq .aluvello-faq__answer p {
  margin: 0;
}

/* Page, archive and managed content */
.page-hero,
.archive-hero,
.article-hero {
  padding-block: clamp(70px, 9vw, 130px);
}

.page-hero-inner,
.article-hero-inner {
  max-width: 1050px;
  margin-inline: auto;
}

.archive-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.archive-hero .breadcrumbs {
  margin-bottom: 54px;
}

.archive-hero h1 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.archive-intro {
  padding-bottom: 14px;
}

.archive-intro p {
  color: var(--alv-muted);
}

.comparison-table,
.configuration-table,
.alv-table,
.alv-page table,
.managed-page-content table,
.managed-product-content table,
.prose-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
}

.comparison-table {
  color: rgba(255, 255, 255, 0.72);
}

.comparison-table th,
.comparison-table td,
.configuration-table th,
.configuration-table td,
.alv-table th,
.alv-table td,
.alv-page th,
.alv-page td,
.managed-page-content th,
.managed-page-content td,
.managed-product-content th,
.managed-product-content td,
.prose-content th,
.prose-content td {
  padding: 24px 22px;
  border-top: 1px solid var(--alv-line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th,
.comparison-table td {
  border-color: var(--alv-line-light);
}

.comparison-table thead th,
.configuration-table thead th,
.alv-table thead th,
.alv-page thead th,
.managed-page-content thead th,
.managed-product-content thead th,
.prose-content thead th {
  color: var(--alv-bronze-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.comparison-table thead th {
  color: #d9b38c;
}

.comparison-table tbody th,
.configuration-table tbody th {
  width: 23%;
  color: inherit;
  font-weight: 700;
}

.comparison-action {
  margin-top: 40px;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.table-scroll table {
  min-width: 760px;
}

.managed-breadcrumbs {
  padding-top: 34px;
}

.managed-breadcrumbs .breadcrumbs {
  margin-bottom: 0;
}

.alv-page,
.managed-page-content,
.managed-product-content {
  overflow: hidden;
}

.alv-home,
.alv-products-overview,
.alv-product-page,
.alv-about-page,
.alv-faq-page,
.alv-rfq-page,
.alv-legal-page {
  position: relative;
  isolation: isolate;
}

.alv-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 132px);
  background: var(--alv-ink);
  color: rgba(255, 255, 255, 0.76);
}

.alv-hero::after {
  position: absolute;
  top: -40%;
  right: -10%;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.018), 0 0 0 180px rgba(255, 255, 255, 0.012);
  content: "";
  pointer-events: none;
}

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

.alv-hero :where(h1, h2, h3) {
  color: var(--alv-white);
}

.alv-hero h1 {
  max-width: 1000px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  text-wrap: balance;
}

.alv-hero p {
  max-width: 760px;
}

.alv-hero .alv-lead {
  color: rgba(255, 255, 255, 0.78);
}

.alv-hero .alv-eyebrow {
  color: #e3c09d;
}

.alv-hero__inner {
  display: flex;
  min-height: min(700px, 72svh);
  flex-direction: column;
  justify-content: center;
}

.alv-hero--home {
  min-height: min(760px, 78svh);
}

.alv-hero--product {
  background: linear-gradient(125deg, var(--alv-ink), #27362d);
}

.alv-hero--compact,
.alv-hero--legal {
  padding-block: clamp(72px, 9vw, 124px);
}

.alv-hero--compact h1,
.alv-hero--legal h1 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}

.alv-narrow {
  max-width: 940px;
}

.alv-legal-copy {
  max-width: 880px;
}

.alv-legal-copy h2 {
  margin-top: 2em;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.alv-legal-copy h2:first-child {
  margin-top: 0;
}

.alv-kicker {
  margin: 0 0 18px;
  color: var(--alv-bronze-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.alv-section--dark .alv-kicker,
.alv-cta-band .alv-kicker {
  color: #e3c09d;
}

.alv-section--tint,
.alv-section--rfq,
.alv-section--faq {
  background: var(--alv-paper);
}

.alv-section--boundary {
  padding-block: clamp(40px, 6vw, 76px);
  background: #faf9f6;
}

.alv-section--answer .alv-narrow > p:last-child {
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.alv-section-heading {
  max-width: 900px;
  margin-bottom: clamp(46px, 7vw, 86px);
}

.alv-grid--align-start {
  align-items: start;
}

.alv-hero__product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.alv-hero__copy h1 {
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
}

.alv-hero__copy .alv-actions,
.alv-hero__copy .button-row {
  margin-top: 34px;
}

.alv-hero__media .product-gallery {
  color: var(--alv-ink);
}

.alv-section h2 {
  max-width: 920px;
}

.alv-section p {
  max-width: 800px;
}

.alv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
}

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

.alv-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alv-card {
  min-width: 0;
  padding: clamp(28px, 3.5vw, 50px);
  border: 1px solid var(--alv-line);
  background: var(--alv-white);
}

.alv-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.alv-card > :last-child {
  margin-bottom: 0;
}

.alv-card--product,
.alv-card--feature {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
}

.alv-card--product .alv-text-link,
.alv-card--feature .alv-button,
.alv-card--feature .alv-text-link {
  margin-top: auto;
}

.alv-card--feature h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.alv-card--facts {
  background: var(--alv-paper);
}

.alv-card__number {
  display: block;
  margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--alv-bronze-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.alv-spec-list {
  width: 100%;
  margin: 20px 0 34px;
}

.alv-spec-list > div {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid var(--alv-line);
  grid-template-columns: minmax(105px, 0.33fr) minmax(0, 0.67fr);
  gap: 18px;
}

.alv-spec-list > div:last-child {
  border-bottom: 1px solid var(--alv-line);
}

.alv-spec-list dt {
  color: var(--alv-bronze-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alv-spec-list dd {
  margin: 0;
}

.alv-checklist {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.alv-checklist--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
}

.alv-checklist li {
  position: relative;
  padding: 17px 0 17px 28px;
  margin: 0;
  border-top: 1px solid var(--alv-line);
}

.alv-checklist li::before {
  position: absolute;
  top: 24px;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--alv-bronze);
  content: "";
}

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

.alv-steps li {
  min-height: 330px;
  padding: 30px 26px;
  margin: 0;
  border-right: 1px solid var(--alv-line-light);
  border-bottom: 1px solid var(--alv-line-light);
}

.alv-steps li > span {
  display: block;
  margin-bottom: 90px;
  color: #e3c09d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.alv-steps p {
  color: rgba(255, 255, 255, 0.66);
}

.alv-note,
.aluvello-source-boundary {
  padding: 18px 22px;
  margin: 30px 0;
  border-left: 3px solid var(--alv-bronze);
  background: rgba(167, 121, 79, 0.1);
  color: var(--alv-text);
  font-size: 0.86rem;
}

.alv-proofline {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.alv-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--alv-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.alv-text-link:hover {
  color: var(--alv-bronze-dark);
}

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

.alv-text-link--light:hover {
  color: #f0d2b4;
}

.alv-actions--end {
  justify-content: flex-end;
}

.alv-button--secondary {
  border-color: currentColor;
  background: transparent;
  color: var(--alv-ink);
}

.alv-button--primary {
  border-color: var(--alv-ink);
  background: var(--alv-ink);
  color: var(--alv-white);
}

.alv-hero .alv-button--primary,
.alv-section--dark .alv-button--primary {
  border-color: var(--alv-white);
  background: var(--alv-white);
  color: var(--alv-ink);
}

.alv-hero .alv-button--secondary,
.alv-section--dark .alv-button--secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--alv-white);
}

.alv-button--secondary:hover {
  border-color: var(--alv-bronze);
  background: var(--alv-bronze);
  color: var(--alv-white);
}

.alv-cta-band {
  padding: clamp(52px, 7vw, 90px) var(--alv-gutter);
  background: var(--alv-forest);
  color: rgba(255, 255, 255, 0.76);
}

.alv-cta-band > .alv-container {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.alv-cta-band :where(h2, h3) {
  color: var(--alv-white);
}

.alv-cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.alv-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.alv-table-wrap .alv-table {
  min-width: 760px;
}

.aluvello-breadcrumbs {
  width: min(calc(100% - (2 * var(--alv-gutter))), var(--alv-container));
  padding-top: 25px;
  margin: 0 auto;
  color: var(--alv-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.alv-page .aluvello-breadcrumbs ol,
.managed-page-content .aluvello-breadcrumbs ol,
.managed-product-content .aluvello-breadcrumbs ol {
  gap: 9px;
  font-size: inherit;
}

.alv-page .aluvello-breadcrumbs a,
.managed-page-content .aluvello-breadcrumbs a,
.managed-product-content .aluvello-breadcrumbs a {
  color: var(--alv-ink);
  text-decoration: none;
}

.alv-page .aluvello-breadcrumbs li:not(:last-child)::after,
.managed-page-content .aluvello-breadcrumbs li:not(:last-child)::after,
.managed-product-content .aluvello-breadcrumbs li:not(:last-child)::after {
  margin-left: 9px;
}

.alv-page .aluvello-faq,
.managed-page-content .aluvello-faq,
.managed-product-content .aluvello-faq {
  gap: 0;
}

.alv-page .aluvello-faq details,
.managed-page-content .aluvello-faq details,
.managed-product-content .aluvello-faq details {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--alv-line);
  border-radius: 0;
  background: transparent;
}

.alv-page .aluvello-faq details:last-child,
.managed-page-content .aluvello-faq details:last-child,
.managed-product-content .aluvello-faq details:last-child {
  border-bottom: 1px solid var(--alv-line);
}

.alv-page .aluvello-faq summary,
.managed-page-content .aluvello-faq summary,
.managed-product-content .aluvello-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 400;
}

.alv-page .aluvello-faq summary::after,
.managed-page-content .aluvello-faq summary::after,
.managed-product-content .aluvello-faq summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: var(--alv-bronze-dark);
  content: "+";
  font-family: var(--alv-sans);
}

.alv-page .aluvello-faq details[open] summary::after,
.managed-page-content .aluvello-faq details[open] summary::after,
.managed-product-content .aluvello-faq details[open] summary::after {
  content: "−";
}

.alv-page .aluvello-faq__answer,
.managed-page-content .aluvello-faq__answer,
.managed-product-content .aluvello-faq__answer {
  max-width: 760px;
  padding: 0 48px 24px 0;
  color: var(--alv-muted);
}

.alv-page .aluvello-facts,
.managed-page-content .aluvello-facts,
.managed-product-content .aluvello-facts {
  margin-bottom: 0;
}

.alv-page .aluvello-facts th,
.alv-page .aluvello-facts td,
.managed-page-content .aluvello-facts th,
.managed-page-content .aluvello-facts td,
.managed-product-content .aluvello-facts th,
.managed-product-content .aluvello-facts td {
  padding: 15px 0;
  border-bottom: 1px solid var(--alv-line);
}

.alv-page .aluvello-facts th,
.managed-page-content .aluvello-facts th,
.managed-product-content .aluvello-facts th {
  width: 38%;
  padding-right: 18px;
  color: var(--alv-bronze-dark);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alv-list,
.alv-page .alv-section ul:not(.alv-checklist),
.managed-page-content .alv-section ul:not(.alv-checklist),
.managed-product-content .alv-section ul:not(.alv-checklist) {
  padding-left: 1.2em;
}

.alv-list li,
.alv-page .alv-section ul:not(.alv-checklist) > li,
.managed-page-content .alv-section ul:not(.alv-checklist) > li,
.managed-product-content .alv-section ul:not(.alv-checklist) > li {
  margin-bottom: 0.65em;
}

.prose-content,
.article-content {
  max-width: 900px;
}

.prose-content > :where(p, ul, ol, blockquote),
.article-content > :where(p, ul, ol, blockquote) {
  max-width: 760px;
}

.prose-content h2,
.prose-content h3,
.article-content h2,
.article-content h3 {
  margin-top: 1.6em;
}

.prose-content blockquote,
.article-content blockquote {
  padding: 16px 0 16px 32px;
  border-left: 2px solid var(--alv-bronze);
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: 1.35rem;
}

/* Product gallery and product fallback template */
.product-breadcrumbs {
  padding-top: 34px;
}

.product-breadcrumbs .breadcrumbs {
  margin-bottom: 0;
}

.product-hero {
  padding-bottom: clamp(70px, 9vw, 130px);
}

.product-hero-grid {
  display: grid;
  padding-top: 50px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.product-hero-copy h1 {
  font-size: clamp(2.8rem, 4.7vw, 5.2rem);
}

.product-lead {
  margin-bottom: 28px;
  color: var(--alv-muted);
  font-size: 1.08rem;
}

.product-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--alv-line);
  border-bottom: 1px solid var(--alv-line);
  color: var(--alv-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--alv-bronze);
}

.button-stack {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.product-qualifier {
  margin-top: 30px;
  color: var(--alv-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.product-gallery-main {
  position: relative;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  background: #d7d8d3;
}

.product-gallery-main img,
.product-gallery-main .media-placeholder,
.product-gallery-empty .media-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 11px;
  background: rgba(23, 32, 27, 0.82);
  color: var(--alv-white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-gallery-thumbs {
  display: grid;
  margin-top: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  background: #ddd;
  opacity: 0.66;
  transition: opacity 160ms ease, border-color 160ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: var(--alv-bronze-dark);
  opacity: 1;
}

.alv-hero .gallery-thumb.is-active {
  border-color: #d9b38c;
}

.image-qualifier {
  margin: 20px 0 0;
  color: var(--alv-muted);
  font-size: 0.78rem;
}

.managed-default-gallery h2 {
  max-width: 760px;
}

.managed-default-gallery .product-gallery {
  max-width: 980px;
  margin-top: 42px;
}

.highlight-grid {
  display: grid;
  padding: 0;
  margin: clamp(55px, 8vw, 100px) 0 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--alv-line-light);
  border-left: 1px solid var(--alv-line-light);
  list-style: none;
}

.highlight-grid li {
  min-height: 250px;
  padding: 28px 24px;
  border-right: 1px solid var(--alv-line-light);
  border-bottom: 1px solid var(--alv-line-light);
}

.highlight-grid span {
  display: block;
  margin-bottom: 64px;
  color: #d9b38c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.highlight-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.context-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.context-grid > div > p:last-child {
  color: var(--alv-muted);
}

.context-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.context-list li {
  display: grid;
  padding: 26px 0;
  border-top: 1px solid var(--alv-line);
  grid-template-columns: 54px 1fr;
  color: var(--alv-ink);
  font-family: var(--alv-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.context-list li:last-child {
  border-bottom: 1px solid var(--alv-line);
}

.context-list span {
  color: var(--alv-bronze-dark);
  font-family: var(--alv-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.related-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.related-grid > div > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.67);
}

.related-media {
  display: block;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #4e5a52;
}

.related-media img,
.related-media .media-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generic-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

/* Forms */
.alv-form,
.aluvello-rfq,
.wpforms-container,
.wpcf7 {
  max-width: 980px;
}

.alv-form-grid,
.aluvello-rfq-grid,
.wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.alv-page .aluvello-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.alv-page .aluvello-rfq__intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.alv-page .aluvello-rfq__form {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--alv-line);
  border-radius: 0;
  background: var(--alv-white);
}

.alv-page .aluvello-field {
  gap: 7px;
  margin: 0;
}

.alv-page .aluvello-field--full {
  grid-column: 1 / -1;
}

.alv-page .aluvello-field input:not([type="checkbox"]),
.alv-page .aluvello-field select,
.alv-page .aluvello-field textarea {
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 32, 27, 0.25);
  border-radius: 0;
  background: var(--alv-white);
}

.alv-page .aluvello-field textarea {
  min-height: 160px;
}

.alv-page .aluvello-readonly {
  padding: 13px 15px;
  border: 1px solid var(--alv-line);
  border-radius: 0;
  background: var(--alv-paper);
}

.alv-page .aluvello-consent label {
  color: var(--alv-text);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.alv-page .aluvello-rfq__submit {
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--alv-ink);
  border-radius: 0;
  background: var(--alv-ink);
  color: var(--alv-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alv-page .aluvello-rfq__submit:hover {
  border-color: var(--alv-bronze);
  background: var(--alv-bronze);
}

.alv-page .aluvello-form-note {
  margin-top: 16px;
  color: var(--alv-muted);
}

.alv-field,
.aluvello-rfq-field,
.wpforms-field {
  min-width: 0;
  margin: 0 0 24px;
}

.alv-field--wide,
.aluvello-rfq-field--wide,
.wpforms-field-textarea,
.wpforms-field-file-upload,
.wpforms-field-checkbox {
  grid-column: 1 / -1;
}

label,
.wpforms-field-label {
  display: block;
  margin-bottom: 8px;
  color: var(--alv-ink);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="date"],
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 32, 27, 0.25);
  border-radius: 0;
  background: var(--alv-white);
  box-shadow: none;
  color: var(--alv-ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--alv-bronze-dark);
  box-shadow: 0 0 0 3px rgba(167, 121, 79, 0.15);
  outline: 0;
}

input[type="file"] {
  width: 100%;
  padding: 14px;
  border: 1px dashed rgba(23, 32, 27, 0.35);
  background: var(--alv-paper);
}

.form-help,
.wpforms-field-description {
  margin-top: 7px;
  color: var(--alv-muted);
  font-size: 0.76rem;
}

.wpforms-submit-container {
  margin-top: 26px;
}

/* Journal and 404 */
.journal-grid {
  display: grid;
  gap: 50px;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.journal-card-image {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-featured {
  margin-top: 60px;
}

.article-featured img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.not-found-inner {
  display: grid;
  min-height: 70svh;
  padding-block: clamp(80px, 12vw, 170px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: center;
}

.not-found-code {
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--alv-display);
  font-size: clamp(9rem, 24vw, 25rem);
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.not-found-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.67);
}

/* Footer */
.footer-cta {
  padding-block: clamp(72px, 10vw, 130px);
  background: var(--alv-bronze);
  color: rgba(255, 255, 255, 0.85);
}

.footer-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.footer-cta h2 {
  max-width: 800px;
  color: var(--alv-white);
}

.footer-cta-copy p {
  margin-bottom: 30px;
}

.footer-main {
  padding-top: clamp(70px, 9vw, 120px);
  background: #101713;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(40px, 6vw, 90px);
}

.wordmark-footer {
  margin-bottom: 26px;
  color: var(--alv-white);
}

.wordmark-footer:hover {
  color: var(--alv-white);
}

.wordmark-footer .wordmark-mark {
  filter: invert(1);
}

.wordmark-footer .wordmark-line {
  color: rgba(255, 255, 255, 0.57);
}

.footer-brand p {
  max-width: 340px;
}

.footer-column h2 {
  margin-bottom: 24px;
  color: var(--alv-white);
  font-family: var(--alv-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 11px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--alv-white);
}

.footer-qualifier {
  display: flex;
  padding-block: 34px;
  margin-top: 72px;
  border-top: 1px solid var(--alv-line-light);
  justify-content: space-between;
  gap: 32px;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.footer-qualifier p {
  max-width: 820px;
  margin: 0;
}

/* Remove commerce UI that does not belong in a quotation flow. */
.woocommerce .price,
.woocommerce div.product form.cart,
.woocommerce .quantity,
.woocommerce .product_meta,
.woocommerce-breadcrumb,
.woocommerce-ordering,
.woocommerce-result-count,
.tm-minicart,
.header-cart,
.mobile-tab-link.cart-link {
  display: none !important;
}

/* Tablet */
@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-quote {
    justify-self: end;
  }

  .js .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 120px);
    padding: 18px var(--alv-gutter) 30px;
    overflow-y: auto;
    border-top: 1px solid var(--alv-line);
    background: var(--alv-white);
    box-shadow: 0 22px 40px rgba(23, 32, 27, 0.1);
  }

  .site-header.is-menu-open .primary-navigation {
    display: block;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu a,
  .primary-menu .sub-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--alv-line);
    font-size: 0.78rem;
  }

  .primary-menu > li > a::after {
    display: none;
  }

  .primary-menu .sub-menu {
    position: static;
    padding: 0 0 0 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-menu-open .menu-toggle-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .alv-grid--4,
  .highlight-grid,
  .alv-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --alv-section: clamp(66px, 11vw, 96px);
  }

  h1 {
    font-size: clamp(2.8rem, 10vw, 5.6rem);
  }

  .home-hero,
  .home-hero-inner {
    min-height: 720px;
  }

  .home-hero-shade {
    background: linear-gradient(90deg, rgba(11, 17, 13, 0.9), rgba(11, 17, 13, 0.4)), linear-gradient(0deg, rgba(11, 17, 13, 0.55), transparent 55%);
  }

  .split-intro,
  .archive-hero-grid,
  .process-layout,
  .faq-layout,
  .context-grid,
  .related-grid,
  .footer-cta-grid,
  .alv-hero__product-grid,
  .product-hero-grid,
  .generic-product-grid,
  .not-found-inner {
    grid-template-columns: 1fr;
  }

  .heading-row,
  .alv-cta-band > .alv-container {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .heading-row > :last-child {
    justify-self: start;
  }

  .process-heading {
    position: static;
  }

  .product-hero-grid,
  .alv-hero__product-grid {
    gap: 54px;
  }

  .alv-hero__media {
    order: 2;
  }

  .alv-hero__copy {
    order: 1;
  }

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

  .audience-grid article,
  .audience-grid article:first-child,
  .audience-grid article:last-child {
    min-height: 0;
    padding: 36px 0;
    border-right: 0;
    border-bottom: 1px solid var(--alv-line-light);
  }

  .audience-grid article > span {
    margin-bottom: 34px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .not-found-code {
    font-size: clamp(9rem, 40vw, 18rem);
  }
}

@media (max-width: 720px) {
  body.aluvello-site {
    font-size: 16px;
  }

  .site-announcement {
    display: none;
  }

  .header-inner {
    min-height: 78px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-quote {
    display: none;
  }

  .wordmark-mark {
    width: 35px;
    height: 35px;
  }

  .wordmark-main {
    font-size: 0.9rem;
  }

  .wordmark-line {
    font-size: 0.59rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .home-hero,
  .home-hero-inner {
    min-height: calc(100svh - 78px);
  }

  .home-hero-inner {
    padding-block: 75px 30px;
  }

  .home-hero-shade {
    background: linear-gradient(0deg, rgba(11, 17, 13, 0.86), rgba(11, 17, 13, 0.38) 75%), linear-gradient(90deg, rgba(11, 17, 13, 0.64), transparent);
  }

  .home-hero h1,
  .alv-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
  }

  .home-hero-notes span:not(:last-child)::after {
    width: 18px;
    margin-inline: 10px;
  }

  .product-system-grid,
  .selection-grid,
  .alv-grid,
  .alv-grid--2,
  .alv-grid--3,
  .alv-grid--4,
  .highlight-grid,
  .alv-form-grid,
  .aluvello-rfq-grid,
  .alv-page .aluvello-form-grid,
  .wpforms-field-container,
  .journal-card,
  .alv-steps,
  .alv-checklist--columns {
    grid-template-columns: 1fr;
  }

  .alv-page .aluvello-field--full {
    grid-column: auto;
  }

  .product-card-offset {
    margin-top: 18px;
  }

  .selection-card {
    min-height: 0;
  }

  .selection-number {
    margin-bottom: 74px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .product-gallery-thumbs {
    display: flex;
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .gallery-thumb {
    width: 74px;
    flex: 0 0 74px;
  }

  .comparison-table th,
  .comparison-table td,
  .configuration-table th,
  .configuration-table td,
  .alv-table th,
  .alv-table td,
  .alv-page th,
  .alv-page td,
  .managed-page-content th,
  .managed-page-content td,
  .managed-product-content th,
  .managed-product-content td,
  .prose-content th,
  .prose-content td {
    padding: 18px 15px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-qualifier {
    flex-direction: column;
  }

  .not-found-inner {
    min-height: 62svh;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  :root {
    --alv-gutter: 18px;
  }

  .button,
  .alv-button,
  .wp-element-button,
  button[type="submit"],
  input[type="submit"] {
    width: 100%;
  }

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

  .selection-card,
  .alv-card {
    padding: 28px 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .button,
  .alv-button,
  .product-gallery-thumbs {
    display: none !important;
  }

  body.aluvello-site {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .dark-section,
  .alv-hero,
  .alv-section--dark {
    color: #000;
    background: #fff;
  }

  .dark-section :where(h1, h2, h3),
  .alv-hero :where(h1, h2, h3) {
    color: #000;
  }
}

/* Parent-theme storefront fallbacks must never obscure the B2B catalogue. */
.modal-promo-popup,
#page-mobile-tabs,
#popup-fly-cart,
.modal-user-login,
.modal-lost-password,
.modal-user-register,
.woocommerce-modal-popup,
#popup-search,
#page-mobile-main-menu,
#modal-user-login,
#modal-user-lost-password,
#modal-user-register,
#modal-product-question,
#modal-product-share,
#modal-product-write-review,
#modal-cart-order-notes,
#modal-cart-shipping-calculator,
#modal-cart-coupon {
  display: none !important;
}
