@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Space+Grotesk:wght@400;500&display=swap";

@layer theme {

  :root,
  :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --spacing: .25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono)
  }
}

@layer base {

  *,
  :after,
  :before {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
  }

  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
  }

  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit
  }

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

  b,
  strong {
    font-weight: bolder
  }

  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em
  }

  small {
    font-size: 80%
  }

  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative
  }

  sub {
    bottom: -.25em
  }

  sup {
    top: -.5em
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
  }

  :-moz-focusring {
    outline: auto
  }

  progress {
    vertical-align: baseline
  }

  summary {
    display: list-item
  }

  ol,
  ul,
  menu {
    list-style: none
  }

  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block
  }

  img,
  video {
    max-width: 100%;
    height: auto
  }

  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px
  }

  ::file-selector-button {
    margin-inline-end: 4px
  }

  ::placeholder {
    opacity: 1
  }

  @supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px) {
    ::placeholder {
      color: currentColor
    }

    @supports (color:color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent)
      }
    }
  }

  textarea {
    resize: vertical
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit
  }

  ::-webkit-datetime-edit {
    display: inline-flex
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0
  }

  ::-webkit-datetime-edit {
    padding-block: 0
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1
  }

  :-moz-ui-invalid {
    box-shadow: none
  }

  button,
  input:where([type=button], [type=reset], [type=submit]) {
    -webkit-appearance: button;
    appearance: button
  }

  ::file-selector-button {
    -webkit-appearance: button;
    appearance: button
  }

  ::-webkit-inner-spin-button {
    height: auto
  }

  ::-webkit-outer-spin-button {
    height: auto
  }

  [hidden]:where(:not([hidden=until-found])) {
    display: none !important
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible
  }

  .fixed {
    position: fixed
  }

  .relative {
    position: relative
  }

  .static {
    position: static
  }

  .start {
    inset-inline-start: var(--spacing)
  }

  .end {
    inset-inline-end: var(--spacing)
  }

  .grid {
    display: grid
  }

  .hidden {
    display: none
  }

  .table {
    display: table
  }
}

:root {
  --ink: #30383a;
  --paper: #eff1ee;
  --blue: #29bce9;
  --line: #c8cfca;
  --font-display: var(--font-space-grotesk), "Space Grotesk", sans-serif;
  --font-ui: var(--font-manrope), "Manrope", sans-serif;
  --type-display: clamp(4rem, 8vw, 8.125rem);
  --type-major: clamp(3rem, 6vw, 6rem);
  --type-section: clamp(2.25rem, 4vw, 4.5rem);
  --type-body-large: clamp(1.125rem, 1.35vw, 1.375rem);
  --type-body: clamp(1rem, 1.1vw, 1.125rem);
  --type-meta: clamp(.75rem, .8vw, .875rem);
  --ease-text: power3.out;
  --ease-spatial: power2.inOut;
  --ease-ui: power2.out
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--type-body);
  margin: 0;
  line-height: 1.5
}

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

h1,
h2,
h3,
p {
  margin: 0
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -.032em;
  font-weight: 500;
  line-height: .96
}

h1 {
  font-size: var(--type-display)
}

h2 {
  font-size: var(--type-major)
}

h3 {
  font-size: var(--type-section)
}

h1 em,
h2 em {
  color: #737d7e;
  font-style: normal
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  letter-spacing: .16em;
  font-weight: 600
}

.blue {
  color: #0c7ea0
}

.nav {
  border-bottom: 1px solid var(--line);
  z-index: 5;
  background: var(--paper);
  justify-content: space-between;
  align-items: center;
  height: 92px;
  padding: 0 4vw;
  display: flex;
  position: relative
}

.nav img {
  object-fit: contain
}

.nav nav {
  align-items: center;
  gap: 38px;
  font-size: 13px;
  display: flex
}

.nav nav a:hover {
  color: #0c7ea0
}

.nav-cta {
  background: var(--ink);
  padding: 15px 20px;
  color: #fff !important
}

.nav-cta span,
.button span {
  color: var(--blue);
  margin-left: 20px
}

.menu {
  letter-spacing: .12em;
  background: 0 0;
  border: 0;
  display: none
}

.button {
  background: var(--blue);
  letter-spacing: .06em;
  padding: 17px 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block
}

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

.inner-hero {
  padding: 120px 8vw 80px
}

.inner-hero h1 {
  margin-top: 35px
}

.inner-hero-image {
  height: 480px;
  margin-top: 70px;
  position: relative
}

.inner-hero-image img,
.detail-image img,
.contact-bottom img {
  object-fit: cover
}

.gallery-intro {
  color: #666;
  max-width: 430px;
  margin: 35px 0 0 auto;
  line-height: 1.5
}

.split-copy,
.contact-page {
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 130px 8vw;
  display: grid
}

.split-copy p,
.contact-lede {
  color: #555;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.55
}

.about-cards {
  background: #aaa;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid
}

.about-cards article {
  background: #e6e5e0;
  padding: 55px 4vw
}

.about-cards span {
  color: #1597c0;
  font: 12px monospace
}

.about-cards h3 {
  margin: 55px 0 18px;
  font-size: 25px;
  font-weight: 500
}

.about-cards p {
  color: #666;
  line-height: 1.5
}

.hero {
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - 92px);
  display: grid;
  position: relative
}

.hero-image,
.feature-image,
.detail-image {
  position: relative
}

.hero-image {
  min-height: 620px
}

.hero-image img,
.feature-image img,
.card-image img,
.gallery-img img {
  object-fit: cover
}

.hero-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 11vw 6vw 5vw;
  display: flex
}

.lede {
  color: #555;
  max-width: 370px;
  margin: 40px 0 30px;
  font-size: 18px;
  line-height: 1.45
}

.dimension {
  color: #777;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  font: 11px monospace;
  display: flex
}

.dimension i {
  background: var(--blue);
  width: 120px;
  height: 1px;
  display: block
}

.hero-index {
  font: 12px monospace;
  position: absolute;
  bottom: 30px;
  left: 4vw
}

.intro,
.section-heading,
.contact {
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 150px 8vw;
  display: grid
}

.intro-body {
  max-width: 460px;
  padding-top: 40px
}

.intro-body p,
.feature-copy>p,
.contact>div:first-child>p:not(.eyebrow) {
  color: #555;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.55
}

.text-link {
  border-bottom: 1px solid var(--ink);
  margin-top: 16px;
  padding-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block
}

.text-link span {
  color: #1597c0;
  margin-left: 22px
}

.product-section {
  background: #e6e5e0;
  padding: 120px 4vw
}

.section-heading {
  padding: 0 4vw 80px
}

.section-heading>p {
  color: #666;
  align-self: end;
  max-width: 350px;
  line-height: 1.5
}

.product-grid,
.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 18px;
  display: grid
}

.catalog-grid {
  padding: 0 8vw 130px
}

.card-image {
  background: #d5d3cd;
  height: 290px;
  position: relative;
  overflow: hidden
}

.product-card:hover .card-image img {
  transform: scale(1.04)
}

.card-image img {
  transition: transform .5s
}

.card-meta {
  border-bottom: 1px solid #aaa;
  grid-template-columns: 30px 1fr 20px;
  align-items: start;
  padding: 18px 0 12px;
  display: grid
}

.card-meta>span:first-child {
  color: #888;
  font: 11px monospace
}

.card-meta h3 {
  letter-spacing: -.04em;
  font-size: 20px;
  font-weight: 500
}

.arrow {
  color: #1597c0
}

.product-card p {
  color: #666;
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.4
}

.feature {
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: 1fr 1fr;
  display: grid
}

.feature-image {
  min-height: 700px
}

.feature-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw 10vw 8vw 8vw;
  display: flex
}

.feature-copy h2 {
  margin-bottom: 42px
}

.feature-copy>p:not(.eyebrow) {
  color: #aaa;
  max-width: 430px
}

.gallery {
  padding: 145px 8vw
}

.gallery .section-heading {
  padding: 0 0 65px
}

.gallery-grid,
.full-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  display: grid
}

.gallery-grid {
  grid-template-rows: 280px 280px
}

.gallery-img {
  position: relative;
  overflow: hidden
}

.gallery-img img {
  transition: transform .5s
}

.gallery-img:hover img {
  transform: scale(1.04)
}

.g0 {
  grid-row: span 2
}

.g3 {
  grid-column: span 2
}

.full-gallery {
  grid-auto-rows: 300px;
  padding: 0 8vw 130px
}

.full-gallery .gallery-item:nth-child(3n+1) {
  grid-row: span 2
}

.quote {
  background: var(--blue);
  text-align: center;
  padding: 120px 16vw
}

.quote blockquote {
  letter-spacing: -.05em;
  max-width: 900px;
  margin: 45px auto 32px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02
}

.quote-by {
  letter-spacing: .14em;
  font: 11px monospace
}

.contact {
  background: #deddd7
}

.contact-info,
.contact-card {
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  display: flex
}

.big-link {
  letter-spacing: -.05em;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 3.3rem)
}

.big-link span {
  color: #1597c0;
  float: right
}

.contact-info p,
.contact-card p {
  color: #666;
  margin-top: 20px;
  line-height: 1.5
}

.contact-bottom {
  color: #fff;
  align-items: center;
  height: 600px;
  padding: 8vw;
  display: flex;
  position: relative
}

.contact-bottom:after {
  content: "";
  background: #1118;
  position: absolute;
  inset: 0
}

.contact-bottom>div {
  z-index: 1;
  position: relative
}

.contact-bottom h2 {
  margin: 35px 0
}

.product-detail-hero {
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  display: grid
}

.product-detail-hero>div:first-child {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw 8vw;
  display: flex
}

.detail-intro {
  color: #666;
  max-width: 470px;
  margin: 40px 0;
  font-size: 17px;
  line-height: 1.55
}

.detail-image {
  min-height: 690px
}

.spec-section {
  background: #e6e5e0;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 130px 8vw;
  display: grid
}

.spec-list>div {
  border-bottom: 1px solid #aaa;
  grid-template-columns: 40px 1fr;
  padding: 20px 0;
  display: grid
}

.spec-list span {
  color: #1597c0;
  font: 11px monospace
}

.spec-list strong {
  font-size: 20px;
  font-weight: 500
}

.spec-note {
  color: #666;
  margin-top: 35px;
  line-height: 1.5
}

.craft-line {
  background: var(--blue);
  letter-spacing: -.04em;
  text-align: center;
  padding: 75px 15vw;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05
}

footer {
  background: var(--ink);
  color: #aaa;
  align-items: center;
  gap: 35px;
  padding: 28px 4vw;
  font-size: 11px;
  display: flex
}

footer img {
  filter: grayscale()brightness(2);
  margin-right: auto
}

@media (max-width:800px) {
  .nav {
    height: 76px
  }

  .nav nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 6vw;
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0
  }

  .nav nav.open {
    display: flex
  }

  .menu {
    display: block
  }

  .hero {
    flex-direction: column-reverse;
    display: flex
  }

  .hero-image {
    min-height: 55vh
  }

  .hero-copy {
    padding: 70px 7vw
  }

  .hero-copy h1,
  .inner-hero h1 {
    font-size: 15vw
  }

  .intro,
  .section-heading,
  .contact,
  .split-copy,
  .contact-page {
    padding: 90px 7vw;
    display: block
  }

  .intro-body {
    padding-top: 50px
  }

  .section-heading>p {
    margin-top: 40px
  }

  .product-section {
    padding: 90px 7vw
  }

  .section-heading {
    padding: 0 0 55px
  }

  .product-grid,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 14px
  }

  .catalog-grid {
    padding: 0 7vw 80px
  }

  .card-image {
    height: 210px
  }

  .card-meta h3 {
    font-size: 17px
  }

  .feature,
  .product-detail-hero {
    flex-direction: column;
    display: flex
  }

  .feature-image {
    min-height: 55vh
  }

  .feature-copy {
    padding: 80px 7vw
  }

  .inner-hero {
    padding: 75px 7vw
  }

  .inner-hero-image {
    height: 300px;
    margin-top: 45px
  }

  .about-cards {
    display: block
  }

  .about-cards article {
    padding: 40px 7vw
  }

  .about-cards h3 {
    margin: 28px 0 15px
  }

  .gallery {
    padding: 90px 7vw
  }

  .gallery-grid,
  .full-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px
  }

  .full-gallery {
    padding: 0 7vw 80px
  }

  .full-gallery .gallery-item:nth-child(3n+1) {
    grid-row: span 1
  }

  .quote {
    padding: 85px 9vw
  }

  .contact-info {
    margin-top: 55px
  }

  .contact-bottom {
    height: 470px;
    padding: 50px 7vw
  }

  .detail-image {
    min-height: 420px
  }

  .product-detail-hero>div:first-child {
    padding: 75px 7vw
  }

  .spec-section {
    padding: 75px 7vw;
    display: block
  }

  .spec-list {
    margin-top: 50px
  }

  .spec-list strong {
    font-size: 17px
  }

  footer {
    flex-wrap: wrap;
    gap: 15px
  }

  footer img {
    flex-basis: 100%;
    width: 120px;
    height: auto;
    margin: 0 0 15px
  }
}

.catalog-hero {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 8vw;
  padding: 118px 8vw 76px;
  display: grid
}

.catalog-hero h1 {
  margin-top: 34px
}

.catalog-hero-note {
  max-width: 360px;
  padding-bottom: 6px
}

.catalog-hero-note>p {
  color: #555;
  font-size: 17px;
  line-height: 1.5
}

.catalog-proof {
  color: #777;
  border-top: 1px solid #aaa;
  gap: 18px;
  margin-top: 42px;
  padding-top: 16px;
  font: 10px monospace;
  display: flex
}

.catalog-proof span {
  white-space: nowrap
}

.catalog-intro {
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 37px 8vw 0;
  display: grid
}

.catalog-intro>p:last-child {
  color: #666;
  max-width: 460px;
  line-height: 1.5
}

.catalog-intro+.catalog-grid {
  padding-top: 62px
}

.card-meta small {
  letter-spacing: .12em;
  color: #1597c0;
  margin-bottom: 7px;
  font: 10px monospace;
  display: block
}

.card-link {
  letter-spacing: .04em;
  margin-top: 21px;
  font-size: 11px;
  font-weight: 700;
  display: block
}

.card-link b {
  color: #1597c0;
  margin-left: 8px;
  font-size: 16px
}

.product-card:hover .card-link {
  color: #1597c0
}

@media (max-width:800px) {
  .catalog-hero {
    padding: 75px 7vw 52px;
    display: block
  }

  .catalog-hero h1 {
    font-size: 15vw
  }

  .catalog-hero-note {
    margin-top: 52px
  }

  .catalog-proof {
    justify-content: space-between;
    gap: 9px
  }

  .catalog-proof span {
    font-size: 9px
  }

  .catalog-intro {
    padding: 30px 7vw 0;
    display: block
  }

  .catalog-intro>p:last-child {
    margin-top: 20px
  }

  .catalog-intro+.catalog-grid {
    padding-top: 55px
  }

  .card-meta small {
    font-size: 9px
  }
}

.nav-products {
  position: relative
}

.nav-products-trigger {
  align-items: center;
  gap: 6px;
  display: flex
}

.nav-products-trigger>a {
  display: block
}

.nav-products-trigger button {
  color: inherit;
  font: inherit;
  cursor: pointer;
  background: 0 0;
  border: 0;
  padding: 3px 1px;
  line-height: 1;
  transform: translateY(-1px)
}

.nav-products:hover .nav-products-trigger button,
.nav-products:focus-within .nav-products-trigger button,
.nav-products.is-open .nav-products-trigger button {
  color: #1597c0
}

.product-menu {
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
  background: #faf9f6;
  width: 620px;
  padding: 25px 28px 30px;
  transition: opacity .2s, top .2s;
  position: absolute;
  top: calc(100% + 34px);
  left: 50%;
  transform: translate(-38%);
  box-shadow: 0 18px 40px #191b1c18
}

.product-menu:before {
  content: "";
  height: 35px;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0
}

.nav-products:hover .product-menu,
.nav-products:focus-within .product-menu,
.nav-products.is-open .product-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 16px)
}

.product-menu-head {
  border-bottom: 1px solid var(--line);
  letter-spacing: .15em;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 17px;
  font-size: 10px;
  font-weight: 700;
  display: flex
}

.product-menu-head a {
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 700
}

.product-menu-head a:hover {
  color: #1597c0
}

.product-menu-groups {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  display: grid
}

.product-menu-groups>div>p {
  letter-spacing: .12em;
  color: #1597c0;
  margin-bottom: 8px;
  font: 10px monospace
}

.product-menu-groups a {
  text-transform: capitalize;
  border-bottom: 1px solid #deddd7;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  display: flex
}

.product-menu-groups a:hover {
  color: #1597c0
}

.product-menu-groups a span {
  color: #1597c0;
  opacity: 0;
  font-size: 15px;
  transition: opacity .2s, transform .2s;
  transform: translate(-4px)
}

.product-menu-groups a:hover span {
  opacity: 1;
  transform: translate(0)
}

@media (max-width:800px) {
  .nav nav {
    gap: 0
  }

  .nav-products {
    width: 100%
  }

  .nav-products-trigger {
    justify-content: space-between;
    width: 100%
  }

  .nav-products-trigger button {
    padding: 8px 0;
    font-size: 20px
  }

  .nav-products.is-open .nav-products-trigger button {
    transform: rotate(180deg)
  }

  .product-menu {
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: 0 0;
    border: 0;
    padding: 16px 0 8px;
    display: none;
    position: static;
    transform: none
  }

  .nav-products.is-open .product-menu {
    display: block
  }

  .product-menu:before {
    display: none
  }

  .product-menu-head {
    margin-bottom: 12px;
    padding-bottom: 12px
  }

  .product-menu-groups {
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }

  .product-menu-groups>div>p {
    font-size: 9px
  }

  .product-menu-groups a {
    padding: 9px 0;
    font-size: 13px
  }

  .product-menu-groups a span {
    opacity: 1;
    transform: none
  }

  .nav nav>a {
    width: 100%;
    padding-top: 20px
  }

  .nav nav .nav-cta {
    width: auto;
    margin-top: 16px
  }
}

.nav {
  height: 72px;
  padding: 0 clamp(24px, 4vw, 64px)
}

.nav>a {
  align-items: center;
  height: 100%;
  display: flex
}

.nav>a img {
  width: 142px;
  height: auto
}

.nav nav {
  gap: 32px
}

.nav-products-trigger button {
  font-size: 18px
}

.product-menu-back {
  display: none
}

.menu {
  color: var(--ink);
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700
}

.menu-icon {
  flex-direction: column;
  gap: 5px;
  display: inline-flex
}

.menu-icon i {
  background: currentColor;
  width: 20px;
  height: 1px;
  transition: transform .2s;
  display: block
}

.menu[aria-expanded=true] .menu-icon i:first-child {
  transform: translateY(3px)rotate(45deg)
}

.menu[aria-expanded=true] .menu-icon i:last-child {
  transform: translateY(-3px)rotate(-45deg)
}

@media (max-width:800px) {
  .nav {
    height: 70px;
    padding: 0 6vw
  }

  .nav>a img {
    width: 124px
  }

  .menu {
    z-index: 31;
    display: flex;
    position: relative
  }

  .nav nav {
    background: var(--paper);
    border-bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 7vw 48px;
    display: none;
    position: fixed;
    inset: 70px 0 0;
    overflow-y: auto
  }

  .nav nav.open {
    display: flex
  }

  .nav nav>a {
    letter-spacing: -.045em;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 500
  }

  .nav nav .nav-cta {
    letter-spacing: .02em;
    border: 0;
    width: max-content;
    margin-top: 28px;
    padding: 16px 19px;
    font-size: 13px
  }

  .nav-products {
    order: -1
  }

  .nav-products-trigger {
    border-bottom: 1px solid var(--line);
    padding: 18px 0
  }

  .nav-products-trigger>a {
    letter-spacing: -.045em;
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 500
  }

  .nav-products-trigger button {
    padding: 4px 0;
    font-size: 26px;
    line-height: .7
  }

  .product-menu {
    padding: 0
  }

  .product-menu-back {
    color: #666;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: 0 0;
    border: 0;
    align-items: center;
    gap: 10px;
    padding: 5px 0 28px;
    font: 12px monospace;
    display: flex
  }

  .product-menu-back:first-letter {
    color: var(--blue)
  }

  .product-menu-head span,
  .product-menu-head a {
    font-size: 11px
  }

  .product-menu-groups>div>p {
    margin-bottom: 6px
  }

  .nav nav.mobile-product-detail>.nav-products-trigger,
  .nav nav.mobile-product-detail>a {
    display: none
  }

  .nav nav.mobile-product-detail .nav-products {
    width: 100%
  }

  .nav nav.mobile-product-detail .product-menu {
    display: block
  }

  .nav-products-trigger button {
    transition: transform .28s
  }

  .nav-products.is-open .nav-products-trigger button {
    transform: rotate(180deg)
  }

  .product-menu {
    opacity: 0;
    max-height: 0;
    padding: 0;
    transition: max-height .38s, opacity .25s, padding .38s;
    display: block;
    overflow: hidden
  }

  .nav-products.is-open .product-menu {
    opacity: 1;
    max-height: 900px;
    padding: 18px 0 8px;
    display: block
  }

  .product-menu-head {
    margin: 0 0 10px;
    padding: 0 0 14px
  }

  .product-menu-groups {
    grid-template-columns: 1fr;
    gap: 0
  }

  .product-menu-groups a {
    padding: 13px 0;
    font-size: 16px
  }
}

body {
  font-family: var(--font-ui)
}

h1,
h2,
h3 {
  font-family: var(--font-display)
}

button,
.nav,
.nav nav,
.nav-cta,
.button,
.eyebrow,
.about-cards span,
.dimension,
.hero-index,
.quote-by,
.catalog-proof,
.spec-list span {
  font-family: var(--font-ui)
}

h1,
h2 {
  letter-spacing: -.055em;
  font-weight: 500
}

h3 {
  font-weight: 500
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4vw;
  display: grid
}

.proof-strip span {
  border-right: 1px solid var(--line);
  color: #676a68;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 24px 2vw;
  font-size: 11px
}

.proof-strip span:last-child {
  border-right: 0
}

.proof-strip b {
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 500;
  display: block
}

.product-showcase {
  overflow: hidden
}

.product-showcase .section-heading {
  align-items: end
}

.showcase-note {
  max-width: 360px
}

.showcase-note p {
  color: #666;
  line-height: 1.5
}

.showcase-note span {
  letter-spacing: .08em;
  color: #1597c0;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 600;
  display: block
}

.product-rail {
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: #9a9a95 transparent;
  grid-auto-columns: minmax(310px, 34vw);
  grid-auto-flow: column;
  gap: 18px;
  padding: 0 4vw 24px;
  scroll-padding-left: 4vw;
  display: grid;
  overflow-x: auto
}

.product-rail .product-card {
  scroll-snap-align: start
}

.product-rail .card-image {
  height: clamp(330px, 43vw, 560px)
}

.product-rail .product-card:nth-child(2n) .card-image {
  height: clamp(290px, 36vw, 470px);
  margin-top: clamp(40px, 7vw, 90px)
}

.product-rail .product-card .arrow {
  transition: transform .25s
}

.product-rail .product-card:hover .arrow {
  transform: translate(3px, -3px)
}

.button,
.nav-cta,
.text-link {
  transition: transform .25s, background-color .25s, color .25s
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px)
}

.text-link:hover {
  color: #1597c0
}

.feature-image img {
  transition: transform 1s cubic-bezier(.22, 1, .36, 1)
}

.feature:hover .feature-image img {
  transform: scale(1.025)
}

@media (max-width:800px) {
  .proof-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0 7vw
  }

  .proof-strip span {
    padding: 18px 3vw
  }

  .proof-strip span:nth-child(2) {
    border-right: 0
  }

  .proof-strip span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .product-showcase .section-heading {
    display: block
  }

  .showcase-note {
    margin-top: 38px
  }

  .showcase-note span {
    margin-top: 18px
  }

  .product-rail {
    grid-auto-columns: 82vw;
    padding: 0 7vw 20px;
    scroll-padding-left: 7vw
  }

  .product-rail .card-image,
  .product-rail .product-card:nth-child(2n) .card-image {
    height: 58vh;
    min-height: 390px;
    max-height: 540px;
    margin-top: 0
  }
}

@media (prefers-reduced-motion:reduce) {
  .hero-image {
    clip-path: none;
    animation: none
  }

  .hero-copy>*,
  .hero-index {
    opacity: 1;
    animation: none;
    transform: none
  }

  .product-card img,
  .gallery-img img,
  .feature-image img,
  .button,
  .nav-cta,
  .text-link {
    transition: none !important
  }
}

.pre-footer {
  background: var(--blue);
  padding: clamp(7rem, 13vw, 14rem) 8vw
}

.pre-footer .eyebrow {
  color: var(--ink);
  margin-bottom: 28px
}

.pre-footer-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.pre-footer h2 {
  max-width: 790px;
  font-size: clamp(4rem, 7.5vw, 8rem)
}

.pre-footer-action {
  max-width: 330px;
  padding-bottom: 8px
}

.pre-footer-action p {
  margin-bottom: 32px;
  line-height: 1.58
}

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

.pre-footer .button:hover {
  background: #303334
}

footer {
  background: var(--ink);
  color: #aeb0af;
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  grid-template-columns: 1.3fr .65fr .9fr;
  gap: 3rem 6vw;
  padding: clamp(4rem, 7vw, 7rem) 8vw 2.2rem;
  display: grid
}

footer img {
  filter: grayscale()brightness(2);
  margin: 0
}

footer a {
  color: var(--paper)
}

.footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  display: flex
}

.footer-brand p {
  max-width: 210px;
  line-height: 1.55
}

.footer-links,
.footer-contact {
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  display: flex
}

.footer-links a,
.footer-contact a {
  transition: color .2s
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue)
}

.footer-legal {
  color: #777b79;
  border-top: 1px solid #fff2;
  grid-column: 1/-1;
  align-items: center;
  gap: 18px;
  margin-top: 1.6rem;
  padding-top: 24px;
  display: flex
}

.footer-legal a {
  margin-left: auto;
  font-weight: 600
}

.footer-legal a:hover {
  color: var(--blue)
}

@media (max-width:800px) {
  .pre-footer {
    padding: 6.5rem 7vw
  }

  .pre-footer-content {
    display: block
  }

  .pre-footer h2 {
    font-size: clamp(3.5rem, 14vw, 5.6rem)
  }

  .pre-footer-action {
    margin-top: 3rem
  }

  .pre-footer-action p {
    margin-bottom: 25px
  }

  footer {
    flex-wrap: wrap;
    gap: 2.8rem 2rem;
    padding: 4.5rem 7vw 2rem;
    display: flex
  }

  .footer-brand {
    flex-basis: 100%
  }

  .footer-brand p {
    max-width: 260px
  }

  .footer-links,
  .footer-contact {
    flex: 1;
    min-width: 130px
  }

  .footer-legal {
    flex-wrap: wrap;
    flex-basis: 100%;
    gap: 10px;
    margin-top: 0;
    padding-top: 20px
  }

  .footer-legal a {
    width: 100%;
    margin: 10px 0 0
  }
}

@media (prefers-reduced-motion:reduce) {

  .pre-footer [data-pre-footer-label],
  .pre-footer [data-pre-footer-title],
  .pre-footer [data-pre-footer-action] {
    opacity: 1 !important;
    transform: none !important
  }
}

html,
body {
  overflow-x: clip
}

.editorial-image img,
.product-composition-image img,
.capability-image img,
.selected-project-image img {
  will-change: auto
}

:is(a:focus-visible, button:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 4px
}

@media (min-width:801px) and (max-width:1080px) {
  .nav nav {
    gap: 20px;
    font-size: 12px
  }

  .nav-cta {
    padding: 12px 14px
  }

  .product-menu {
    width: 560px
  }

  .product-showcase-heading,
  .selected-projects-heading,
  .product-composition,
  .product-composition:nth-child(2n) {
    gap: 5vw
  }

  .capability-copy {
    padding-inline: 7vw
  }
}

.nav-over-hero {
  -webkit-backdrop-filter: blur(12px);
  background: #f2f1edc7;
  border-color: #c9c9c3b8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0
}

.hero {
  min-height: 100svh
}

.hero-image {
  overflow: hidden
}

.hero h1 {
  font-size: clamp(4rem, 6.4vw, 7rem)
}

.hero-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.hero-copy .eyebrow {
  margin-bottom: 28px
}

.hero-copy .lede {
  font-size: var(--type-body-large);
  max-width: 390px;
  margin: 30px 0 25px
}

.hero-copy .dimension {
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  letter-spacing: .08em;
  margin-bottom: 30px
}

.hero-index {
  font-family: var(--font-ui);
  font-size: var(--type-meta)
}

@media (max-width:800px) {
  .nav-over-hero {
    background: #f2f1eded
  }

  .hero {
    min-height: 100svh
  }

  .hero h1 {
    font-size: 15vw
  }

  .hero-copy {
    padding-top: 112px
  }

  .hero-title-mask {
    width: 100%
  }

  .hero-copy .lede {
    font-size: clamp(1rem, 4.3vw, 1.125rem)
  }
}

.editorial-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: start;
  gap: 8vw;
  padding: clamp(8rem, 14vw, 15rem) 8vw clamp(5rem, 8vw, 9rem);
  display: grid
}

.editorial-statement .eyebrow {
  margin-bottom: 34px
}

.editorial-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.editorial-statement h2 {
  font-size: var(--type-section);
  max-width: 850px
}

.editorial-copy {
  max-width: 410px;
  padding-bottom: 10px
}

.editorial-copy p {
  color: #555;
  font-size: var(--type-body);
  line-height: 1.58
}

.editorial-copy p+p {
  margin-top: 18px
}

.editorial-copy .text-link {
  margin-top: 34px
}

.editorial-image {
  grid-column: 1/-1;
  width: calc(100% + 16vw);
  height: clamp(360px, 45vw, 680px);
  margin: clamp(4.5rem, 8vw, 9rem) -8vw 0;
  position: relative;
  overflow: hidden
}

.editorial-image img {
  object-fit: cover;
  will-change: transform
}

.editorial-intro+.product-section {
  padding-top: clamp(6rem, 10vw, 10rem)
}

@media (max-width:800px) {
  .editorial-intro {
    padding: 6.8rem 7vw 4.5rem;
    display: block
  }

  .editorial-statement .eyebrow {
    margin-bottom: 25px
  }

  .editorial-statement h2 {
    font-size: clamp(2.7rem, 11vw, 4.5rem)
  }

  .editorial-copy {
    padding-top: 3rem
  }

  .editorial-copy .text-link {
    margin-top: 26px
  }

  .editorial-image {
    width: calc(100% + 14vw);
    height: 54vh;
    min-height: 340px;
    margin: 5rem -7vw 0
  }

  .editorial-intro+.product-section {
    padding-top: 5.5rem
  }
}

.product-showcase {
  background: #e6e5e0;
  padding: clamp(7rem, 12vw, 13rem) 0;
  overflow: hidden
}

.product-showcase-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 8vw;
  padding: 0 8vw clamp(5rem, 8vw, 8.5rem);
  display: grid
}

.product-showcase-heading h2 {
  font-size: var(--type-section);
  margin-top: 30px
}

.product-showcase-heading>p {
  color: #5d605e;
  max-width: 380px;
  padding-bottom: 8px;
  line-height: 1.55
}

.product-compositions {
  flex-direction: column;
  gap: clamp(8rem, 13vw, 14rem);
  display: flex
}

.product-composition {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  align-items: center;
  gap: 8vw;
  display: grid
}

.product-composition:nth-child(2n) {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr)
}

.product-composition:nth-child(2n) .product-composition-image {
  grid-column: 2
}

.product-composition:nth-child(2n) .product-composition-copy {
  grid-area: 1/1;
  justify-self: end
}

.product-composition-image {
  height: clamp(390px, 48vw, 690px);
  position: relative;
  overflow: hidden
}

.product-composition-image img {
  object-fit: cover;
  will-change: transform
}

.product-composition-copy {
  max-width: 350px;
  padding-right: 4vw
}

.product-composition-copy h3 {
  margin: 25px 0 30px;
  font-size: clamp(2.8rem, 4.6vw, 5.5rem);
  line-height: .92
}

.product-composition-copy>p:not(.eyebrow) {
  color: #5d605e;
  line-height: 1.55
}

.product-explore {
  font-size: var(--type-meta);
  border-bottom: 1px solid;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding-bottom: 8px;
  font-weight: 600;
  transition: color .24s;
  display: inline-flex
}

.product-explore span {
  color: #1597c0;
  transition: transform .24s
}

.product-explore:hover {
  color: #1597c0
}

.product-explore:hover span {
  transform: translate(4px)
}

@media (max-width:800px) {
  .product-showcase {
    padding: 6.5rem 0
  }

  .product-showcase-heading {
    padding: 0 7vw 4.8rem;
    display: block
  }

  .product-showcase-heading h2 {
    margin-top: 23px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .product-showcase-heading>p {
    margin-top: 32px
  }

  .product-compositions {
    gap: 5.5rem
  }

  .product-composition,
  .product-composition:nth-child(2n) {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: flex
  }

  .product-composition:nth-child(2n) .product-composition-image {
    order: 0
  }

  .product-composition:nth-child(2n) .product-composition-copy {
    order: 1
  }

  .product-composition-image {
    width: 100%;
    height: 62vh;
    min-height: 390px;
    max-height: 570px
  }

  .product-composition-copy {
    max-width: none;
    padding: 2.2rem 7vw 0
  }

  .product-composition-copy h3 {
    margin: 19px 0 22px;
    font-size: clamp(2.8rem, 13vw, 4.4rem)
  }

  .product-explore {
    margin-top: 26px
  }
}

.capability {
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  min-height: 760px;
  align-items: stretch;
  display: grid
}

.capability-image {
  height: 100%;
  min-height: 760px;
  position: relative;
  overflow: hidden
}

.capability-image img {
  object-fit: cover;
  will-change: transform
}

@media (min-width:801px) {
  .capability-image img {
    height: 112% !important;
    top: -6% !important;
    bottom: auto !important
  }
}

.capability-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(6rem, 10vw, 11rem) 10vw;
  display: flex
}

.capability-copy .eyebrow {
  color: var(--blue);
  margin-bottom: 31px
}

.capability-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.capability-copy h2 {
  font-size: var(--type-section);
  margin-bottom: 36px
}

.capability-copy>div:not(.capability-title-mask):not(.capability-principles) {
  color: #b6b8b7;
  max-width: 430px;
  line-height: 1.58
}

.capability-copy>div:not(.capability-title-mask):not(.capability-principles) p+p {
  margin-top: 17px
}

.capability-principles {
  width: 100%;
  margin: 42px 0 35px
}

.capability-principles>div {
  border-top: 1px solid #ffffff2c;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 13px 0;
  display: grid
}

.capability-principles>div:last-child {
  border-bottom: 1px solid #ffffff2c
}

.capability-principles span {
  font-size: var(--type-meta);
  color: var(--blue)
}

.capability-principles strong {
  font-family: var(--font-display);
  letter-spacing: -.035em;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  font-weight: 500
}

.capability .button {
  color: var(--ink)
}

.selected-projects {
  background: var(--paper);
  padding: clamp(8rem, 14vw, 15rem) 8vw
}

.selected-projects-heading {
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 8vw;
  padding-bottom: clamp(5rem, 8vw, 8rem);
  display: grid
}

.selected-projects-heading h2 {
  font-size: var(--type-section);
  margin-top: 30px
}

.selected-projects-heading .product-explore {
  justify-self: end;
  margin: 0
}

.selected-project-list {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3.5rem, 6vw, 7rem) 24px;
  display: grid
}

.selected-project-image {
  display: block;
  position: relative;
  overflow: hidden
}

.selected-project-image img {
  object-fit: cover;
  will-change: transform
}

.selected-project-copy h3 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3.7rem);
  line-height: .94
}

.selected-project:nth-child(3) {
  grid-column: 9/-1
}

.selected-project:nth-child(5) {
  grid-column: 7/-1;
  padding-top: clamp(4rem, 7vw, 8rem)
}

.selected-project .product-explore {
  margin-top: 20px
}

@media (max-width:800px) {
  .capability {
    flex-direction: column;
    min-height: 0;
    display: flex
  }

  .capability-image {
    height: 54vh;
    min-height: 54vh
  }

  .capability-copy {
    padding: 5.5rem 7vw 6.2rem
  }

  .capability-copy h2 {
    margin-bottom: 29px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .capability-principles {
    margin: 34px 0 30px
  }

  .selected-projects {
    padding: 6.5rem 7vw
  }

  .selected-projects-heading {
    padding-bottom: 4.5rem;
    display: block
  }

  .selected-projects-heading h2 {
    margin-top: 24px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .selected-projects-heading .product-explore {
    margin-top: 30px
  }

  .selected-project-list {
    flex-direction: column;
    gap: 4.7rem;
    display: flex
  }

  .selected-project,
  .selected-project:nth-child(n) {
    padding: 0;
    display: block
  }

  .selected-project:first-child .selected-project-image,
  .selected-project:nth-child(2) .selected-project-image,
  .selected-project:nth-child(3) .selected-project-image,
  .selected-project:nth-child(4) .selected-project-image,
  .selected-project:nth-child(5) .selected-project-image {
    height: 54vh;
    min-height: 340px;
    max-height: 520px
  }

  .selected-project-copy h3 {
    font-size: clamp(2.35rem, 11vw, 4rem)
  }
}

.nav-over-hero {
  box-shadow: none;
  color: var(--paper);
  -webkit-backdrop-filter: none;
  background: 0 0;
  border-color: #0000;
  position: fixed;
  inset: 0 0 auto
}

.nav-over-hero nav>a:not(.nav-cta),
.nav-over-hero .nav-products-trigger>a,
.nav-over-hero .nav-products-trigger button {
  color: var(--paper)
}

.nav-over-hero .nav-cta {
  background: 0 0;
  border: 1px solid #f2f1edb3;
  color: var(--paper) !important
}

.nav-over-hero .nav-cta span {
  color: var(--blue)
}

.hero-cinematic {
  isolation: isolate;
  background: var(--ink);
  height: 100svh;
  min-height: 100svh;
  display: block;
  position: relative;
  overflow: hidden
}

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

.hero-media {
  z-index: -2;
  overflow: hidden
}

.hero-frame {
  opacity: 0;
  visibility: hidden
}

.hero-frame:first-child {
  opacity: 1;
  visibility: visible
}

.hero-frame img {
  object-fit: cover;
  will-change: transform
}

.hero-cinematic .hero-copy {
  z-index: 1;
  max-width: 780px;
  min-height: 100%;
  color: var(--paper);
  justify-content: center;
  padding: clamp(10rem, 18vh, 13rem) 8vw 7vw;
  position: relative
}

.hero-cinematic h1 em {
  color: var(--blue)
}

.hero-cinematic .lede {
  color: #ecebe7;
  max-width: 420px
}

.hero-explore {
  font-size: var(--type-meta);
  border-bottom: 1px solid;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  padding-bottom: 8px;
  font-weight: 600;
  transition: color .24s;
  display: inline-flex
}

.hero-explore span {
  color: var(--blue);
  transition: transform .24s
}

.hero-explore:hover {
  color: var(--blue)
}

.hero-explore:hover span {
  transform: translate(4px)
}

@media (max-width:800px) {
  .nav-over-hero {
    background: 0 0
  }

  .nav-over-hero nav.open,
  .nav-over-hero nav.open>a:not(.nav-cta),
  .nav-over-hero nav.open .nav-products-trigger>a,
  .nav-over-hero nav.open .nav-products-trigger button {
    color: var(--ink)
  }

  .nav-over-hero nav.open .nav-cta {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper) !important
  }

  .hero-cinematic {
    height: 100dvh;
    min-height: 100dvh
  }

  .hero-cinematic .hero-copy {
    justify-content: flex-end;
    padding: 9rem 7vw 4.5rem
  }

  .hero-cinematic h1 {
    font-size: clamp(4rem, 17vw, 6.2rem)
  }

  .hero-cinematic .lede {
    margin: 25px 0 22px;
    font-size: clamp(1rem, 4.4vw, 1.125rem)
  }
}

@media (prefers-reduced-motion:reduce) {

  .hero-frame img,
  .hero-media,
  .hero-cinematic [data-hero-copy] {
    transform: none !important
  }

  .hero-cinematic [data-hero-label],
  .hero-cinematic [data-hero-title],
  .hero-cinematic [data-hero-support] {
    opacity: 1 !important;
    transform: none !important
  }
}

.featured-products {
  flex-direction: column;
  gap: clamp(7rem, 11vw, 12rem);
  display: flex
}

.product-feature {
  align-items: center;
  gap: 8vw;
  padding: 0 8vw;
  display: grid
}

.product-feature-image {
  position: relative;
  overflow: hidden
}

.product-feature-image img {
  object-fit: cover;
  will-change: transform
}

.product-feature-copy {
  max-width: 355px
}

.product-feature-copy h3 {
  margin: 24px 0 28px;
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  line-height: .92
}

.product-feature-copy>p:not(.eyebrow) {
  color: #5d605e;
  line-height: 1.55
}

.product-feature--pavers {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr)
}

.product-feature--pavers .product-feature-image {
  height: clamp(420px, 47vw, 680px)
}

.product-feature--treads {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0
}

.product-feature--treads .product-feature-image {
  grid-column: 1/-1;
  height: clamp(460px, 57vw, 780px)
}

.product-feature--treads .product-feature-copy {
  grid-column: 8/-1;
  margin-top: 34px
}

.product-feature--specialty {
  grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr)
}

.product-feature--specialty .product-feature-image {
  grid-column: 2;
  height: clamp(430px, 48vw, 700px)
}

.product-feature--specialty .product-feature-copy {
  grid-area: 1/1;
  justify-self: end
}

.product-range-index {
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  gap: 8vw;
  padding: clamp(8rem, 13vw, 14rem) 8vw 0;
  display: grid
}

.product-range-index-heading {
  align-self: start;
  position: sticky;
  top: 130px
}

.product-range-index-heading h3 {
  margin-top: 25px;
  font-size: clamp(2.8rem, 4.1vw, 4.8rem);
  line-height: .94
}

.product-range-index-heading .product-explore {
  margin-top: 30px
}

.product-range-list {
  border-top: 1px solid var(--line)
}

.product-range-row {
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  letter-spacing: -.045em;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 21px 0;
  font-size: clamp(1.55rem, 2.4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.05;
  transition: color .24s, padding .24s;
  display: flex
}

.product-range-row b {
  font-family: var(--font-ui);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform .24s
}

.product-range-row:hover {
  color: var(--blue);
  padding-left: 10px
}

.product-range-row:hover b {
  transform: translate(5px)
}

@media (max-width:800px) {
  .featured-products {
    gap: 5.5rem
  }

  .product-feature,
  .product-feature--pavers,
  .product-feature--treads,
  .product-feature--specialty {
    padding: 0 7vw;
    display: block
  }

  .product-feature-image,
  .product-feature--pavers .product-feature-image,
  .product-feature--treads .product-feature-image,
  .product-feature--specialty .product-feature-image {
    height: 56vh;
    min-height: 360px;
    max-height: 550px
  }

  .product-feature-copy,
  .product-feature--treads .product-feature-copy,
  .product-feature--specialty .product-feature-copy {
    max-width: none;
    margin: 2rem 0 0
  }

  .product-feature-copy h3 {
    margin: 19px 0 22px;
    font-size: clamp(2.9rem, 13vw, 4.5rem)
  }

  .product-range-index {
    padding: 6.8rem 7vw 0;
    display: block
  }

  .product-range-index-heading {
    position: static
  }

  .product-range-index-heading h3 {
    margin-top: 22px;
    font-size: clamp(2.65rem, 11vw, 4.3rem)
  }

  .product-range-list {
    margin-top: 3.6rem
  }

  .product-range-row {
    padding: 18px 0;
    font-size: clamp(1.55rem, 7vw, 2.25rem)
  }

  .product-range-row:hover {
    padding-left: 0
  }
}

.editorial-intro {
  padding-bottom: clamp(7rem, 12vw, 12rem)
}

.editorial-intro+.product-showcase {
  margin-top: 0
}

.capability-principles>div {
  grid-template-columns: 1fr
}

.contact--brief {
  padding-block: clamp(5rem, 8vw, 8rem)
}

.contact--brief h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.6rem)
}

.contact--brief .contact-info {
  gap: 14px
}

.contact--brief .big-link {
  font-size: clamp(1.45rem, 2.35vw, 2.55rem)
}

@media (max-width:800px) {
  .editorial-intro {
    padding-bottom: 6.8rem
  }

  .selected-project:first-child,
  .selected-project:nth-child(2),
  .selected-project:nth-child(3) {
    padding: 0;
    display: block
  }

  .contact--brief {
    padding-block: 5.5rem
  }

  .contact--brief .contact-info {
    margin-top: 3.4rem
  }
}

.catalog-hero--editorial {
  min-height: 0;
  padding-top: clamp(9rem, 14vw, 14rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem)
}

.catalog-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.catalog-hero--editorial h1 {
  max-width: 840px;
  font-size: clamp(4.2rem, 7.2vw, 8.4rem)
}

.catalog-hero--editorial .catalog-hero-note {
  max-width: 410px
}

.catalog-hero--editorial .catalog-proof {
  margin-top: 34px
}

.catalog-intro {
  align-items: end;
  padding: 0 8vw clamp(4.5rem, 7vw, 7rem)
}

.catalog-intro>p:last-child {
  font-size: var(--type-body);
  line-height: 1.58
}

.catalog-grid--editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 7vw, 7rem) 24px;
  padding-bottom: clamp(7rem, 11vw, 12rem)
}

.product-card--catalog {
  display: block
}

.product-card--catalog .card-image {
  background: #d5d3cd;
  height: clamp(360px, 41vw, 640px);
  overflow: hidden
}

.product-card--catalog .card-image img {
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1)
}

.catalog-card-copy {
  padding-top: 19px
}

.catalog-card-copy small {
  color: #1597c0;
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  display: block
}

.catalog-card-copy>div {
  border-bottom: 1px solid #aaa;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-top: 10px;
  padding-bottom: 14px;
  display: flex
}

.catalog-card-copy h3 {
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  line-height: .94
}

.catalog-card-copy .arrow {
  font-family: var(--font-ui);
  color: #1597c0;
  flex: none;
  font-size: 1.35rem;
  transition: transform .24s
}

.catalog-card-copy p {
  color: #5d605e;
  max-width: 540px;
  font-size: var(--type-meta);
  padding-top: 14px;
  line-height: 1.55
}

.catalog-card-copy .card-link {
  margin-top: 19px
}

.product-card--catalog:hover .card-image img {
  transform: scale(1.02)
}

.product-card--catalog:hover .arrow {
  transform: translate(5px)
}

.product-card--catalog:hover .card-link {
  color: #1597c0
}

@media (max-width:800px) {
  .catalog-hero--editorial {
    padding: 7.6rem 7vw 4.5rem
  }

  .catalog-hero--editorial h1 {
    font-size: clamp(3.6rem, 14vw, 5.7rem)
  }

  .catalog-hero--editorial .catalog-hero-note {
    margin-top: 3.4rem
  }

  .catalog-intro {
    padding: 0 7vw 4.5rem
  }

  .catalog-intro>p:last-child {
    margin-top: 22px
  }

  .catalog-grid--editorial {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    padding: 0 7vw 6.8rem
  }

  .product-card--catalog .card-image {
    height: 58vh;
    min-height: 350px;
    max-height: 550px
  }

  .catalog-card-copy h3 {
    font-size: clamp(2.45rem, 11vw, 4rem)
  }
}

@media (prefers-reduced-motion:reduce) {

  [data-catalog-label],
  [data-catalog-title],
  [data-catalog-intro],
  [data-catalog-card] .catalog-card-copy>* {
    opacity: 1 !important;
    transform: none !important
  }

  [data-catalog-image] {
    clip-path: none !important
  }

  .product-card--catalog .card-image img {
    transition: none !important
  }
}

.gallery-hero--editorial {
  padding-top: clamp(9rem, 14vw, 14rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem)
}

.gallery-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.gallery-hero--editorial h1 {
  font-size: clamp(4.2rem, 7.2vw, 8.4rem)
}

.gallery-hero--editorial .gallery-intro {
  margin-top: 38px
}

.project-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(4rem, 7vw, 7rem) 24px;
  padding: 0 8vw clamp(7rem, 12vw, 13rem);
  display: grid
}

.project-gallery-item {
  margin: 0
}

.project-gallery-image {
  position: relative;
  overflow: hidden
}

.project-gallery-image img {
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.project-gallery-item figcaption {
  color: #5d605e;
  font-size: var(--type-meta);
  border-top: 1px solid #aaa;
  justify-content: space-between;
  gap: 18px;
  margin-top: 15px;
  padding-top: 11px;
  display: flex
}

.project-gallery-item figcaption span:first-child {
  color: var(--ink);
  font-weight: 600
}

.project-gallery-item:first-child {
  grid-column: 1/span 7
}

.project-gallery-item:first-child .project-gallery-image {
  height: clamp(420px, 51vw, 710px)
}

.project-gallery-item:nth-child(2) {
  grid-column: 9/-1;
  padding-top: clamp(6rem, 11vw, 11rem)
}

.project-gallery-item:nth-child(2) .project-gallery-image {
  height: clamp(280px, 28vw, 410px)
}

.project-gallery-item:nth-child(3) {
  grid-column: 1/span 4
}

.project-gallery-item:nth-child(3) .project-gallery-image {
  height: clamp(300px, 35vw, 510px)
}

.project-gallery-item:nth-child(4) {
  grid-column: 6/-1
}

.project-gallery-item:nth-child(4) .project-gallery-image {
  height: clamp(360px, 42vw, 640px)
}

.project-gallery-item:nth-child(5) {
  grid-column: 1/span 6
}

.project-gallery-item:nth-child(5) .project-gallery-image {
  height: clamp(330px, 38vw, 560px)
}

.project-gallery-item:nth-child(6) {
  grid-column: 8/-1;
  padding-top: clamp(4rem, 8vw, 8rem)
}

.project-gallery-item:nth-child(6) .project-gallery-image {
  height: clamp(270px, 30vw, 440px)
}

.project-gallery-item:nth-child(7) {
  grid-column: 2/span 9
}

.project-gallery-item:nth-child(7) .project-gallery-image {
  height: clamp(390px, 47vw, 680px)
}

.project-gallery-item:nth-child(8) {
  grid-column: 1/span 4
}

.project-gallery-item:nth-child(8) .project-gallery-image {
  height: clamp(300px, 34vw, 500px)
}

.project-gallery-item:nth-child(9) {
  grid-column: 6/-1;
  padding-top: clamp(4rem, 7vw, 7rem)
}

.project-gallery-item:nth-child(9) .project-gallery-image {
  height: clamp(350px, 40vw, 590px)
}

@media (max-width:800px) {
  .gallery-hero--editorial {
    padding: 7.6rem 7vw 4.5rem
  }

  .gallery-hero--editorial h1 {
    font-size: clamp(3.7rem, 14vw, 5.8rem)
  }

  .gallery-hero--editorial .gallery-intro {
    margin: 28px 0 0
  }

  .project-gallery {
    padding: 0 7vw 6.8rem;
    display: block
  }

  .project-gallery-item,
  .project-gallery-item:nth-child(n) {
    padding: 0;
    display: block
  }

  .project-gallery-item+.project-gallery-item {
    margin-top: 4rem
  }

  .project-gallery-image,
  .project-gallery-item:nth-child(n) .project-gallery-image {
    height: 55vh;
    min-height: 340px;
    max-height: 560px
  }

  .project-gallery-item figcaption {
    margin-top: 12px
  }

  .project-gallery-item figcaption span:last-child {
    flex: none
  }
}

@media (prefers-reduced-motion:reduce) {

  [data-projects-label],
  [data-projects-title],
  [data-projects-intro],
  [data-project-gallery-item] figcaption {
    opacity: 1 !important;
    transform: none !important
  }

  [data-project-gallery-image] {
    clip-path: none !important
  }

  .project-gallery-image img {
    transition: none !important
  }
}

.about-hero--editorial {
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  min-height: 760px;
  display: grid
}

.about-hero-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw 7vw 9vw 8vw;
  display: flex
}

.about-title-mask,
.about-capability-title-mask,
.contact-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.about-hero-copy h1 {
  margin-top: 28px;
  font-size: clamp(4.3rem, 7vw, 8rem)
}

.about-hero-copy>p:last-child {
  color: #5d605e;
  max-width: 420px;
  margin-top: 36px;
  line-height: 1.58
}

.about-hero-image,
.about-capability-image {
  position: relative;
  overflow: hidden
}

.about-hero-image img,
.about-capability-image img {
  object-fit: cover
}

.about-story {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 10vw;
  padding: clamp(7rem, 13vw, 14rem) 8vw;
  display: grid
}

.about-story h2 {
  font-size: var(--type-section);
  margin-top: 30px
}

.about-story-copy {
  max-width: 470px;
  padding-top: 8px
}

.about-story-copy p {
  color: #5d605e;
  line-height: 1.6
}

.about-story-copy p+p {
  margin-top: 20px
}

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

.about-credentials article {
  border-right: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 4rem) 2.5vw
}

.about-credentials article:last-child {
  border-right: 0
}

.about-credentials h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  line-height: 1
}

.about-credentials p {
  color: #5d605e;
  font-size: var(--type-meta);
  line-height: 1.55
}

.about-capability {
  background: var(--ink);
  min-height: 720px;
  color: var(--paper);
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  display: grid
}

.about-capability-image {
  min-height: 720px
}

.about-capability-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(6rem, 10vw, 11rem) 10vw;
  display: flex
}

.about-capability-copy .eyebrow {
  color: var(--blue);
  margin-bottom: 30px
}

.about-capability-copy h2 {
  font-size: var(--type-section);
  margin-bottom: 35px
}

.about-capability-copy>p:not(.eyebrow) {
  color: #b6b8b7;
  max-width: 420px;
  line-height: 1.58
}

.about-capability-copy .product-explore {
  margin-top: 34px
}

.contact-hero--direct {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 10vw;
  padding: clamp(9rem, 14vw, 14rem) 8vw clamp(7rem, 12vw, 12rem);
  display: grid
}

.contact-hero--direct h1 {
  margin-top: 30px;
  font-size: clamp(4.2rem, 7vw, 8rem)
}

.contact-hero--direct .contact-lede {
  max-width: 470px;
  margin: 34px 0 30px
}

.contact-details {
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  align-self: end;
  gap: 0 3vw;
  display: grid
}

.contact-details>div {
  border-bottom: 1px solid var(--line);
  padding: 18px 0 24px
}

.contact-details span {
  color: #1597c0;
  font-size: var(--type-meta);
  letter-spacing: .12em;
  font-weight: 600;
  display: block
}

.contact-details a,
.contact-details p {
  font-family: var(--font-display);
  letter-spacing: -.04em;
  margin-top: 10px;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  display: block
}

.contact-details a:hover {
  color: #1597c0
}

.contact-details p {
  color: #5d605e;
  font-family: var(--font-ui);
  font-size: var(--type-body);
  letter-spacing: 0;
  line-height: 1.5
}

@media (max-width:800px) {
  .about-hero--editorial {
    flex-direction: column-reverse;
    min-height: 0;
    display: flex
  }

  .about-hero-image {
    height: 55vh;
    min-height: 360px
  }

  .about-hero-copy {
    padding: 5.5rem 7vw 6.5rem
  }

  .about-hero-copy h1 {
    margin-top: 23px;
    font-size: clamp(3.7rem, 14vw, 5.8rem)
  }

  .about-hero-copy>p:last-child {
    margin-top: 28px
  }

  .about-story {
    padding: 6.5rem 7vw;
    display: block
  }

  .about-story h2 {
    margin-top: 23px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .about-story-copy {
    padding-top: 3rem
  }

  .about-credentials {
    grid-template-columns: 1fr 1fr
  }

  .about-credentials article {
    border-right: 1px solid var(--line);
    padding: 2rem 7vw
  }

  .about-credentials article:nth-child(2n) {
    border-right: 0
  }

  .about-credentials article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .about-capability {
    flex-direction: column;
    min-height: 0;
    display: flex
  }

  .about-capability-image {
    height: 54vh;
    min-height: 54vh
  }

  .about-capability-copy {
    padding: 5.5rem 7vw 6.2rem
  }

  .about-capability-copy h2 {
    margin-bottom: 29px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .contact-hero--direct {
    padding: 7.6rem 7vw 6.5rem;
    display: block
  }

  .contact-hero--direct h1 {
    margin-top: 23px;
    font-size: clamp(3.7rem, 14vw, 5.8rem)
  }

  .contact-hero--direct .contact-lede {
    margin: 28px 0
  }

  .contact-details {
    margin-top: 4.8rem
  }

  .contact-details>div {
    padding: 17px 0 22px
  }

  .contact-details a {
    font-size: clamp(1.25rem, 6vw, 1.7rem)
  }
}

@media (prefers-reduced-motion:reduce) {

  [data-about-label],
  [data-about-title],
  [data-about-intro],
  [data-about-story-title],
  [data-about-story-copy],
  [data-about-credential],
  [data-about-capability-label],
  [data-about-capability-title],
  [data-about-capability-copy],
  [data-about-capability-action],
  [data-contact-label],
  [data-contact-title],
  [data-contact-intro],
  [data-contact-action],
  [data-contact-details] {
    opacity: 1 !important;
    transform: none !important
  }

  [data-about-capability-image] {
    clip-path: none !important
  }
}

.product-explore span,
.hero-explore span,
.text-link span {
  transition: transform .24s
}

.product-explore:hover span,
.hero-explore:hover span,
.text-link:hover span {
  transform: translate(6px)
}

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

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

:root {
  --aaw-ink: #191b1c;
  --aaw-paper: #f2f1ed;
  --aaw-surface: #e6e5e0;
  --aaw-line: #c9c9c3;
  --aaw-blue: #29bce9;
  --aaw-blue-strong: #1597c0;
  --aaw-blue-text: #0e7490;
  --aaw-text-muted: #5d605e;
  --aaw-text-subtle: #777a78;
  --aaw-dark-muted: #b6b8b7;
  --color-bg-primary: var(--aaw-paper);
  --color-bg-secondary: var(--aaw-surface);
  --color-bg-inverse: var(--aaw-ink);
  --color-text-primary: var(--aaw-ink);
  --color-text-secondary: var(--aaw-text-muted);
  --color-text-subtle: var(--aaw-text-subtle);
  --color-text-inverse: var(--aaw-paper);
  --color-border: var(--aaw-line);
  --color-accent: var(--aaw-blue);
  --color-accent-strong: var(--aaw-blue-strong);
  --color-accent-text: var(--aaw-blue-text);
  --ink: var(--aaw-ink);
  --paper: var(--aaw-paper);
  --blue: var(--aaw-blue);
  --line: var(--aaw-line)
}

.blue,
.eyebrow.blue {
  color: var(--color-accent-text)
}

:is(a:focus-visible, button:focus-visible) {
  outline: 2px solid var(--color-text-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--color-accent)
}

.button,
.nav-cta,
.button-primary {
  border: 1px solid var(--color-bg-inverse);
  background: var(--color-bg-inverse);
  min-height: 48px;
  font-family: var(--font-ui);
  letter-spacing: .025em;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s, background-color .2s, border-color .2s, color .2s;
  display: inline-flex;
  color: var(--color-text-inverse) !important
}

.button svg,
.nav-cta svg,
.button-primary svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent);
  stroke-width: 1.75px;
  flex: none
}

.button:hover,
.nav-cta:hover,
.button-primary:hover {
  background: #303334;
  border-color: #303334;
  transform: translateY(-2px)
}

.capability .button,
.about-capability .button {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-primary) !important
}

.capability .button svg,
.about-capability .button svg {
  stroke: var(--color-text-primary)
}

.button-secondary {
  min-height: 48px;
  color: inherit;
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  background: 0 0;
  border: 1px solid;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s, background-color .2s, color .2s, border-color .2s;
  display: inline-flex
}

.button-secondary svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent);
  stroke-width: 1.75px;
  transition: transform .2s
}

.button-secondary:hover svg {
  transform: translate(3px, -3px)
}

.tertiary-action {
  align-items: center;
  gap: 10px;
  display: inline-flex !important
}

.tertiary-action svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  flex: none;
  transition: transform .22s
}

.tertiary-action:hover svg {
  transform: translate(6px)
}

.product-explore {
  color: var(--color-text-primary);
  border-color: currentColor;
  gap: 10px
}

.product-explore svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  transition: transform .22s
}

.product-explore:hover svg {
  transform: translate(6px)
}

.product-explore.button-secondary {
  border-bottom: 1px solid;
  margin-top: 0
}

.product-range-row svg {
  width: 19px;
  height: 19px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  transition: transform .22s
}

.product-range-row:hover svg {
  transform: translate(5px, -5px)
}

.catalog-card-copy .arrow {
  width: 19px;
  height: 19px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px
}

.card-link {
  align-items: center;
  gap: 9px
}

.card-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px
}

.utility-action {
  align-items: center;
  gap: 12px;
  display: flex
}

.utility-action svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  flex: none
}

.contact-details span {
  color: var(--color-accent-text);
  align-items: center;
  gap: 7px;
  display: flex
}

.contact-details span svg {
  stroke-width: 1.75px;
  width: 15px;
  height: 15px
}

.product-menu-head a,
.product-menu-groups a {
  align-items: center;
  gap: 7px;
  display: flex
}

.product-menu-head a svg,
.product-menu-groups a>svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px
}

.nav-products-trigger button svg {
  stroke-width: 1.75px;
  width: 17px;
  height: 17px;
  transition: transform .25s
}

.nav-products.is-open .nav-products-trigger button svg {
  transform: rotate(180deg)
}

.menu-icon {
  justify-content: center;
  align-items: center;
  display: inline-flex
}

.menu-icon svg {
  stroke-width: 1.75px;
  width: 21px;
  height: 21px
}

.footer-legal a {
  align-items: center;
  gap: 7px;
  display: inline-flex
}

@media (max-width:800px) {
  .nav nav .nav-cta {
    min-height: 48px;
    padding: 12px 18px
  }

  .button-secondary {
    min-height: 46px
  }

  .product-explore.button-secondary {
    margin-top: 24px
  }
}

.nav {
  z-index: 50;
  -webkit-backdrop-filter: blur(22px)saturate(120%);
  background: #f2f1edc7;
  border: 1px solid #c9c9c3ad;
  border-radius: 13px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: auto;
  height: 68px;
  padding: 0 16px 0 20px;
  display: grid;
  position: fixed;
  top: 18px;
  left: clamp(20px, 2.25vw, 32px);
  right: clamp(20px, 2.25vw, 32px);
  box-shadow: 0 8px 32px #191b1c14
}

.nav-brand {
  justify-self: start;
  align-items: center;
  display: flex
}

.nav-brand img {
  width: 130px;
  height: auto
}

.nav-main {
  justify-self: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 12px;
  font-weight: 500;
  display: flex
}

.nav-main>a {
  white-space: nowrap
}

.nav-utilities {
  justify-self: end;
  align-items: center;
  gap: 18px;
  display: flex
}

.nav-phone {
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px
}

.nav .nav-cta {
  white-space: nowrap;
  border-radius: 8px;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 11px
}

.nav .nav-cta svg {
  width: 15px;
  height: 15px
}

.nav-mobile-utilities {
  display: none
}

.nav-over-hero {
  color: var(--color-text-primary);
  -webkit-backdrop-filter: blur(22px)saturate(120%);
  background: #f2f1edc7;
  border-color: #c9c9c3ad;
  box-shadow: 0 8px 32px #191b1c14
}

.nav-over-hero>a img {
  filter: none
}

.nav-over-hero .nav-main>a,
.nav-over-hero .nav-products-trigger>a,
.nav-over-hero .nav-products-trigger button {
  color: var(--color-text-primary)
}

.nav-over-hero .nav-cta {
  background: var(--color-bg-inverse);
  border-color: var(--color-bg-inverse);
  color: var(--color-text-inverse) !important
}

.product-menu {
  -webkit-backdrop-filter: blur(20px)saturate(120%);
  background: #f2f1edf7;
  border: 1px solid #c9c9c3d1;
  border-radius: 12px;
  top: calc(100% + 13px);
  box-shadow: 0 16px 34px #191b1c1f
}

.product-menu:before {
  display: none
}

.product-menu-head a {
  color: var(--color-text-primary)
}

.menu {
  display: none
}

.hero-cinematic .hero-copy {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: min(100% - 14vw, 1020px);
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(9rem, 16vh, 11rem) 0 6vw
}

.hero-cinematic .hero-copy .eyebrow {
  margin-bottom: 25px
}

.hero-cinematic h1 {
  max-width: 100%;
  font-size: clamp(4.8rem, 8vw, 8.7rem)
}

.hero-cinematic .lede {
  max-width: 500px;
  margin: 28px auto 0
}

.hero-actions {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  display: flex
}

.hero-actions .button {
  min-width: 170px
}

.hero-actions .hero-explore {
  min-width: 170px;
  margin: 0
}

@media (max-width:800px) {
  .nav {
    border-radius: 11px;
    grid-template-columns: 1fr auto;
    height: 60px;
    padding: 0 14px 0 16px;
    top: 12px;
    left: 12px;
    right: 12px
  }

  .nav-brand {
    z-index: 52;
    position: relative
  }

  .nav-brand img {
    width: 112px
  }

  .nav-utilities {
    display: none
  }

  .menu {
    z-index: 52;
    color: var(--color-text-primary);
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    position: relative
  }

  .nav-main,
  .nav nav {
    z-index: 51;
    -webkit-backdrop-filter: blur(24px)saturate(120%);
    background: #f2f1edfa;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 104px 7vw 44px;
    display: none;
    position: fixed;
    inset: 0;
    overflow-y: auto
  }

  .nav-main.open,
  .nav nav.open {
    display: flex
  }

  .nav-main>a,
  .nav nav>a {
    letter-spacing: -.045em;
    border-bottom: 1px solid var(--color-border);
    padding: 18px 0;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500
  }

  .nav-main .nav-products {
    order: 0
  }

  .nav-mobile-utilities {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    margin-top: 28px;
    display: flex
  }

  .nav-mobile-utilities .nav-phone {
    font-size: 15px
  }

  .nav-mobile-utilities .nav-cta {
    width: 100%;
    min-height: 50px;
    font-size: 12px
  }

  .nav-over-hero .nav-main.open,
  .nav-over-hero nav.open,
  .nav-over-hero .nav-main.open>a,
  .nav-over-hero .nav-main.open .nav-products-trigger>a,
  .nav-over-hero .nav-main.open .nav-products-trigger button {
    color: var(--color-text-primary)
  }

  .nav-over-hero .nav-main.open .nav-cta {
    background: var(--color-bg-inverse);
    border-color: var(--color-bg-inverse);
    color: var(--color-text-inverse) !important
  }

  .product-menu {
    width: 100%;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: 0 0;
    border: 0;
    position: static
  }

  .hero-cinematic .hero-copy {
    justify-content: flex-end;
    width: 100%;
    padding: 8rem 7vw 4rem
  }

  .hero-cinematic h1 {
    font-size: clamp(3.9rem, 16.5vw, 6rem)
  }

  .hero-cinematic .lede {
    margin: 24px auto 0
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 25px
  }

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

.nav,
.nav.nav-over-hero {
  color: var(--color-text-primary);
  background: #f2f1edeb;
  border-color: #c9c9c3e6
}

.nav.nav-over-hero .nav-brand img {
  filter: none !important
}

.nav .nav-main>a:not(.nav-cta),
.nav .nav-products-trigger>a,
.nav .nav-products-trigger button,
.nav .nav-phone {
  color: var(--color-text-primary) !important
}

.nav .nav-main>a:not(.nav-cta):hover,
.nav .nav-products-trigger>a:hover,
.nav .nav-products-trigger button:hover,
.nav .nav-phone:hover {
  color: var(--color-accent-text) !important
}

.nav .product-menu,
.nav .product-menu a {
  color: var(--color-text-primary)
}

.nav .product-menu {
  background: #f2f1edfc
}

.nav .nav-main>a:not(.nav-cta):focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 4px;
  border-radius: 3px
}

.nav .nav-products-trigger>a:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 4px;
  border-radius: 3px
}

.nav .nav-products-trigger button:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 4px;
  border-radius: 3px
}

.nav .nav-phone:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 4px;
  border-radius: 3px
}

.nav .menu:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: 4px;
  border-radius: 3px
}

@media (max-width:800px) {

  .nav .nav-main.open,
  .nav .nav-main.open a:not(.nav-cta),
  .nav .nav-main.open .nav-products-trigger button,
  .nav .nav-main.open .nav-phone {
    color: var(--color-text-primary) !important
  }

  .nav .nav-main.open {
    background: #f2f1edfc
  }

  .nav .menu {
    color: var(--color-text-primary)
  }

  .nav {
    border-radius: 11px;
    grid-template-columns: minmax(0, 1fr) auto;
    height: 60px;
    padding: 0 14px 0 16px;
    display: grid;
    top: 12px;
    left: 12px;
    right: 12px
  }

  .nav-brand {
    z-index: 52;
    height: auto;
    position: relative
  }

  .nav-brand img {
    width: 112px
  }

  .nav-utilities {
    display: none
  }

  .menu {
    z-index: 52;
    color: var(--color-text-primary);
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    position: relative
  }

  .nav-main {
    z-index: 51;
    color: var(--color-text-primary);
    -webkit-backdrop-filter: blur(24px)saturate(120%);
    background: #f2f1edfc;
    justify-self: auto;
    align-items: stretch;
    gap: 0;
    padding: 104px 7vw 44px;
    display: none;
    position: fixed;
    inset: 0;
    overflow-y: auto
  }

  .nav-main.open {
    display: flex
  }

  .nav-main>a {
    border-bottom: 1px solid var(--color-border);
    letter-spacing: -.045em;
    width: 100%;
    padding: 18px 0;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05
  }

  .nav-main .nav-products {
    order: 0;
    width: 100%
  }

  .nav-products-trigger {
    border-bottom: 1px solid var(--color-border);
    justify-content: space-between;
    width: 100%;
    padding: 18px 0
  }

  .nav-products-trigger>a {
    letter-spacing: -.045em;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05
  }

  .nav-products-trigger button {
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    font-size: 20px;
    transition: transform .28s;
    display: inline-flex
  }

  .nav-products.is-open .nav-products-trigger button {
    transform: rotate(180deg)
  }

  .nav-main .product-menu {
    width: 100%;
    max-height: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: 0 0;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    transition: max-height .38s, opacity .2s, visibility .2s;
    display: block;
    position: static;
    top: auto;
    left: auto;
    overflow: hidden;
    transform: none
  }

  .nav-main .nav-products.is-open .product-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 980px;
    padding: 0;
    display: block
  }

  .product-menu:before {
    display: none
  }

  .product-menu-head {
    margin: 0 0 2px;
    padding: 18px 0 13px
  }

  .product-menu-groups {
    grid-template-columns: 1fr;
    gap: 0
  }

  .product-menu-groups a {
    padding: 13px 0;
    font-size: 16px
  }

  .nav-mobile-utilities {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    width: 100%;
    margin-top: 28px;
    display: flex
  }

  .nav-mobile-utilities .nav-phone {
    font-size: 15px
  }

  .nav-mobile-utilities .nav-cta {
    width: 100%;
    min-height: 50px;
    font-size: 12px
  }

  .nav {
    transition: top .28s, left .28s, right .28s, border-radius .28s, background-color .28s
  }

  .nav.menu-open {
    -webkit-backdrop-filter: blur(28px)saturate(110%);
    border: 0;
    border-radius: 0;
    grid-template-rows: 84px minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    padding: 0 7vw 24px;
    bottom: 0;
    overflow: hidden;
    box-shadow: none !important;
    background: #f2f1edfe !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important
  }

  .nav.menu-open .nav-brand {
    grid-area: 1/1
  }

  .nav.menu-open .menu {
    grid-area: 1/2;
    justify-content: flex-end;
    min-width: 44px;
    min-height: 44px
  }

  .nav.menu-open .nav-main {
    overscroll-behavior: contain;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 16px 0 max(20px, env(safe-area-inset-bottom));
    -webkit-backdrop-filter: none;
    background: 0 0;
    grid-area: 2/1/auto/-1;
    animation: .3s both mobile-nav-in;
    display: flex;
    position: static;
    inset: auto;
    overflow-y: auto
  }

  .nav.menu-open .nav-mobile-utilities {
    padding-bottom: 6px
  }
}

@keyframes mobile-nav-in {
  0% {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width:800px) and (prefers-reduced-motion:reduce) {

  .nav,
  .nav.menu-open .nav-main {
    transition: none;
    animation: none
  }
}

.product-navigator {
  background: var(--color-bg-secondary);
  padding: clamp(7rem, 11vw, 12rem) 8vw
}

.product-navigator-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  display: grid
}

.product-navigator-heading h2 {
  font-size: var(--type-section);
  margin-top: 28px
}

.product-navigator-heading>p {
  max-width: 390px;
  color: var(--color-text-secondary);
  padding-bottom: 7px;
  line-height: 1.58
}

.product-navigator-layout {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, .86fr);
  display: grid
}

.product-navigator-preview {
  border-right: 1px solid var(--color-border);
  background: var(--color-bg-primary);
  min-height: clamp(540px, 58vw, 760px);
  padding: clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden
}

.product-navigator-preview-image {
  position: absolute;
  inset: 0
}

.product-navigator-preview-image:after {
  content: "";
  background: linear-gradient(#0000 52%, #191b1c8c);
  position: absolute;
  inset: 0
}

.product-navigator-preview-image img {
  object-fit: cover
}

.product-navigator-measure {
  z-index: 1;
  background: var(--color-accent);
  transform-origin: 0;
  height: 2px;
  position: absolute;
  bottom: clamp(7.8rem, 13vw, 10rem);
  left: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 4vw, 4rem)
}

.product-navigator-preview-copy {
  z-index: 1;
  color: var(--color-text-inverse);
  position: absolute;
  bottom: clamp(2rem, 4vw, 4rem);
  left: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 4vw, 4rem)
}

.product-navigator-preview-copy .eyebrow {
  color: var(--color-accent);
  margin-bottom: 12px
}

.product-navigator-preview-copy>p:last-child {
  max-width: 440px;
  line-height: 1.55
}

.product-navigator-list {
  align-self: stretch
}

.product-navigator-item>a {
  border-bottom: 1px solid var(--color-border);
  min-height: calc(clamp(540px, 58vw, 760px)/8);
  font-family: var(--font-display);
  letter-spacing: -.045em;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px clamp(1.25rem, 2.6vw, 2.5rem);
  font-size: clamp(1.35rem, 2.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
  transition: background-color .2s, color .2s, padding .22s;
  display: flex
}

.product-navigator-item:last-child>a {
  border-bottom: 0
}

.product-navigator-item>a svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  flex: none;
  transition: transform .22s
}

:is(.product-navigator-item.is-active>a, .product-navigator-item>a:hover, .product-navigator-item>a:focus-visible) {
  background: var(--color-bg-primary);
  color: var(--color-accent-text);
  padding-left: calc(clamp(1.25rem, 2.6vw, 2.5rem) + 10px)
}

:is(.product-navigator-item>a:hover svg, .product-navigator-item>a:focus-visible svg) {
  transform: translate(4px, -4px)
}

.product-navigator-item>a:focus-visible {
  outline: 2px solid var(--color-accent-text);
  outline-offset: -4px
}

.product-navigator-mobile-panel {
  display: none
}

.product-navigator-cta {
  margin-top: 34px
}

@media (max-width:800px) {
  .product-navigator {
    padding: 6.5rem 7vw
  }

  .product-navigator-heading {
    margin-bottom: 3.5rem;
    display: block
  }

  .product-navigator-heading h2 {
    margin-top: 23px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .product-navigator-heading>p {
    margin-top: 28px
  }

  .product-navigator-layout {
    border-top: 1px solid var(--color-border);
    display: block
  }

  .product-navigator-preview {
    display: none
  }

  .product-navigator-item>a {
    border-bottom: 1px solid var(--color-border);
    min-height: 0;
    padding: 20px 0;
    font-size: clamp(1.65rem, 7.5vw, 2.35rem)
  }

  .product-navigator-item.is-active>a {
    color: var(--color-text-primary);
    background: 0 0;
    padding-left: 0
  }

  .product-navigator-item>a:focus-visible {
    outline-offset: 3px
  }

  .product-navigator-item>a svg {
    width: 19px;
    height: 19px
  }

  .product-navigator-mobile-panel {
    opacity: 0;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s, opacity .25s;
    display: grid;
    overflow: hidden
  }

  .product-navigator-mobile-panel-inner {
    visibility: hidden;
    min-height: 0
  }

  .product-navigator-item.is-active .product-navigator-mobile-panel {
    opacity: 1;
    grid-template-rows: 1fr
  }

  .product-navigator-item.is-active .product-navigator-mobile-panel-inner {
    visibility: visible
  }

  .product-navigator-mobile-image {
    height: 52vw;
    min-height: 210px;
    max-height: 360px;
    position: relative;
    overflow: hidden
  }

  .product-navigator-mobile-image img {
    object-fit: cover
  }

  .product-navigator-mobile-panel p {
    color: var(--color-text-secondary);
    margin-top: 18px;
    line-height: 1.55
  }

  .product-navigator-mobile-panel .product-explore {
    width: max-content;
    margin: 19px 0 24px
  }

  .product-navigator-cta {
    width: 100%;
    margin-top: 28px
  }
}

@media (prefers-reduced-motion:reduce) {

  .product-navigator-item>a,
  .product-navigator-mobile-panel,
  .product-navigator-mobile-image {
    transition: none !important
  }
}

.precision-grid {
  z-index: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden
}

.precision-grid--light {
  --precision-line: #191b1c13;
  --precision-point: #191b1c29;
  --precision-accent: var(--color-accent)
}

.precision-grid__line {
  background: var(--precision-line);
  display: block;
  position: absolute
}

.precision-grid__line--edge {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 8vw
}

.precision-grid__line--guide {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 33.333%
}

.precision-grid__line--split {
  width: 1px;
  top: 0;
  bottom: 0;
  left: 66.666%
}

.precision-grid__line--baseline {
  height: 1px;
  bottom: 12%;
  left: 8vw;
  right: 8vw
}

.precision-grid--low .precision-grid__line--guide {
  display: none
}

.precision-grid__scan {
  background: var(--precision-accent);
  opacity: 0;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 12%;
  left: 8vw;
  right: 8vw
}

.precision-grid--static .precision-grid__scan {
  display: none
}

.precision-grid__point {
  opacity: .82;
  width: 9px;
  height: 9px;
  position: absolute;
  bottom: calc(12% - 4px);
  left: calc(66.666% - 4px)
}

.precision-grid__point:before,
.precision-grid__point:after {
  content: "";
  background: var(--precision-point);
  position: absolute
}

.precision-grid__point:before {
  width: 9px;
  height: 1px;
  top: 4px;
  left: 0
}

.precision-grid__point:after {
  width: 1px;
  height: 9px;
  top: 0;
  left: 4px
}

.hero-cinematic>.precision-grid {
  z-index: 0
}

.hero-cinematic>.precision-grid .precision-grid__line--split {
  display: none
}

.hero-cinematic>.precision-grid .precision-grid__line--baseline {
  bottom: 7%;
  left: 4vw;
  right: 4vw
}

.hero-cinematic>.precision-grid .precision-grid__point {
  bottom: calc(7% - 4px);
  left: calc(4vw - 4px)
}

.hero-cinematic>.precision-grid~.hero-copy {
  z-index: 1
}

.product-navigator,
.capability,
.pre-footer {
  isolation: isolate;
  position: relative
}

.product-navigator>.precision-grid,
.capability>.precision-grid {
  z-index: 2
}

.product-navigator>:not(.precision-grid),
.capability>:not(.precision-grid),
.pre-footer>:not(.precision-grid) {
  z-index: 1;
  position: relative
}

.product-navigator>.precision-grid .precision-grid__line--split {
  left: 62.1%
}

.product-navigator>.precision-grid .precision-grid__point {
  left: calc(62.1% - 4px)
}

.pre-footer>.precision-grid {
  z-index: 0
}

.capability>.precision-grid .precision-grid__line--split {
  left: 50%
}

.capability>.precision-grid .precision-grid__point {
  left: calc(50% - 4px)
}

@media (max-width:800px) {

  .precision-grid__line--guide,
  .precision-grid__line--split {
    display: none
  }

  .precision-grid__line--edge {
    left: 7vw
  }

  .precision-grid__line--baseline {
    left: 7vw;
    right: 7vw
  }

  .precision-grid__point {
    left: calc(7vw - 4px)
  }

  .hero-cinematic>.precision-grid .precision-grid__line--baseline {
    left: 7vw;
    right: 7vw
  }

  .hero-cinematic>.precision-grid .precision-grid__line--edge {
    left: 7vw
  }

  .hero-cinematic>.precision-grid .precision-grid__point {
    left: calc(7vw - 4px)
  }
}

@media (prefers-reduced-motion:reduce) {
  .precision-grid__scan {
    display: none !important
  }
}

.capability {
  border-top: 0
}

.capability-principles {
  border-top: 1px solid #f2f1ed38;
  margin-top: 34px
}

.capability-principles>div {
  border-bottom: 1px solid #f2f1ed38;
  padding: 14px 0
}

.capability-principles strong {
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  letter-spacing: .02em;
  font-weight: 500
}

.capability .button-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  margin-top: 32px;
  color: var(--color-text-primary) !important
}

.capability .button-primary svg {
  stroke: var(--color-text-primary)
}

.quote {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: clamp(5.5rem, 9vw, 8rem) 8vw
}

.quote .eyebrow {
  color: var(--color-accent-text)
}

.quote blockquote {
  max-width: 840px;
  font-family: var(--font-display);
  letter-spacing: -.055em;
  margin: 30px auto 24px;
  font-size: clamp(2.15rem, 4.3vw, 4.9rem);
  font-weight: 500;
  line-height: 1.02
}

.quote-by {
  color: var(--color-text-subtle);
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  letter-spacing: .08em;
  font-weight: 500
}

.pre-footer {
  background: var(--color-bg-inverse);
  min-height: 0;
  color: var(--color-text-inverse);
  border-top: 1px solid #f2f1ed29;
  border-bottom: 1px solid #f2f1ed29;
  padding: clamp(4.5rem, 6.5vw, 6rem) 8vw
}

.pre-footer-content {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 2rem 8vw;
  display: grid
}

.pre-footer .eyebrow {
  color: var(--color-accent);
  grid-column: 1;
  margin: 0
}

.pre-footer-title-mask {
  grid-column: 1;
  margin-top: -.8rem
}

.pre-footer h2 {
  max-width: 650px;
  color: var(--color-text-inverse);
  font-size: clamp(3.3rem, 5.8vw, 6.7rem)
}

.pre-footer-action {
  grid-area: 1/2/span 2;
  max-width: 380px;
  padding-bottom: 0
}

.pre-footer-action p {
  color: #d6d8d6;
  margin-bottom: 26px;
  line-height: 1.58
}

.pre-footer-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  display: flex
}

.pre-footer .button-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-primary) !important
}

.pre-footer .button-primary svg {
  stroke: var(--color-text-primary)
}

.pre-footer-phone {
  min-height: 42px;
  color: var(--color-text-inverse);
  font-size: var(--type-meta);
  border-bottom: 1px solid #f2f1ed80;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  transition: color .2s, border-color .2s;
  display: inline-flex
}

.pre-footer-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  stroke-width: 1.75px
}

.pre-footer-phone:hover {
  color: var(--color-accent);
  border-color: var(--color-accent)
}

footer {
  border-top: 1px solid #f2f1ed1f
}

@media (max-width:800px) {

  .capability-principles,
  .capability .button-primary {
    margin-top: 28px
  }

  .selected-projects {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .quote {
    padding: 5rem 7vw
  }

  .quote blockquote {
    margin: 26px auto 22px;
    font-size: clamp(2rem, 9.8vw, 3.35rem)
  }

  .pre-footer {
    padding: 5rem 7vw
  }

  .pre-footer-content {
    display: block
  }

  .pre-footer .eyebrow {
    margin-bottom: 24px
  }

  .pre-footer-title-mask {
    margin: 0
  }

  .pre-footer h2 {
    font-size: clamp(3.2rem, 13vw, 5.2rem)
  }

  .pre-footer-action {
    margin-top: 32px
  }

  .pre-footer-actions {
    flex-direction: column;
    align-items: stretch
  }

  .pre-footer .button-primary {
    width: 100%
  }

  .pre-footer-phone {
    width: max-content
  }
}

@media (min-width:801px) and (max-width:1120px) {
  .nav {
    left: 20px;
    right: 20px
  }

  .nav-main {
    gap: clamp(16px, 2vw, 26px)
  }

  .nav-utilities .nav-phone {
    display: none
  }

  .nav .nav-cta {
    padding-inline: 12px
  }

  .nav-brand img {
    width: 122px
  }
}

@media (min-width:801px) and (max-width:900px) {
  .nav-main {
    gap: 16px;
    font-size: 11px
  }

  .nav .nav-cta {
    font-size: 10px
  }
}

@media (max-width:800px) {

  .hero-actions .button,
  .hero-actions .hero-explore {
    min-height: 48px
  }

  .product-navigator-mobile-image {
    height: 48vw;
    min-height: 190px;
    max-height: 300px
  }

  .nav-main a,
  .nav-main button {
    min-height: 44px
  }
}

@media (prefers-reduced-motion:reduce) {
  .product-navigator-preview-image {
    transition: none !important
  }
}

.catalog-hero--editorial {
  align-content: end;
  min-height: min(62svh, 680px);
  display: grid
}

.gallery-hero--editorial {
  align-content: end;
  min-height: min(58svh, 620px);
  display: grid
}

.about-hero--editorial,
.about-hero-image {
  min-height: min(68svh, 720px)
}

.contact-hero--direct {
  align-items: end;
  min-height: min(62svh, 660px)
}

.about-story {
  isolation: isolate;
  position: relative
}

.about-story>.precision-grid {
  z-index: 0
}

.about-story>:not(.precision-grid) {
  z-index: 1;
  position: relative
}

.about-story .precision-grid__line--split {
  left: 58%
}

.about-story .precision-grid__point {
  left: calc(58% - 4px)
}

.contact-details>div {
  padding-right: 1.5vw
}

.catalog-card-copy .card-link,
.related-products-grid .tertiary-action {
  color: var(--color-text-primary)
}

@media (max-width:800px) {

  .catalog-hero--editorial,
  .gallery-hero--editorial,
  .about-hero--editorial,
  .contact-hero--direct {
    min-height: 0
  }

  .about-hero-image {
    min-height: 360px
  }

  .contact-details>div {
    padding-right: 0
  }
}

:root {
  --aaw-canvas: #eff1ee;
  --aaw-surface-raised: #f6f7f4;
  --aaw-surface-soft: #e7eae6;
  --aaw-surface-muted: #dce1dc;
  --aaw-ink: #30383a;
  --aaw-ink-soft: #556064;
  --aaw-ink-subtle: #737d7e;
  --aaw-line: #c8cfca;
  --aaw-deep: #31474d;
  --aaw-blue: #29bce9;
  --aaw-blue-primary: #0c7ea0;
  --aaw-blue-primary-hover: #0b6f8d;
  --aaw-paper: var(--aaw-canvas);
  --aaw-surface: var(--aaw-surface-soft);
  --aaw-blue-strong: var(--aaw-blue-primary);
  --aaw-blue-text: var(--aaw-blue-primary);
  --aaw-text-muted: var(--aaw-ink-soft);
  --aaw-text-subtle: var(--aaw-ink-subtle);
  --aaw-dark-muted: #d3dcda;
  --color-canvas: var(--aaw-canvas);
  --color-surface: var(--aaw-surface-raised);
  --color-surface-soft: var(--aaw-surface-soft);
  --color-surface-muted: var(--aaw-surface-muted);
  --color-text: var(--aaw-ink);
  --color-text-secondary: var(--aaw-ink-soft);
  --color-text-subtle: var(--aaw-ink-subtle);
  --color-border: var(--aaw-line);
  --color-brand: var(--aaw-blue);
  --color-action: var(--aaw-blue-primary);
  --color-action-hover: var(--aaw-blue-primary-hover);
  --color-inverse: var(--aaw-deep);
  --color-bg-primary: var(--color-canvas);
  --color-bg-secondary: var(--color-surface-soft);
  --color-bg-inverse: var(--color-inverse);
  --color-text-primary: var(--color-text);
  --color-text-inverse: #fff;
  --color-accent: var(--color-brand);
  --color-accent-strong: var(--color-action);
  --color-accent-text: var(--color-action);
  --ink: var(--aaw-ink);
  --paper: var(--aaw-paper);
  --blue: var(--aaw-blue);
  --line: var(--aaw-line);
  --font-display: var(--font-space-grotesk), "Space Grotesk", sans-serif
}

body {
  background: var(--color-canvas);
  color: var(--color-text)
}

h1,
h2 {
  letter-spacing: -.03em;
  line-height: .96
}

h3 {
  letter-spacing: -.022em;
  line-height: 1
}

.product-navigator-item>a,
.product-range-row,
.catalog-card-copy h3,
.related-products-grid p,
.contact-details a {
  letter-spacing: -.03em
}

.button,
.nav-cta,
.button-primary {
  background: var(--color-action);
  border-color: var(--color-action);
  color: #fff !important
}

.button svg,
.nav-cta svg,
.button-primary svg {
  stroke: currentColor
}

.button-secondary {
  border-color: var(--color-text);
  color: var(--color-text);
  background: 0 0
}

.button-secondary:hover {
  background: var(--color-surface-muted);
  border-color: var(--color-text);
  color: var(--color-text)
}

.tertiary-action,
.text-link {
  color: var(--color-action)
}

.tertiary-action svg,
.text-link svg {
  stroke: currentColor
}

.capability,
.about-capability,
.pre-footer,
footer {
  background: var(--color-inverse)
}

.pre-footer-action p {
  color: #d3dcda
}

.quote,
.product-navigator-preview,
.catalog-card-copy>div {
  background: var(--color-surface-raised)
}

.contact-details,
.product-information,
.product-characteristics {
  background: var(--color-surface-soft)
}

@media (max-width:800px) {

  .nav-main,
  .nav nav,
  .nav .nav-main.open {
    background: #f6f7f4fc
  }

  .nav-over-hero .nav-main.open .nav-cta {
    background: var(--color-action);
    border-color: var(--color-action);
    color: #fff !important
  }
}

:root {
  --font-display: "Space Grotesk", sans-serif;
  --font-ui: "Manrope", sans-serif;
  --aaw-canvas: #e9ece8;
  --aaw-surface-raised: #f3f4f1;
  --aaw-surface-soft: #dee3df;
  --aaw-surface-muted: #cfd6d1;
  --aaw-ink: #263437;
  --aaw-ink-soft: #526063;
  --aaw-ink-subtle: #748082;
  --aaw-line: #bcc6c0;
  --aaw-deep: #253e44;
  --aaw-deep-strong: #1e3439;
  --aaw-blue: #2cb9e5;
  --aaw-blue-hover: #18a8d7;
  --aaw-on-blue: #17343b;
  --aaw-blue-primary: var(--aaw-blue);
  --aaw-blue-primary-hover: var(--aaw-blue-hover);
  --aaw-blue-strong: var(--aaw-blue);
  --aaw-blue-text: var(--aaw-blue);
  --aaw-text-muted: var(--aaw-ink-soft);
  --aaw-text-subtle: var(--aaw-ink-subtle);
  --aaw-dark-muted: #aeb9b7;
  --text-on-deep: #c9d0cd;
  --text-on-deep-muted: #aeb9b7;
  --color-canvas: var(--aaw-canvas);
  --color-surface: var(--aaw-surface-raised);
  --color-surface-soft: var(--aaw-surface-soft);
  --color-surface-muted: var(--aaw-surface-muted);
  --color-text: var(--aaw-ink);
  --color-text-secondary: var(--aaw-ink-soft);
  --color-text-subtle: var(--aaw-ink-subtle);
  --color-border: var(--aaw-line);
  --color-brand: var(--aaw-blue);
  --color-action: var(--aaw-blue);
  --color-action-hover: var(--aaw-blue-hover);
  --color-inverse: var(--aaw-deep);
  --color-bg-primary: var(--color-canvas);
  --color-bg-secondary: var(--color-surface-soft);
  --color-bg-inverse: var(--color-inverse);
  --color-text-primary: var(--color-text);
  --color-text-inverse: #f1f3f0;
  --color-accent: var(--color-brand);
  --color-accent-strong: var(--color-action);
  --color-accent-text: var(--aaw-blue);
  --ink: var(--aaw-ink);
  --paper: var(--aaw-canvas);
  --blue: var(--aaw-blue);
  --line: var(--aaw-line)
}

.button,
.nav-cta,
.button-primary {
  background: var(--color-action);
  border-color: var(--color-action);
  min-height: 52px;
  padding: 13px 24px;
  color: var(--aaw-on-blue) !important
}

.button:hover,
.nav-cta:hover,
.button-primary:hover {
  background: var(--color-action-hover);
  border-color: var(--color-action-hover)
}

.capability .button-primary,
.about-capability .button-primary,
.pre-footer .button-primary {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--aaw-on-blue) !important
}

.capability .button-primary:hover,
.about-capability .button-primary:hover,
.pre-footer .button-primary:hover {
  background: var(--aaw-blue-hover);
  border-color: var(--aaw-blue-hover)
}

.capability .button-primary svg,
.about-capability .button-primary svg,
.pre-footer .button-primary svg {
  stroke: currentColor
}

.nav,
.nav.nav-over-hero {
  background: #f3f4f1eb;
  border-color: #bcc6c0eb;
  box-shadow: 0 8px 32px #2634371a
}

.nav .product-menu {
  border-color: var(--color-border);
  background: #f3f4f1fa;
  box-shadow: 0 16px 34px #26343721
}

@media (max-width:800px) {

  .button,
  .nav-cta,
  .button-primary {
    min-height: 52px;
    padding: 13px 22px
  }

  .nav-main,
  .nav nav,
  .nav .nav-main.open {
    background: #f3f4f1fc
  }
}

.nav-over-hero .nav-cta,
.nav-over-hero .nav-main.open .nav-cta {
  background: var(--color-action);
  border-color: var(--color-action);
  color: var(--aaw-on-blue) !important
}

:root {
  --aaw-canvas: #eceeeb;
  --aaw-surface-raised: #f5f6f3;
  --aaw-surface-soft: #e2e5e1;
  --aaw-surface-muted: #d4d8d4;
  --aaw-ink: #2f3232;
  --aaw-ink-soft: #5a5f5e;
  --aaw-ink-subtle: #777d7b;
  --aaw-line: #c7ccc8;
  --aaw-graphite: #2e3030;
  --aaw-graphite-deep: #242626;
  --aaw-graphite-soft: #3b3e3d;
  --aaw-blue: #2cb9e5;
  --aaw-blue-hover: #17a9d7;
  --aaw-on-blue: #1f292b;
  --aaw-deep: var(--aaw-graphite);
  --aaw-deep-strong: var(--aaw-graphite-deep);
  --aaw-blue-primary: var(--aaw-blue);
  --aaw-blue-primary-hover: var(--aaw-blue-hover);
  --aaw-blue-strong: var(--aaw-blue);
  --aaw-blue-text: var(--aaw-blue);
  --aaw-text-muted: var(--aaw-ink-soft);
  --aaw-text-subtle: var(--aaw-ink-subtle);
  --aaw-dark-muted: #a8aeab;
  --text-on-deep: #cfd2cf;
  --text-on-deep-muted: #a8aeab;
  --color-canvas: var(--aaw-canvas);
  --color-surface: var(--aaw-surface-raised);
  --color-surface-soft: var(--aaw-surface-soft);
  --color-surface-muted: var(--aaw-surface-muted);
  --color-text: var(--aaw-ink);
  --color-text-secondary: var(--aaw-ink-soft);
  --color-text-subtle: var(--aaw-ink-subtle);
  --color-border: var(--aaw-line);
  --color-brand: var(--aaw-blue);
  --color-action: var(--aaw-blue);
  --color-action-hover: var(--aaw-blue-hover);
  --color-inverse: var(--aaw-graphite);
  --color-bg-primary: var(--color-canvas);
  --color-bg-secondary: var(--color-surface-soft);
  --color-bg-inverse: var(--color-inverse);
  --color-text-primary: var(--color-text);
  --color-text-inverse: #f3f4f1;
  --color-accent: var(--color-brand);
  --color-accent-strong: var(--color-action);
  --color-accent-text: var(--aaw-blue);
  --ink: var(--aaw-ink);
  --paper: var(--aaw-canvas);
  --blue: var(--aaw-blue);
  --line: var(--aaw-line)
}

.pre-footer-phone {
  color: var(--color-text-inverse);
  border-color: #ffffff5c
}

.pre-footer-phone svg {
  stroke: var(--aaw-blue)
}

.precision-grid--dark {
  --precision-line: #ffffff1a;
  --precision-point: #ffffff24;
  --precision-accent: var(--aaw-blue)
}

:root {
  --content-max: 1600px;
  --page-gutter: clamp(24px, 8vw, 128px)
}

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

@media (min-width:801px) {
  .nav {
    left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    height: 68px;
    padding-inline: 20px
  }

  .nav-main {
    gap: clamp(20px, 2.4vw, 38px)
  }

  .nav-projects {
    position: relative
  }

  .nav-projects-trigger {
    align-items: center;
    gap: 6px;
    display: flex
  }

  .nav-projects-trigger>a {
    display: block
  }

  .nav-projects-trigger button {
    color: inherit;
    cursor: pointer;
    background: 0 0;
    border: 0;
    justify-content: center;
    align-items: center;
    padding: 3px 1px;
    line-height: 1;
    display: inline-flex
  }

  .nav-projects-trigger button svg {
    stroke-width: 1.75px;
    width: 17px;
    height: 17px;
    transition: transform .25s
  }

  .nav-projects.is-open .nav-projects-trigger button svg {
    transform: rotate(180deg)
  }

  .project-menu {
    z-index: 20;
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-backdrop-filter: blur(20px)saturate(120%);
    background: #f5f6f3fa;
    border-radius: 12px;
    width: 250px;
    padding: 12px 18px;
    transition: opacity .2s, transform .2s, visibility .2s;
    display: grid;
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    transform: translate(-50%);
    box-shadow: 0 16px 34px #2f323221
  }

  .project-menu a {
    border-bottom: 1px solid var(--color-border);
    font-size: var(--type-meta);
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-weight: 600;
    display: flex
  }

  .project-menu a:last-child {
    border-bottom: 0
  }

  .project-menu a:hover {
    color: var(--color-action)
  }

  .project-menu svg {
    width: 15px;
    height: 15px;
    stroke: var(--color-action);
    stroke-width: 1.75px
  }

  .nav-projects.is-open .project-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%)translateY(3px)
  }

  .nav-products.is-open .product-menu {
    pointer-events: auto
  }

  :is(.nav-products-trigger button:focus-visible, .nav-projects-trigger button:focus-visible) {
    outline: 2px solid var(--color-action);
    outline-offset: 4px;
    border-radius: 3px
  }
}

@media (min-width:801px) and (max-width:1120px) {
  .nav {
    left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
  }

  .nav-main {
    gap: clamp(14px, 1.8vw, 24px)
  }

  .nav-utilities .nav-phone {
    font-size: 0
  }

  .nav-utilities .nav-phone svg {
    width: 18px;
    height: 18px
  }

  .nav .nav-cta {
    padding-inline: 14px
  }
}

@media (max-width:800px) {
  .nav-projects {
    width: 100%
  }

  .nav-projects-trigger {
    border-bottom: 1px solid var(--color-border);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    display: flex
  }

  .nav-projects-trigger>a {
    letter-spacing: -.03em;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05
  }

  .nav-projects-trigger button {
    color: inherit;
    cursor: pointer;
    background: 0 0;
    border: 0;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    display: inline-flex
  }

  .nav-projects-trigger button svg {
    stroke-width: 1.75px;
    width: 20px;
    height: 20px;
    transition: transform .28s
  }

  .nav-projects.is-open .nav-projects-trigger button svg {
    transform: rotate(180deg)
  }

  .project-menu {
    opacity: 0;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s, opacity .2s;
    display: grid;
    overflow: hidden
  }

  .project-menu a {
    visibility: hidden;
    border-bottom: 1px solid var(--color-border);
    min-height: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2
  }

  .project-menu svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-action);
    stroke-width: 1.75px
  }

  .nav-projects.is-open .project-menu {
    opacity: 1;
    grid-template-rows: 1fr
  }

  .nav-projects.is-open .project-menu a {
    visibility: visible;
    padding: 13px 0
  }

  .nav-main .nav-projects {
    order: 0
  }
}

.hero-media,
.hero-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-frame {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transform: translateZ(0)
}

.hero-frame img {
  object-fit: cover;
  object-position: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  transform: translateZ(0)
}

@media (prefers-reduced-motion:reduce) {
  .hero-frame {
    will-change: auto;
    transform: none !important
  }

  .hero-frame img {
    transform: none !important
  }
}

.product-navigator-heading {
  margin-bottom: clamp(3rem, 5vw, 5.5rem)
}

.product-navigator-intro {
  flex-direction: column;
  align-self: end;
  align-items: flex-start;
  gap: 26px;
  max-width: 410px;
  display: flex
}

.product-navigator-intro>p {
  color: var(--color-text-secondary);
  line-height: 1.58
}

.product-navigator-cta {
  margin: 0
}

.product-navigator-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .92fr);
  align-items: stretch
}

.product-navigator-preview {
  min-height: clamp(530px, 49vw, 680px)
}

.product-navigator-list {
  flex-direction: column;
  min-height: clamp(530px, 49vw, 680px);
  display: flex
}

.product-navigator-item {
  flex: 1;
  min-height: 0;
  display: flex
}

.product-navigator-item>a {
  min-height: 58px;
  color: var(--color-text-secondary);
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(20px, 2.5vw, 38px);
  transition: background-color .28s, color .28s, flex .35s cubic-bezier(.2, .7, .2, 1);
  display: flex;
  position: relative
}

.product-navigator-item>a:before {
  content: "";
  background: var(--color-action);
  transform-origin: 50%;
  width: 3px;
  transition: transform .28s;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  transform: scaleY(0)
}

.product-navigator-item-copy {
  gap: 0;
  min-width: 0;
  display: grid
}

.product-navigator-item-copy strong {
  font-family: var(--font-display);
  letter-spacing: -.035em;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 1.05
}

.product-navigator-item-copy small {
  max-width: 440px;
  max-height: 0;
  color: var(--color-text-secondary);
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  opacity: 0;
  font-weight: 400;
  line-height: 1.45;
  transition: max-height .32s, margin-top .28s, opacity .22s;
  display: grid;
  overflow: hidden
}

.product-navigator-item>a>svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-action);
  stroke-width: 1.65px;
  opacity: .6;
  flex: none;
  transition: opacity .28s, transform .28s
}

.product-navigator-item.is-active {
  flex: 1.55
}

.product-navigator-item.is-active>a {
  color: var(--color-text-primary);
  background: #2cb9e513
}

.product-navigator-item.is-active .product-navigator-item-copy {
  gap: 7px
}

.product-navigator-item.is-active .product-navigator-item-copy small {
  opacity: 1;
  max-height: 3.2em
}

.product-navigator-item.is-active>a>svg {
  opacity: 1;
  transform: translate(2px, -2px)
}

:is(.product-navigator-item>a:hover, .product-navigator-item>a:focus-visible) {
  color: var(--color-text-primary);
  background: #2cb9e513
}

.product-navigator-item>a:focus-visible {
  z-index: 1;
  outline: 2px solid var(--color-action);
  outline-offset: -2px
}

.product-navigator-preview-copy {
  display: none
}

@media (max-width:800px) {
  .product-navigator-heading {
    margin-bottom: 2.75rem
  }

  .product-navigator-intro {
    gap: 20px;
    max-width: 100%;
    margin-top: 26px
  }

  .product-navigator-cta {
    width: max-content
  }

  .product-navigator-layout {
    display: block
  }

  .product-navigator-preview,
  .product-navigator-list {
    min-height: 0
  }

  .product-navigator-item {
    display: block
  }

  .product-navigator-item>a {
    min-height: 0;
    color: var(--color-text-primary);
    padding: 19px 0;
    background: 0 0 !important
  }

  .product-navigator-item>a:before {
    display: none
  }

  .product-navigator-item-copy strong {
    font-size: clamp(1.55rem, 7vw, 2.2rem)
  }

  .product-navigator-item-copy small {
    display: none
  }

  .product-navigator-item.is-active {
    display: block
  }

  .product-navigator-item.is-active>a>svg {
    transform: translate(2px, -2px)
  }
}

.selected-projects {
  padding-top: clamp(5.5rem, 8vw, 8rem);
  padding-bottom: clamp(5.5rem, 8vw, 8rem)
}

.selected-projects-heading {
  padding-bottom: clamp(3.5rem, 5vw, 5rem)
}

.selected-project-list {
  gap: clamp(2.75rem, 4.5vw, 5rem) 24px
}

.selected-project {
  margin: 0
}

.selected-project-image {
  cursor: default
}

.selected-project-image img {
  transition: transform .7s cubic-bezier(.22, 1, .36, 1)
}

.selected-project-copy {
  padding-top: 16px
}

.selected-project-copy h3 {
  margin-top: 11px;
  font-size: clamp(1.7rem, 2.5vw, 3.15rem)
}

.selected-project:first-child {
  grid-column: 1/span 7
}

.selected-project:first-child .selected-project-image {
  height: clamp(390px, 43vw, 610px)
}

.selected-project:nth-child(2) {
  grid-column: 9/-1;
  padding-top: clamp(4rem, 8vw, 8rem)
}

.selected-project:nth-child(2) .selected-project-image {
  height: clamp(250px, 23vw, 360px)
}

.selected-project:nth-child(3) {
  grid-column: 8/-1;
  padding-top: clamp(1rem, 3vw, 3rem)
}

.selected-project:nth-child(3) .selected-project-image {
  height: clamp(340px, 35vw, 500px)
}

.selected-project:nth-child(4) {
  grid-column: 1/span 4
}

.selected-project:nth-child(4) .selected-project-image {
  height: clamp(300px, 31vw, 440px)
}

.selected-project:nth-child(5) {
  grid-column: 6/span 7
}

.selected-project:nth-child(5) .selected-project-image {
  height: clamp(330px, 33vw, 490px)
}

.selected-project:nth-child(6) {
  grid-column: 2/span 5
}

.selected-project:nth-child(6) .selected-project-image {
  height: clamp(300px, 29vw, 420px)
}

.selected-project:nth-child(7) {
  grid-column: 8/-1;
  padding-top: clamp(2rem, 5vw, 5rem)
}

.selected-project:nth-child(7) .selected-project-image {
  height: clamp(280px, 26vw, 380px)
}

.project-gallery {
  gap: clamp(3rem, 5vw, 5.5rem) 24px;
  padding-bottom: clamp(6rem, 10vw, 10rem)
}

.project-gallery-item figcaption {
  border-color: var(--color-border);
  color: var(--color-text-secondary)
}

.project-gallery-item figcaption span:first-child {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  letter-spacing: -.025em;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  font-weight: 500
}

.project-gallery-item:hover .project-gallery-image img {
  transform: none
}

@media (max-width:800px) {
  .selected-projects {
    padding: 5.5rem 7vw
  }

  .selected-projects-heading {
    padding-bottom: 3.5rem
  }

  .selected-project-list {
    gap: 3.5rem
  }

  .selected-project,
  .selected-project:nth-child(n) {
    padding: 0;
    display: block
  }

  .selected-project:nth-child(n) .selected-project-image {
    height: 52vh;
    min-height: 320px;
    max-height: 500px
  }

  .selected-project-copy h3 {
    font-size: clamp(2rem, 9vw, 3.25rem)
  }

  .project-gallery-item+.project-gallery-item {
    margin-top: 3.5rem
  }

  .project-gallery-image,
  .project-gallery-item:nth-child(n) .project-gallery-image {
    height: 52vh;
    min-height: 320px;
    max-height: 520px
  }

  .project-gallery-item figcaption {
    display: block
  }

  .project-gallery-item figcaption span+span {
    margin-top: 4px;
    display: block
  }
}

.precision-grid--light {
  --precision-line: #2f323213;
  --precision-point: #2f323224
}

.precision-grid__line--edge {
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
}

.precision-grid__line--edge-right {
  top: 0;
  right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  width: 1px;
  bottom: 0
}

.precision-grid__line--baseline,
.precision-grid__scan {
  right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
}

.hero-cinematic>.precision-grid .precision-grid__line--edge {
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
}

.hero-cinematic>.precision-grid .precision-grid__line--edge-right {
  right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
}

.hero-cinematic>.precision-grid .precision-grid__line--baseline {
  right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2))
}

.hero-cinematic>.precision-grid .precision-grid__point {
  left: calc(max(var(--page-gutter), calc((100vw - var(--content-max)) / 2)) - 4px)
}

.capability,
.about-capability {
  background: var(--aaw-deep)
}

.pre-footer {
  background: var(--aaw-deep-strong)
}

.quote {
  background: var(--color-surface-raised)
}

.quote blockquote:before {
  content: "“";
  color: var(--color-action);
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-size: 2.2rem;
  line-height: .45;
  display: block
}

@media (max-width:800px) {
  .precision-grid__line--edge {
    left: var(--page-gutter)
  }

  .precision-grid__line--edge-right {
    right: var(--page-gutter)
  }

  .precision-grid__line--baseline,
  .precision-grid__scan {
    right: var(--page-gutter);
    left: var(--page-gutter)
  }

  .precision-grid__point {
    left: calc(var(--page-gutter) - 4px)
  }

  .hero-cinematic>.precision-grid .precision-grid__line--edge {
    left: var(--page-gutter)
  }

  .hero-cinematic>.precision-grid .precision-grid__line--edge-right {
    right: var(--page-gutter)
  }

  .hero-cinematic>.precision-grid .precision-grid__line--baseline {
    right: var(--page-gutter);
    left: var(--page-gutter)
  }

  .hero-cinematic>.precision-grid .precision-grid__point {
    left: calc(var(--page-gutter) - 4px)
  }

  .precision-grid__line--guide,
  .precision-grid__line--split {
    display: none
  }
}

:root {
  --aaw-deep: var(--aaw-graphite);
  --aaw-deep-strong: var(--aaw-graphite-deep);
  --color-inverse: var(--aaw-graphite);
  --color-bg-inverse: var(--aaw-graphite)
}

.capability,
.about-capability,
.pre-footer {
  background: var(--aaw-graphite);
  color: #f3f4f1
}

.capability h2,
.about-capability h2,
.pre-footer h2 {
  color: #f3f4f1
}

.capability h2 em,
.about-capability h2 em {
  color: #aeb4b1
}

.pre-footer h2 em {
  color: var(--aaw-blue)
}

.capability [data-capability-copy] p,
.about-capability-copy>p:not(.eyebrow),
.pre-footer-action p {
  color: #cfd2cf
}

.capability .eyebrow,
.about-capability .eyebrow,
.pre-footer .eyebrow {
  color: var(--aaw-blue)
}

.capability-principles,
.capability-principles>div {
  border-color: #ffffff24
}

.capability-principles strong {
  color: #f3f4f1
}

.capability .precision-grid--dark,
.about-capability .precision-grid--dark,
.pre-footer .precision-grid--dark {
  --precision-line: #ffffff1a;
  --precision-point: #ffffff24;
  --precision-accent: var(--aaw-blue)
}

footer {
  background: var(--aaw-graphite-deep)
}

.nav,
.nav.nav-over-hero {
  background: #f3f4f1eb;
  border: 0;
  border-radius: 4px;
  height: 64px;
  box-shadow: 0 14px 36px #26343724, 0 3px 10px #26343714
}

.nav-brand img {
  width: 98px
}

.nav-main {
  gap: clamp(18px, 2.1vw, 32px)
}

.nav .product-menu {
  background: #f3f4f1fa;
  border: 0;
  border-radius: 4px;
  width: min(640px, 100vw - 48px);
  padding: 20px 24px 22px;
  box-shadow: 0 18px 42px #26343729
}

.product-menu-head {
  margin-bottom: 8px;
  padding-bottom: 13px
}

.product-menu-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px
}

.product-menu-groups a {
  text-transform: none;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  min-height: 64px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600
}

.product-menu-groups>a:nth-last-child(-n+2) {
  border-bottom: 0
}

.product-menu-groups a>span:last-child {
  min-width: 0;
  color: inherit;
  opacity: 1;
  font-size: 14px;
  line-height: 1.25;
  transform: none
}

.product-menu-groups a:hover>span:last-child {
  opacity: 1;
  transform: none
}

.product-menu-groups a .product-menu-thumb {
  background: var(--color-surface-muted);
  width: 72px;
  height: 48px;
  color: inherit;
  opacity: 1;
  border-radius: 3px;
  flex: 0 0 72px;
  display: block;
  position: relative;
  overflow: hidden;
  transform: none
}

.product-menu-thumb img {
  object-fit: cover
}

@media (max-width:800px) {

  .nav,
  .nav.nav-over-hero {
    background: #f3f4f1f5;
    border-radius: 4px;
    height: 60px;
    box-shadow: 0 10px 28px #26343726, 0 2px 8px #26343714
  }

  .nav-brand img {
    width: 92px
  }

  .menu {
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0
  }

  .menu-label {
    clip: rect(0 0 0 0);
    white-space: nowrap;
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden
  }

  .nav-main,
  .nav nav {
    background: #f3f4f1fc;
    padding-top: 92px
  }

  .nav-main .product-menu {
    width: 100%;
    box-shadow: none;
    background: 0 0;
    padding: 0
  }

  .product-menu-groups {
    grid-template-columns: 1fr;
    gap: 0
  }

  .product-menu-groups a {
    gap: 11px;
    min-height: 58px;
    padding: 9px 0;
    font-size: 15px
  }

  .product-menu-groups a>span:last-child {
    font-size: 15px
  }

  .product-menu-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 40px
  }
}

@media (prefers-reduced-motion:reduce) {

  .product-menu,
  .product-menu-groups a,
  .nav-products-trigger button {
    transition: none !important
  }
}

.proof-strip {
  background: var(--color-surface-raised);
  border-top: 0;
  border-bottom: 1px solid var(--color-border);
  min-height: 66px
}

.proof-strip span {
  letter-spacing: .08em;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(14px, 2vw, 28px);
  font-size: 10px;
  display: flex
}

.proof-strip b {
  font-family: var(--font-ui);
  letter-spacing: .05em;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  display: inline
}

.product-navigator>.precision-grid .precision-grid__line--guide {
  display: none
}

.product-navigator-preview-image:after {
  background: linear-gradient(#181f210a 32%, #181f216b 62%, #181f21cc 100%)
}

.product-navigator-preview-copy {
  color: #f3f4f1;
  display: block;
  bottom: clamp(4.5rem, 7vw, 6.5rem)
}

.product-navigator-preview-copy h3 {
  color: #f3f4f1;
  font-family: var(--font-display);
  letter-spacing: -.035em;
  margin: 0 0 12px;
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.04
}

.product-navigator-preview-copy p {
  color: #e2e6e3;
  max-width: 420px;
  font-size: clamp(.9375rem, 1.2vw, 1.125rem);
  line-height: 1.5
}

.product-navigator-measure {
  height: 1px;
  bottom: clamp(2rem, 3vw, 3rem);
  left: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 4vw, 4rem)
}

.product-navigator-item {
  flex: 1 !important
}

.product-navigator-item>a {
  min-height: 0;
  padding-block: 14px
}

.product-navigator-item>a>svg {
  display: none
}

.product-navigator-item-copy {
  display: block
}

.product-navigator-item-copy small {
  display: none !important
}

:is(.product-navigator-item.is-active>a, .product-navigator-item>a:hover, .product-navigator-item>a:focus-visible) {
  color: var(--color-text-primary);
  background: #2cb9e50e;
  padding-left: calc(clamp(20px, 2.5vw, 38px) + 10px)
}

.product-navigator-item.is-active>a:before {
  transform: scaleY(1)
}

.quote {
  background: var(--color-surface-raised);
  padding: clamp(4.8rem, 7vw, 6.5rem) 8vw
}

.quote blockquote {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  line-height: 1.08
}

@media (max-width:800px) {
  .proof-strip {
    min-height: 0
  }

  .proof-strip span {
    min-height: 54px;
    padding: 14px 3vw;
    font-size: 9px
  }

  .proof-strip b {
    font-size: 10px
  }

  .product-navigator-preview {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    height: 56vw;
    min-height: 56vw;
    max-height: 420px;
    display: block
  }

  .product-navigator-preview-copy {
    bottom: 58px;
    left: 7vw;
    right: 7vw
  }

  .product-navigator-preview-copy h3 {
    margin-bottom: 8px;
    font-size: clamp(1.6rem, 7vw, 2.2rem)
  }

  .product-navigator-preview-copy p {
    font-size: 15px;
    line-height: 1.45
  }

  .product-navigator-measure {
    bottom: 24px;
    left: 7vw;
    right: 7vw
  }

  .product-navigator-item>a {
    padding: 18px 0
  }

  :is(.product-navigator-item.is-active>a, .product-navigator-item>a:hover, .product-navigator-item>a:focus-visible) {
    padding-left: 10px
  }

  .quote {
    padding: 4.5rem 7vw
  }

  .quote blockquote {
    font-size: clamp(1.9rem, 9vw, 3rem)
  }
}

.selected-project-list,
.project-gallery {
  grid-auto-flow: dense;
  grid-auto-rows: 4px;
  gap: 12px 24px;
  display: grid
}

.selected-project,
.project-gallery-item {
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  display: grid;
  padding: 0 !important
}

.selected-project-image,
.project-gallery-image {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important
}

.selected-project-copy,
.project-gallery-item figcaption {
  border: 0;
  min-height: 48px;
  margin-top: 14px;
  padding-top: 0
}

.selected-project-image img,
.project-gallery-image img {
  transition: transform .55s cubic-bezier(.22, 1, .36, 1)
}

.selected-project-image:hover img,
.project-gallery-image:hover img {
  transform: scale(1.012)
}

.selected-project:first-child {
  grid-area: span 39/1/auto/span 7
}

.selected-project:nth-child(2) {
  grid-area: span 25/8/auto/-1
}

.selected-project:nth-child(3) {
  grid-area: span 30/8/auto/-1
}

.selected-project:nth-child(4) {
  grid-area: span 27/1/auto/span 4
}

.selected-project:nth-child(5) {
  grid-area: span 31/5/auto/-1
}

.selected-project:nth-child(6) {
  grid-area: span 29/1/auto/span 5
}

.selected-project:nth-child(7) {
  grid-area: span 28/6/auto/-1
}

.project-gallery-item:first-child {
  grid-area: span 40/1/auto/span 7
}

.project-gallery-item:nth-child(2) {
  grid-area: span 25/8/auto/-1
}

.project-gallery-item:nth-child(3) {
  grid-area: span 31/8/auto/-1
}

.project-gallery-item:nth-child(4) {
  grid-area: span 27/1/auto/span 4
}

.project-gallery-item:nth-child(5) {
  grid-area: span 30/5/auto/-1
}

.project-gallery-item:nth-child(6) {
  grid-area: span 28/1/auto/span 5
}

.project-gallery-item:nth-child(7) {
  grid-area: span 32/6/auto/-1
}

.project-gallery-item:nth-child(8) {
  grid-area: span 25/1/auto/span 4
}

.project-gallery-item:nth-child(9) {
  grid-area: span 31/5/auto/-1
}

.project-gallery-item:nth-child(10) {
  grid-area: span 30/1/auto/span 6
}

.project-gallery-item:nth-child(11) {
  grid-area: span 26/7/auto/-1
}

.project-gallery-item:nth-child(12) {
  grid-area: span 34/2/auto/span 8
}

.project-gallery-item figcaption {
  color: var(--color-text-secondary);
  font-size: var(--type-meta);
  gap: 4px;
  display: grid
}

.project-gallery-item figcaption span:first-child {
  color: var(--color-accent-text);
  font-family: var(--font-ui);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600
}

.project-gallery-item figcaption span:last-child {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  letter-spacing: -.025em;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  font-weight: 500
}

@media (min-width:541px) and (max-width:800px) {

  .selected-project-list,
  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 4px;
    gap: 12px
  }

  .selected-project:nth-child(n),
  .project-gallery-item:nth-child(n) {
    grid-area: span 38;
    display: grid
  }

  .selected-project:nth-child(2),
  .selected-project:nth-child(5),
  .project-gallery-item:nth-child(2n) {
    grid-row: span 28
  }

  .selected-project-copy,
  .project-gallery-item figcaption {
    min-height: 43px;
    margin-top: 10px
  }
}

@media (max-width:540px) {

  .selected-project-list,
  .project-gallery,
  .selected-project,
  .project-gallery-item {
    display: block
  }

  .selected-project+.selected-project,
  .project-gallery-item+.project-gallery-item {
    margin-top: 3rem
  }

  .selected-project-image,
  .project-gallery-image {
    height: 56vh !important;
    min-height: 320px !important;
    max-height: 520px !important
  }

  .selected-project-copy,
  .project-gallery-item figcaption {
    min-height: 0;
    margin-top: 11px
  }

  .project-gallery-item figcaption {
    display: grid
  }
}

@media (prefers-reduced-motion:reduce) {

  .selected-project-image img,
  .project-gallery-image img {
    transition: none !important
  }
}

.service-route {
  isolation: isolate;
  padding: clamp(7rem, 11vw, 11rem) var(--page-gutter);
  background: var(--color-surface-raised);
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: clamp(4rem, 9vw, 10rem);
  display: grid;
  position: relative;
  overflow: hidden
}

.service-route>.precision-grid {
  z-index: 0
}

.service-route>:not(.precision-grid) {
  z-index: 1;
  position: relative
}

.service-route-copy h2 {
  max-width: 760px;
  font-size: var(--type-section);
  margin-top: 26px
}

.service-route-copy>p:not(.eyebrow) {
  max-width: 450px;
  color: var(--color-text-secondary);
  margin-top: 30px;
  line-height: 1.6
}

.service-route-copy .button-secondary {
  width: max-content;
  margin-top: 32px
}

.service-route-index {
  border-top: 1px solid var(--color-text-primary);
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none
}

.service-route-index li {
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 42px minmax(0, 1fr) 90px;
  align-items: center;
  min-height: 82px;
  display: grid;
  position: relative
}

.service-route-index span {
  color: var(--color-accent-text);
  letter-spacing: .08em;
  font-size: 10px;
  font-weight: 600
}

.service-route-index strong {
  font-family: var(--font-display);
  letter-spacing: -.035em;
  font-size: clamp(1.45rem, 2.3vw, 2.6rem);
  font-weight: 500
}

.service-route-index i {
  background: var(--color-border);
  height: 1px;
  position: relative
}

.service-route-index i:before {
  background: var(--color-text-primary);
  content: "";
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: -3px;
  left: 0
}

.service-route-index li:first-child i {
  background: var(--color-accent);
  height: 2px
}

.service-route-index li:first-child i:before {
  background: var(--color-accent)
}

@media (max-width:800px) {
  .service-route {
    padding: 6rem 7vw;
    display: block
  }

  .service-route-copy h2 {
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .service-route-index {
    margin-top: 4rem
  }

  .service-route-index li {
    grid-template-columns: 34px minmax(0, 1fr) 54px;
    min-height: 68px
  }

  .service-route-index strong {
    font-size: clamp(1.35rem, 6vw, 1.85rem)
  }
}

footer {
  padding: clamp(3.25rem, 5vw, 5rem) var(--page-gutter) 1.75rem;
  background: var(--aaw-graphite-deep);
  color: #b6bfbb;
  grid-template-columns: 1.1fr .65fr .9fr 1.2fr;
  gap: 2.5rem 4vw
}

.footer-brand {
  grid-area: 1/1;
  gap: 18px
}

.footer-brand img {
  width: 112px;
  height: auto
}

.footer-brand p {
  max-width: 190px;
  font-size: var(--type-meta)
}

.footer-links {
  grid-area: 1/2;
  gap: 7px
}

.footer-contact {
  grid-area: 1/3;
  gap: 7px
}

.footer-visit {
  flex-direction: column;
  grid-area: 1/4;
  align-items: flex-start;
  gap: 6px;
  display: flex
}

.footer-label {
  color: var(--aaw-blue);
  letter-spacing: .11em;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600
}

.footer-links a,
.footer-contact a {
  color: #e7ebe8;
  min-height: 24px;
  font-size: var(--type-meta)
}

.footer-hours {
  color: #aeb7b3;
  gap: 3px;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.4;
  display: grid
}

.footer-visit a {
  color: #e7ebe8;
  min-height: 32px;
  font-size: var(--type-meta);
  grid-template-columns: 16px minmax(0, 1fr) 14px;
  align-items: start;
  gap: 9px;
  line-height: 1.45;
  display: grid
}

.footer-visit a svg {
  width: 16px;
  height: 16px;
  stroke: var(--aaw-blue);
  stroke-width: 1.75px;
  margin-top: 2px
}

.footer-visit a svg:last-child {
  stroke: #e7ebe8;
  width: 14px;
  height: 14px
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-visit a:hover {
  color: var(--aaw-blue)
}

.footer-legal {
  color: #89938e;
  grid-column: 1/-1;
  gap: 16px;
  margin-top: .2rem;
  padding-top: 18px;
  font-size: 10px
}

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

.footer-legal a svg {
  width: 14px;
  height: 14px;
  stroke: var(--aaw-blue);
  stroke-width: 1.75px
}

@media (max-width:800px) {
  footer {
    flex-direction: column;
    gap: 2.15rem;
    padding: 3.5rem 7vw 1.5rem;
    display: flex
  }

  .footer-brand {
    order: 1
  }

  .footer-contact {
    order: 2
  }

  .footer-visit {
    order: 3
  }

  .footer-links {
    order: 4
  }

  .footer-legal {
    order: 5;
    margin-top: 0
  }

  .footer-contact,
  .footer-visit,
  .footer-links {
    width: 100%
  }

  .footer-contact a,
  .footer-links a {
    min-height: 32px
  }

  .footer-visit a {
    align-items: center;
    min-height: 44px
  }

  .footer-visit a svg {
    margin-top: 0
  }

  .footer-legal a {
    width: max-content;
    margin: 0
  }
}

@media (min-width:801px) {
  .nav .nav-brand img {
    width: 98px !important;
    height: auto !important
  }
}

@media (max-width:800px) {
  .nav .nav-brand img {
    width: 92px !important;
    height: auto !important
  }
}

.catalog-intro {
  padding-top: clamp(4rem, 6vw, 5.5rem)
}

.capability>.precision-grid .precision-grid__line--baseline,
.capability>.precision-grid .precision-grid__scan,
.capability>.precision-grid .precision-grid__point {
  display: none
}

.capability-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 34px 0 30px;
  display: grid;
  border: 0 !important
}

.capability-principles>div {
  background: #ffffff09;
  border-radius: 3px;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  display: flex;
  border: 1px solid #ffffff24 !important;
  padding: 14px !important
}

.capability-principles svg {
  width: 19px;
  height: 19px;
  stroke: var(--aaw-blue);
  stroke-width: 1.7px;
  flex: none
}

.capability-principles strong {
  font-size: 12px;
  line-height: 1.25
}

.capability .button-primary {
  margin-top: 0
}

.quote {
  text-align: center;
  position: relative;
  overflow: hidden
}

.quote-mark {
  z-index: 0;
  color: #2cb9e51f;
  font-family: var(--font-display);
  font-size: clamp(15rem, 28vw, 30rem);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%)
}

.quote>:not(.quote-mark) {
  z-index: 1;
  position: relative
}

.quote blockquote {
  place-items: center;
  min-height: 3.3em;
  transition: opacity .3s, transform .3s;
  display: grid
}

.quote-pagination {
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  display: flex
}

.quote-pagination button {
  background: var(--color-border);
  cursor: pointer;
  border: 0;
  width: 28px;
  height: 3px;
  padding: 0;
  transition: background-color .2s, transform .2s
}

.quote-pagination button.is-active {
  background: var(--color-action);
  transform: scaleX(1.18)
}

.related-products-carousel {
  margin-top: clamp(3.5rem, 6vw, 6rem);
  position: relative
}

.related-products-controls {
  z-index: 1;
  gap: 8px;
  display: flex;
  position: absolute;
  top: -56px;
  right: 0
}

.related-products-controls button {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  width: 38px;
  height: 38px;
  color: var(--color-text-primary);
  cursor: pointer;
  border-radius: 50%;
  place-items: center;
  transition: background-color .2s, color .2s;
  display: inline-grid
}

.related-products-controls button:hover {
  background: var(--color-action);
  color: #fff
}

.related-products-controls svg {
  stroke-width: 1.75px;
  width: 17px;
  height: 17px
}

.related-products .related-products-grid {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 20px;
  margin-top: 0;
  display: flex;
  overflow-x: auto
}

.related-products .related-products-grid::-webkit-scrollbar {
  display: none
}

.related-products .related-products-grid>a {
  scroll-snap-align: start;
  flex: 0 0 calc(33.3333% - 13.3333px)
}

#specifications {
  scroll-margin-top: 92px
}

.product-detail-actions .tertiary-action {
  border-bottom: 1px solid;
  align-items: center;
  min-height: 52px;
  padding: 0;
  display: inline-flex
}

.product-information-grid {
  align-items: start
}

@media (max-width:800px) {
  .hero-actions {
    flex-direction: row !important;
    gap: 9px !important
  }

  .hero-actions .button,
  .hero-actions .hero-explore {
    letter-spacing: 0;
    justify-content: center;
    padding-inline: 10px;
    font-size: 10px;
    display: inline-flex;
    width: calc(50% - 4.5px) !important;
    min-width: 0 !important
  }

  .hero-actions .button svg,
  .hero-actions .hero-explore svg {
    width: 15px;
    height: 15px
  }

  .product-navigator-preview {
    display: none !important
  }

  .product-navigator-item>a {
    position: relative;
    justify-content: flex-start !important
  }

  .product-navigator-item>a:after {
    content: "+";
    color: var(--color-action);
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    transition: transform .3s;
    position: absolute;
    right: 0
  }

  .product-navigator-item.is-active>a:after {
    transform: rotate(45deg)
  }

  .product-navigator-item.is-active>a {
    background: 0 0 !important;
    padding-left: 0 !important
  }

  .product-navigator-mobile-panel {
    opacity: 0;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s, opacity .25s;
    display: grid;
    overflow: hidden
  }

  .product-navigator-mobile-panel-inner {
    visibility: hidden;
    min-height: 0
  }

  .product-navigator-item.is-active .product-navigator-mobile-panel {
    opacity: 1;
    grid-template-rows: 1fr
  }

  .product-navigator-item.is-active .product-navigator-mobile-panel-inner {
    visibility: visible
  }

  .product-navigator-mobile-image {
    height: 54vw;
    min-height: 210px;
    max-height: 330px;
    position: relative;
    overflow: hidden
  }

  .product-navigator-mobile-image img {
    object-fit: cover
  }

  .product-navigator-mobile-panel p {
    color: var(--color-text-secondary);
    margin: 16px 0 0;
    line-height: 1.52
  }

  .product-navigator-mobile-panel .product-explore {
    justify-content: center;
    width: 100%;
    margin: 18px 0 26px;
    display: inline-flex
  }

  .capability-principles {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 30px 0 28px
  }

  .capability-principles>div {
    min-height: 56px
  }

  .capability-principles strong {
    font-size: 13px
  }

  .quote {
    padding: 5.25rem 7vw
  }

  .quote-mark {
    font-size: 14rem;
    top: .03em
  }

  .quote blockquote {
    min-height: 4.2em;
    font-size: clamp(1.85rem, 8.9vw, 3rem)
  }

  .nav.menu-open {
    background: #f3f4f1fc !important;
    border: 0 !important;
    border-radius: 11px !important;
    grid-template-rows: 60px minmax(0, 1fr) !important;
    width: auto !important;
    height: calc(100dvh - 24px) !important;
    min-height: 0 !important;
    padding: 0 14px 18px 16px !important;
    inset: 12px 12px auto !important
  }

  .nav.menu-open .nav-brand,
  .nav.menu-open .menu {
    align-self: center
  }

  .nav.menu-open .nav-main {
    background: 0 0 !important;
    padding: 16px 0 8px !important
  }

  .nav-main,
  .nav nav,
  .nav .nav-main.open {
    background: #f3f4f1fc !important
  }

  .nav.menu-open .nav-main.open {
    background: 0 0 !important
  }

  .nav-mobile-utilities {
    width: 100%;
    align-items: stretch !important
  }

  .nav-mobile-utilities .nav-phone {
    border-bottom: 1px solid var(--color-border);
    align-items: center;
    gap: 9px;
    padding: 13px 0;
    font-size: 14px;
    display: flex
  }

  .nav-mobile-utilities .nav-phone span {
    color: var(--color-text-secondary);
    font-weight: 500
  }

  .nav-mobile-utilities .nav-phone b {
    font-size: 15px
  }

  .nav-mobile-utilities .nav-cta {
    justify-content: center;
    margin-top: 2px;
    width: 100% !important;
    display: flex !important
  }

  .nav-main .nav-products.is-open .nav-products-trigger {
    border-bottom: 0
  }

  .nav-main .product-menu {
    padding: 0 !important
  }

  .nav-main .product-menu-groups a {
    min-height: 58px;
    padding: 9px 0
  }

  .nav-main .product-menu-groups a:last-child {
    border-bottom: 1px solid var(--color-border)
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.25rem;
    padding: 3.5rem 7vw 1.5rem;
    display: grid !important
  }

  .footer-brand {
    grid-column: 1/-1;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    display: grid
  }

  .footer-brand p {
    max-width: 220px
  }

  .footer-contact {
    grid-column: 1
  }

  .footer-visit {
    grid-column: 2
  }

  .footer-links {
    border-top: 1px solid #ffffff1f;
    grid-column: 1/-1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 15px;
    display: grid
  }

  .footer-links .footer-label {
    grid-column: 1/-1
  }

  .footer-links a {
    min-height: 30px
  }

  .footer-legal {
    grid-column: 1/-1;
    grid-template-columns: 1fr auto;
    gap: 7px;
    margin: 0;
    padding-top: 15px;
    display: grid
  }

  .footer-legal span:nth-child(2) {
    grid-column: 1
  }

  .footer-legal a {
    grid-area: 1/2/span 2;
    align-self: center;
    margin: 0 !important
  }

  .footer-contact a {
    min-height: 30px
  }

  .footer-visit a {
    min-height: 38px
  }

  .footer-visit a span {
    font-size: 11px
  }

  .product-detail-actions {
    align-items: stretch;
    gap: 12px
  }

  .product-detail-actions .button-primary,
  .product-detail-actions .tertiary-action {
    justify-content: center;
    align-items: center;
    min-height: 48px;
    display: inline-flex
  }

  .product-detail-actions .tertiary-action {
    border-bottom: 1px solid;
    padding: 0
  }

  .product-information-grid {
    border-top: 1px solid var(--color-border);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0
  }

  .product-information-grid>div {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 13px 18px
  }

  .product-information-grid>div:nth-child(2n) {
    border-right: 0
  }

  .product-information-grid p {
    min-height: 2.4em
  }

  .related-products-carousel {
    margin-top: 3.6rem
  }

  .related-products-controls {
    top: -48px
  }

  .related-products .related-products-grid {
    gap: 14px;
    margin-inline: -7vw;
    padding-inline: 7vw
  }

  .related-products .related-products-grid>a {
    flex-basis: 82vw
  }

  .related-product-image {
    height: 48vh;
    min-height: 300px
  }

  .related-products-grid p {
    font-size: clamp(1.8rem, 8vw, 2.8rem)
  }
}

@media (max-width:420px) {
  .footer-brand {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .footer-visit,
  .footer-contact {
    grid-column: 1/-1
  }

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

  .footer-legal a {
    grid-area: auto/1;
    justify-self: start;
    margin-top: 8px !important
  }
}

@media (max-width:800px) {
  footer {
    padding: 3.4rem 7vw 1.6rem !important;
    display: block !important
  }

  footer>.footer-brand,
  footer>.footer-contact,
  footer>.footer-visit,
  footer>.footer-links,
  footer>.footer-legal {
    width: 100%;
    grid-area: auto !important;
    margin: 0 !important;
    display: flex !important
  }

  footer>.footer-brand {
    border-bottom: 1px solid #ffffff1f;
    align-items: center;
    gap: 18px;
    padding-bottom: 2rem
  }

  footer>.footer-brand img {
    flex: 0 0 112px
  }

  .footer-brand p {
    max-width: 210px
  }

  footer>.footer-contact,
  footer>.footer-visit {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding-top: 1.8rem
  }

  footer>.footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 1.8rem;
    display: grid !important
  }

  footer>.footer-links .footer-label {
    grid-column: 1/-1
  }

  .footer-links a {
    min-height: 34px
  }

  footer>.footer-legal {
    border-top: 1px solid #ffffff1f;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding-top: 1.2rem;
    margin-top: 1.8rem !important;
    display: grid !important
  }

  footer>.footer-legal span:nth-child(2) {
    grid-column: 1
  }

  .footer-legal a {
    grid-area: 1/2/span 2;
    align-self: center;
    margin: 0 !important
  }

  .nav.menu-open .nav-main>.nav-products {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0
  }

  .nav.menu-open .nav-main>.nav-products.is-open {
    padding-bottom: 12px
  }

  .nav.menu-open .nav-main>.nav-products.is-open .product-menu-groups a:last-child {
    border-bottom: 0
  }

  .nav.menu-open .nav-main>a {
    line-height: 1.08;
    border-bottom: 1px solid var(--color-border) !important;
    min-height: 0 !important;
    padding: 17px 0 !important;
    display: block !important
  }

  .nav.menu-open .nav-main>a:last-of-type {
    border-bottom: 0 !important
  }

  .product-detail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px !important;
    display: grid !important
  }

  .product-detail-actions .button-primary,
  .product-detail-actions .tertiary-action {
    justify-content: center;
    width: 100%;
    border: 1px solid var(--color-action) !important;
    min-height: 52px !important;
    padding: 0 10px !important
  }

  .product-detail-actions .tertiary-action {
    color: var(--color-action);
    background: 0 0
  }

  .related-products>div:first-child {
    text-align: left !important;
    display: block !important
  }

  .related-products>div:first-child .eyebrow {
    margin-bottom: 18px
  }

  .related-products h2 {
    text-align: left !important;
    margin-top: 0 !important
  }

  .related-products .related-products-grid>a,
  .related-products .related-products-grid>a+a {
    flex-direction: column;
    height: 540px;
    min-height: 540px;
    display: flex;
    margin-top: 0 !important
  }

  .related-product-image {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important
  }

  .related-products-grid p {
    min-height: 2.15em;
    margin-bottom: 0
  }

  .related-products-grid span {
    margin-top: auto;
    padding-top: 12px
  }

  .pre-footer-actions {
    align-items: center !important
  }

  .pre-footer .pre-footer-phone {
    border-bottom: 0;
    justify-content: center;
    width: 100%;
    display: flex
  }

  .pre-footer-phone span {
    color: #f3f4f1bd;
    font-weight: 500
  }

  .pre-footer-phone b {
    font-size: var(--type-meta)
  }
}

@media (min-width:801px) {
  .nav-secondary-links {
    display: contents
  }

  .nav-secondary-links>a {
    white-space: nowrap;
    color: inherit
  }

  .nav-secondary-links>a:hover {
    color: var(--color-accent-text)
  }
}

@media (max-width:800px) {
  footer>.footer-brand {
    flex-direction: row !important;
    align-items: center !important
  }

  footer>.footer-brand img {
    object-fit: contain !important;
    flex: none !important;
    width: 112px !important;
    height: auto !important;
    max-height: 45px !important;
    display: block !important
  }

  .related-products .related-products-grid {
    width: 100%;
    margin-inline: 0 !important;
    padding-inline: 0 !important
  }

  .related-products .related-products-grid>a {
    flex-basis: 100%
  }

  .nav.menu-open {
    -webkit-backdrop-filter: none !important;
    background: #f8f9f6 !important;
    overflow: visible !important;
    box-shadow: 0 0 0 100vmax #0f1415ad, 0 18px 48px #1318193d !important
  }

  .nav.menu-open:before {
    content: none !important;
    display: none !important
  }

  .nav.menu-open .nav-main {
    -webkit-backdrop-filter: none !important;
    background: 0 0 !important;
    padding: 16px 10px 18px 0 !important;
    overflow-y: auto !important
  }

  .nav-main>.nav-products,
  .nav-main>.nav-products.is-open {
    border-bottom: 0 !important;
    padding-bottom: 0 !important
  }

  .nav.menu-open .nav-products-trigger,
  .nav.menu-open .nav-secondary-links>a {
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    display: flex;
    border: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    padding: 10px 0 !important
  }

  .nav.menu-open .nav-products-trigger>a,
  .nav.menu-open .nav-secondary-links>a {
    font-family: var(--font-display);
    letter-spacing: -.045em;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05
  }

  .nav.menu-open .nav-products-trigger button {
    flex: 0 0 44px;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    display: inline-flex;
    padding: 0 !important
  }

  .nav-main .product-menu {
    border: 0 !important;
    margin: 0 !important
  }

  .nav-main .product-menu-groups {
    gap: 2px !important
  }

  .nav-main .product-menu-groups a,
  .nav-main .product-menu-groups a:last-child {
    border: 0 !important;
    min-height: 56px !important;
    padding: 4px 0 !important
  }

  .nav-secondary-links {
    border-top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid
  }

  .nav-secondary-links>a,
  .nav-secondary-links>a:last-child {
    font-family: var(--font-display);
    letter-spacing: -.045em;
    align-items: center;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
    font-weight: 500;
    line-height: 1.05;
    display: flex;
    border: 0 !important;
    min-height: 64px !important;
    padding: 10px 0 !important
  }

  .nav-mobile-utilities {
    margin-top: 18px !important
  }

  .nav-mobile-phone-idle {
    color: var(--color-text-primary);
    font-family: var(--font-ui);
    white-space: nowrap;
    justify-self: end;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex
  }

  .nav-mobile-phone-idle svg {
    width: 15px;
    height: 15px;
    stroke: var(--color-accent-text);
    stroke-width: 1.75px
  }

  .nav.menu-open {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    column-gap: 12px !important
  }

  .nav.menu-open .nav-mobile-phone-idle {
    grid-area: 1/2;
    display: inline-flex
  }

  .nav.menu-open .menu {
    grid-area: 1/3
  }

  .product-detail-actions {
    align-items: stretch
  }

  .product-detail-actions .button-primary,
  .product-detail-actions .button-secondary {
    text-align: center;
    border: 1px solid var(--color-action) !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    display: inline-flex !important
  }

  .product-detail-actions .button-secondary {
    color: var(--color-action);
    background: 0 0
  }

  .product-detail-actions .button-secondary:hover {
    background: var(--color-surface-soft);
    color: var(--color-text-primary)
  }

  .product-detail-actions .button-secondary svg {
    stroke: currentColor;
    width: 16px;
    height: 16px;
    margin-left: 8px
  }
}

@media (min-width:801px) {
  .nav .nav-mobile-phone-idle {
    display: none !important
  }
}

@media (max-width:800px) {
  .nav:not(.menu-open) {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 12px
  }
}

@media (max-width:390px) {
  .nav:not(.menu-open) {
    column-gap: 8px
  }

  .nav:not(.menu-open) .nav-brand img {
    width: 100px
  }

  .nav-mobile-phone-idle {
    gap: 5px;
    font-size: 10px
  }

  .nav-mobile-phone-idle svg {
    width: 14px;
    height: 14px
  }
}

.eyebrow {
  text-transform: uppercase
}

.editorial-copy .button-secondary {
  margin-top: 34px
}

@media (max-width:800px) {
  .editorial-copy .button-secondary {
    margin-top: 26px
  }
}


/* PRODUCT DETAIL STYLES (from live site) */
.product-detail {
  background: var(--paper);
  padding-top: 104px
}

.product-breadcrumb {
  border-bottom: 1px solid var(--line);
  font-family: var(--font-ui);
  font-size: var(--type-meta);
  color: #777;
  padding: 22px 8vw
}

.product-breadcrumb a {
  color: #1597c0
}

.product-breadcrumb span {
  color: #aaa;
  margin: 0 10px
}

.product-editorial-hero {
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  min-height: 760px;
  display: grid
}

.product-editorial-hero-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10vw 7vw 9vw 8vw;
  display: flex
}

.product-editorial-hero-copy h1 {
  margin: 28px 0;
  font-size: clamp(4.4rem, 5vw, 8rem)
}

.product-positioning {
  font-family: var(--font-display);
  letter-spacing: -.05em;
  color: #666;
  max-width: 470px;
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  line-height: 1.02
}

.product-editorial-hero-image {
  min-height: 760px;
  position: relative
}

.product-editorial-hero-image img {
  object-fit: cover
}

@media (prefers-reduced-motion:no-preference) {
  .product-editorial-hero-copy {
    visibility: hidden
  }
}

@media (prefers-reduced-motion:reduce) {
  .product-editorial-hero-copy {
    visibility: visible !important
  }
}

.product-detail-title-mask {
  padding-bottom: .09em;
  overflow: hidden
}

.product-information {
  border-bottom: 1px solid var(--line);
  background: #e6e5e0;
  padding: clamp(3rem, 5vw, 5.5rem) 8vw
}

.product-information-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px 4vw;
  margin-top: 29px;
  display: grid
}

.product-information-grid>div {
  border-top: 1px solid #aaa;
  padding-top: 16px
}

.product-information-grid span {
  color: #1597c0;
  font-size: var(--type-meta);
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block
}

.product-information-grid p {
  max-width: 300px;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -.035em;
  margin-top: 12px;
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  font-weight: 500;
  line-height: 1.08
}

.product-story {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  align-items: start;
  gap: 10vw;
  padding: clamp(7rem, 13vw, 14rem) 8vw;
  display: grid
}

.product-story h2 {
  font-size: var(--type-section);
  max-width: 780px;
  margin-top: 30px
}

.product-story-copy {
  max-width: 470px;
  padding-top: 6px
}

.product-story-copy p {
  color: #5c5f5d;
  line-height: 1.6
}

.product-story-copy p+p {
  margin-top: 21px
}

.product-editorial-images {
  gap: 18px;
  padding: 0 8vw clamp(7rem, 12vw, 13rem);
  display: grid
}

.product-editorial-images.count-1 {
  grid-template-columns: 1fr
}

.product-editorial-images.count-2 {
  grid-template-columns: 1.15fr .85fr;
  align-items: end
}

.product-editorial-image {
  height: clamp(370px, 48vw, 700px);
  position: relative;
  overflow: hidden
}

.product-editorial-images.count-2 .product-editorial-image:last-child {
  height: clamp(300px, 35vw, 520px)
}

.product-editorial-image img {
  object-fit: cover
}

.product-characteristics {
  background: #e6e5e0;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr);
  gap: 10vw;
  padding: clamp(7rem, 12vw, 13rem) 8vw;
  display: grid
}

.product-characteristics-intro>p:last-child {
  color: #666;
  max-width: 250px;
  margin-top: 30px;
  line-height: 1.5
}

.product-characteristics-list article {
  border-top: 1px solid #aaa;
  padding: 27px 0 34px
}

.product-characteristics-list h3 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: .98
}

.product-characteristics-list article p {
  color: #5c5f5d;
  max-width: 650px;
  margin-top: 18px;
  line-height: 1.58
}

.product-characteristics-list ul {
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  display: grid
}

.product-characteristics-list li {
  color: #555;
  font-size: var(--type-meta);
  border-bottom: 1px solid #c8c7c2;
  padding-bottom: 10px
}

.related-products {
  padding: clamp(7rem, 12vw, 13rem) 8vw
}

.related-products>div:first-child {
  justify-content: space-between;
  align-items: end;
  display: flex
}

.related-products h2 {
  font-size: var(--type-section);
  margin-top: 30px
}

.related-products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(4rem, 7vw, 7rem);
  display: grid
}

.related-products-grid a {
  display: block
}

.related-product-image {
  height: clamp(260px, 30vw, 440px);
  position: relative;
  overflow: hidden
}

.related-product-image img {
  object-fit: cover;
  transition: transform .5s
}

.related-products-grid a:hover img {
  transform: scale(1.035)
}

.related-products-grid p {
  font-family: var(--font-display);
  letter-spacing: -.05em;
  margin-top: 18px;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem)
}

.related-products-grid span {
  color: #1597c0;
  font-size: var(--type-meta);
  margin-top: 12px;
  font-weight: 600;
  display: block
}

@media (prefers-reduced-motion:reduce) {

  .product-detail [data-detail-hero-image],
  .product-detail [data-detail-editorial-image],
  .product-detail [data-detail-related-image] {
    clip-path: none !important
  }

  .product-detail [data-detail-hero-image] img,
  .product-detail [data-detail-editorial-image] img,
  .product-detail [data-detail-related-image] img,
  .product-detail [data-detail-hero-copy],
  .product-detail [data-detail-information-label],
  .product-detail [data-detail-information-row],
  .product-detail [data-detail-story-label],
  .product-detail [data-detail-story-title],
  .product-detail [data-detail-story-copy],
  .product-detail [data-detail-characteristic-number],
  .product-detail [data-detail-characteristic-content],
  .product-detail [data-detail-related-item] p,
  .product-detail [data-detail-related-item] span {
    opacity: 1 !important;
    transform: none !important
  }
}

@media (max-width:800px) {
  .product-detail {
    padding-top: 84px
  }

  .product-breadcrumb {
    padding: 18px 7vw
  }

  .product-editorial-hero {
    flex-direction: column-reverse;
    min-height: 0;
    display: flex
  }

  .product-editorial-hero-image {
    height: 55vh;
    min-height: 55vh
  }

  .product-editorial-hero-copy {
    padding: 5.5rem 7vw 6.5rem
  }

  .product-editorial-hero-copy h1 {
    margin: 23px 0;
    font-size: 15vw
  }

  .product-positioning {
    font-size: clamp(1.55rem, 7vw, 2.5rem)
  }

  .product-information {
    padding: 4.2rem 7vw
  }

  .product-information-grid {
    margin-top: 28px;
    display: block
  }

  .product-information-grid>div+div {
    margin-top: 25px
  }

  .product-story {
    padding: 6.5rem 7vw;
    display: block
  }

  .product-story h2 {
    margin-top: 23px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .product-story-copy {
    padding-top: 3rem
  }

  .product-editorial-images,
  .product-editorial-images.count-2 {
    padding: 0 7vw 6.5rem;
    display: block
  }

  .product-editorial-image,
  .product-editorial-images.count-2 .product-editorial-image:last-child {
    height: 54vh;
    min-height: 340px;
    margin-bottom: 16px
  }

  .product-characteristics {
    padding: 6.5rem 7vw;
    display: block
  }

  .product-characteristics-list {
    margin-top: 4rem
  }

  .product-characteristics-list h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem)
  }

  .product-characteristics-list ul {
    grid-template-columns: 1fr
  }

  .related-products {
    padding: 6.5rem 7vw
  }

  .related-products h2 {
    margin-top: 23px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .related-products-grid {
    margin-top: 4.5rem;
    display: block
  }

  .related-products-grid a+a {
    margin-top: 4rem
  }

  .related-product-image {
    height: 54vh;
    min-height: 340px
  }

  .related-products-grid p {
    font-size: clamp(2.1rem, 10vw, 3.4rem)
  }
}

.product-editorial-hero,
.product-editorial-hero-image {
  min-height: min(70svh, 720px)
}

.product-information {
  isolation: isolate;
  position: relative
}

.product-information>.precision-grid {
  z-index: 0
}

.product-information>:not(.precision-grid) {
  z-index: 1;
  position: relative
}

@media (max-width:800px) {

  .product-editorial-hero,
  .product-editorial-hero-image {
    min-height: 0
  }

  .product-editorial-hero-image {
    height: 55svh
  }
}

.product-breadcrumb {
  color: var(--color-text-subtle)
}

.product-breadcrumb a,
.product-information-grid span,
.related-products-grid span {
  color: var(--color-action)
}

.product-positioning,
.product-story-copy p,
.product-characteristics-intro>p:last-child,
.product-characteristics-list article p {
  color: var(--color-text-secondary)
}

.product-information,
.product-characteristics {
  background: var(--color-surface-soft)
}

.product-information-grid>div,
.product-characteristics-list article {
  border-color: var(--color-border)
}

.product-information-grid p {
  letter-spacing: -.025em
}

.related-products-grid p {
  letter-spacing: -.03em
}

.product-editorial-hero {
  isolation: isolate;
  background: var(--color-surface);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: clamp(620px, 79svh, 820px);
  position: relative
}

.product-editorial-hero>.precision-grid {
  z-index: 0
}

.product-editorial-hero>:not(.precision-grid) {
  z-index: 1;
  position: relative
}

.product-editorial-hero>.precision-grid .precision-grid__line--split {
  left: 41.667%
}

.product-editorial-hero>.precision-grid .precision-grid__point {
  left: calc(41.667% - 4px)
}

.product-editorial-hero-copy {
  padding: clamp(7rem, 12vw, 12rem) clamp(2rem, 5vw, 7rem) clamp(4.5rem, 8vw, 7rem) var(--page-gutter);
  grid-column: 1/span 5
}

.product-editorial-hero-copy h1 {
  letter-spacing: -.04em;
  max-width: 620px;
  margin: 24px 0 21px;
  font-size: clamp(4.6rem, 5vw, 9.3rem);
  line-height: .9
}

.product-detail-measure {
  background: var(--color-action);
  width: clamp(96px, 11vw, 172px);
  height: 2px;
  margin: 0 0 24px;
  display: block
}

.product-positioning {
  letter-spacing: -.035em;
  max-width: 410px;
  color: var(--color-text-secondary);
  font-size: clamp(1.35rem, 2vw, 2.35rem);
  line-height: 1.08
}

.product-detail-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  display: flex
}

.product-detail-actions .tertiary-action {
  font-size: var(--type-meta);
  border-bottom: 1px solid;
  padding-bottom: 5px;
  font-weight: 600
}

.product-editorial-hero-image {
  grid-column: 6/-1;
  align-self: end;
  height: calc(100% - clamp(2rem, 5vw, 5.5rem));
  min-height: 0;
  margin-bottom: clamp(1.25rem, 2.5vw, 3rem);
  overflow: hidden
}

.product-editorial-hero-image img {
  object-position: center;
  will-change: transform
}

.product-information {
  padding: clamp(2.5rem, 4.5vw, 4.5rem) var(--page-gutter);
  background: var(--color-surface-soft);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 0
}

.product-information .precision-grid__line--split {
  left: 50%
}

.product-information .precision-grid__point {
  left: calc(50% - 4px)
}

.product-information-grid {
  border-left: 1px solid var(--color-border);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin: 0
}

.product-information-grid>div {
  border-top: 0;
  border-right: 1px solid var(--color-border);
  min-height: 104px;
  padding: 13px clamp(16px, 2vw, 28px) 18px
}

.product-information-grid span {
  font-family: var(--font-ui);
  letter-spacing: .08em;
  font-weight: 500
}

.product-information-grid p {
  font-family: var(--font-display);
  margin-top: 18px;
  font-size: clamp(1.12rem, 1.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12
}

@media (max-width:800px) {
  .product-editorial-hero {
    background: var(--color-surface);
    flex-direction: column;
    min-height: 0;
    display: flex
  }

  .product-editorial-hero>.precision-grid .precision-grid__line--split {
    display: none
  }

  .product-editorial-hero-copy {
    padding: 7.4rem 7vw 4.8rem;
    display: block
  }

  .product-editorial-hero-copy h1 {
    margin: 20px 0;
    font-size: clamp(3.85rem, 15vw, 6.1rem)
  }

  .product-detail-measure {
    width: 92px;
    margin-bottom: 20px
  }

  .product-positioning {
    font-size: clamp(1.35rem, 6.2vw, 2rem)
  }

  .product-detail-actions {
    margin-top: 30px
  }

  .product-editorial-hero-image {
    align-self: auto;
    width: calc(100% - 14vw);
    height: 52svh;
    min-height: 320px;
    margin: 0 7vw 6.5rem
  }

  .product-information {
    padding: 2rem 7vw
  }

  .product-information-grid {
    margin: 0;
    display: grid
  }

  .product-information-grid>div {
    min-height: 0;
    padding: 15px 16px 20px
  }

  .product-information-grid p {
    margin-top: 13px
  }
}

.product-information {
  padding: clamp(2.2rem, 3.5vw, 3.5rem) var(--page-gutter);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-raised);
  border-bottom: 0
}

.product-information-grid {
  border: 0;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 4.5rem);
  margin: 0;
  display: flex
}

.product-information-grid>div {
  border: 0;
  min-width: min(100%, 180px);
  min-height: 0;
  padding: 0
}

.product-information-grid span {
  color: var(--color-accent-text);
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 600
}

.product-information-grid p {
  margin-top: 8px;
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
  line-height: 1.2
}

.product-characteristics {
  background: var(--color-surface-soft)
}

.product-characteristics-list article {
  padding: 25px 0 30px
}

.product-characteristics-list ul {
  gap: 8px 24px
}

.product-detail-actions {
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  display: flex
}

.product-detail-actions .button-primary,
.product-detail-actions .button-secondary {
  min-height: 52px;
  margin: 0
}

.product-characteristics-list li {
  color: var(--color-text-secondary);
  border: 0;
  padding: 0;
  line-height: 1.45
}

.product-characteristics-list li:before {
  content: "—";
  color: var(--color-accent-text);
  margin-right: 8px
}

@media (max-width:800px) {
  .product-information {
    padding: 2.1rem 7vw
  }

  .product-information-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    display: grid
  }

  .product-information-grid>div {
    min-width: 0;
    padding: 0
  }

  .product-information-grid p {
    margin-top: 7px;
    font-size: 1rem
  }

  .product-characteristics-list ul {
    gap: 9px
  }

  .product-characteristics-list li {
    font-size: var(--type-meta)
  }
}


/* Ensure all product detail elements are fully visible and properly spaced */
.product-editorial-hero-copy {
  visibility: visible !important;
  opacity: 1 !important;
}

.product-detail [data-detail-hero-image],
.product-detail [data-detail-editorial-image],
.product-detail [data-detail-related-image] {
  clip-path: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.product-detail [data-detail-hero-image] img,
.product-detail [data-detail-editorial-image] img,
.product-detail [data-detail-related-image] img,
.product-detail [data-detail-hero-copy],
.product-detail [data-detail-information-label],
.product-detail [data-detail-information-row],
.product-detail [data-detail-story-label],
.product-detail [data-detail-story-title],
.product-detail [data-detail-story-copy],
.product-detail [data-detail-characteristic-number],
.product-detail [data-detail-characteristic-content],
.product-detail [data-detail-related-item] p,
.product-detail [data-detail-related-item] span {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Fix product characteristics list alignment */
.product-characteristics-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.product-characteristics-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border, #e2e8f0);
}

/* ==========================================================================
   PRODUCT DETAILS: KEY FACTS / INFORMATION SECTION (MOBILE VERTICAL STACK)
   Applied to: div:nth-of-type(1) > main:nth-of-type(1) > section:nth-of-type(2)
   ========================================================================== */
@media (max-width: 800px) {

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2),
  .product-detail>section:nth-of-type(2),
  .product-information {
    padding: clamp(2rem, 6vw, 3rem) var(--page-gutter, 7vw) !important;
  }

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2) .product-information-grid,
  .product-detail>section:nth-of-type(2) .product-information-grid,
  .product-information .product-information-grid,
  .product-information-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2) .product-information-grid>div,
  .product-detail>section:nth-of-type(2) .product-information-grid>div,
  .product-information .product-information-grid>div,
  .product-information-grid>div,
  [data-detail-information-row="true"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 16px 0 !important;
    border: none !important;
    border-bottom: 1px solid var(--color-border, #d8d7d0) !important;
  }

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2) .product-information-grid>div:last-child,
  .product-detail>section:nth-of-type(2) .product-information-grid>div:last-child,
  .product-information .product-information-grid>div:last-child,
  .product-information-grid>div:last-child,
  [data-detail-information-row="true"]:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2) .product-information-grid span,
  .product-detail>section:nth-of-type(2) .product-information-grid span,
  .product-information .product-information-grid span,
  .product-information-grid span {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--color-accent-text, #1597c0) !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 6px !important;
  }

  div:nth-of-type(1)>main:nth-of-type(1)>section:nth-of-type(2) .product-information-grid p,
  .product-detail>section:nth-of-type(2) .product-information-grid p,
  .product-information .product-information-grid p,
  .product-information-grid p {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem) !important;
    line-height: 1.25 !important;
    margin-top: 0 !important;
    color: var(--color-text-primary, #111827) !important;
    font-weight: 500 !important;
    font-family: var(--font-display) !important;
    letter-spacing: -0.025em !important;
  }
}

/* SERVICE AREAS STYLES (from live site) */
.service-areas-page {
  background: var(--color-bg-primary)
}

.service-areas-hero {
  isolation: isolate;
  min-height: min(72svh, 760px);
  padding: clamp(10rem, 15vw, 15rem) var(--page-gutter) clamp(5rem, 8vw, 8rem);
  background: var(--color-surface-raised);
  align-items: end;
  display: grid;
  position: relative;
  overflow: hidden
}

.service-areas-hero>.precision-grid {
  z-index: 0
}

.service-areas-hero>div {
  z-index: 1;
  position: relative
}

.service-areas-hero h1 {
  max-width: 980px;
  margin-top: 28px;
  font-size: clamp(4.5rem, 8vw, 9rem)
}

.service-areas-hero>div>p:not(.eyebrow) {
  max-width: 560px;
  color: var(--color-text-secondary);
  margin-top: 32px;
  line-height: 1.6
}

.service-areas-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  display: flex
}

.service-phone {
  font-size: var(--type-meta);
  align-items: center;
  gap: 9px;
  font-weight: 600;
  display: inline-flex
}

.service-phone svg {
  width: 17px;
  height: 17px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px
}

.coverage-explorer {
  padding: clamp(6rem, 10vw, 10rem) var(--page-gutter)
}

.coverage-explorer>header {
  grid-template-columns: .7fr 1.3fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  display: grid
}

.coverage-explorer h2 {
  font-size: var(--type-section)
}

.coverage-shell {
  border-top: 1px solid var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr);
  display: grid
}

.coverage-list {
  border-right: 1px solid var(--color-border)
}

.coverage-list button {
  border: 0;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  min-height: 82px;
  color: var(--color-text-secondary);
  text-align: left;
  cursor: pointer;
  background: 0 0;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  padding: 16px 24px 16px 0;
  display: grid;
  position: relative
}

.coverage-list button:last-child {
  border-bottom: 0
}

.coverage-list button:before {
  background: var(--color-accent);
  content: "";
  width: 3px;
  transition: transform .22s;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  transform: scaleY(0)
}

.coverage-list button span {
  color: var(--color-accent-text);
  font-size: 10px
}

.coverage-list button strong {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  font-weight: 500
}

.coverage-list button.is-active {
  color: var(--color-text-primary);
  background: #2cb9e50f;
  padding-left: 14px
}

.coverage-list button.is-active:before {
  transform: scaleY(1)
}

.coverage-content {
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  min-height: 620px;
  display: grid
}

.coverage-copy {
  padding: clamp(2rem, 4vw, 4rem)
}

.coverage-copy>p:nth-child(2) {
  max-width: 520px;
  color: var(--color-text-secondary);
  margin-top: 22px;
  line-height: 1.6
}

.coverage-copy details {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-top: 30px
}

.coverage-copy summary {
  font-size: var(--type-meta);
  cursor: pointer;
  padding: 15px 0;
  font-weight: 600
}

.coverage-copy ul {
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
  display: grid
}

.coverage-copy li {
  color: var(--color-text-secondary);
  font-size: var(--type-meta)
}

.coverage-copy li:before {
  color: var(--color-accent-text);
  content: "—";
  margin-right: 7px
}

.coverage-hq {
  border-top: 1px solid var(--color-border);
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  display: flex
}

.coverage-hq svg {
  width: 19px;
  height: 19px;
  stroke: var(--color-accent-text);
  stroke-width: 1.75px;
  flex: none
}

.coverage-hq span {
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 600
}

.coverage-hq p {
  max-width: 270px;
  color: var(--color-text-secondary);
  font-size: var(--type-meta);
  margin-top: 7px
}

.coverage-map {
  background: var(--aaw-graphite);
  min-height: 620px;
  padding: 18px;
  position: relative
}

.coverage-map iframe {
  filter: saturate(.75)contrast(1.02);
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 584px;
  display: block
}

.coverage-map>a {
  color: #f3f4f1;
  background: #2f3232eb;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  position: absolute;
  bottom: 30px;
  right: 30px
}

.coverage-map>a svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  stroke-width: 1.75px
}

.coverage-note {
  max-width: 750px;
  color: var(--color-text-secondary);
  font-size: var(--type-meta);
  margin: 24px 0 0 auto;
  line-height: 1.55
}

@media (max-width:900px) {
  .coverage-shell {
    grid-template-columns: 1fr
  }

  .coverage-list {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    grid-template-columns: repeat(2, 1fr);
    display: grid
  }

  .coverage-list button {
    border-right: 1px solid var(--color-border);
    padding-left: 14px
  }

  .coverage-list button:nth-child(2n) {
    border-right: 0
  }

  .coverage-content {
    grid-template-columns: 1fr
  }

  .coverage-map {
    min-height: 430px
  }

  .coverage-map iframe {
    min-height: 394px
  }
}

@media (max-width:600px) {
  .service-areas-hero {
    min-height: 0;
    padding: 8.5rem 7vw 5.5rem
  }

  .service-areas-hero h1 {
    font-size: clamp(3.8rem, 16vw, 6rem)
  }

  .service-areas-actions {
    flex-direction: column;
    align-items: stretch
  }

  .service-areas-actions .button {
    width: 100%
  }

  .service-phone {
    width: max-content
  }

  .coverage-explorer {
    padding: 5.5rem 7vw
  }

  .coverage-explorer>header {
    display: block
  }

  .coverage-explorer h2 {
    margin-top: 20px;
    font-size: clamp(2.8rem, 11vw, 4.5rem)
  }

  .coverage-list {
    display: block
  }

  .coverage-list button {
    border-right: 0;
    min-height: 64px
  }

  .coverage-list button:last-child {
    border-bottom: 0
  }

  .coverage-content {
    min-height: 0
  }

  .coverage-copy {
    padding: 2rem 0
  }

  .coverage-copy ul {
    grid-template-columns: 1fr
  }

  .coverage-map {
    min-height: 390px;
    margin-inline: -7vw;
    padding: 12px
  }

  .coverage-map iframe {
    min-height: 366px
  }

  .coverage-map>a {
    bottom: 22px;
    right: 22px
  }

  .coverage-note {
    margin-top: 22px
  }
}

@media (prefers-reduced-motion:reduce) {
  .coverage-list button:before {
    transition: none
  }
}


/* CONTACT PAGE STYLES (from live site) */
.contact-intro {
  padding: clamp(10rem, 15vw, 15rem) var(--page-gutter) clamp(5rem, 8vw, 8rem);
  background: var(--color-surface-raised)
}

.contact-intro h1 {
  max-width: 900px;
  margin-top: 28px;
  font-size: clamp(4.5rem, 8vw, 9rem)
}

.contact-intro .contact-lede {
  max-width: 580px;
  color: var(--color-text-secondary);
  font-size: var(--type-body-large);
  margin: 32px 0 0;
  line-height: 1.55
}

.contact-enquiry {
  padding: clamp(6rem, 10vw, 10rem) var(--page-gutter);
  background: var(--color-bg-primary);
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: clamp(4rem, 9vw, 10rem);
  display: grid
}

.contact-form {
  max-width: 760px
}

.contact-form-heading {
  margin-bottom: 48px
}

.contact-form-heading h2 {
  font-size: var(--type-section);
  margin-top: 20px
}

.contact-field {
  margin-top: 28px
}

.contact-field-row {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  display: grid
}

.contact-field label {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  display: flex
}

.contact-field label span {
  color: var(--color-text-subtle);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  border: 1px solid var(--color-border);
  background: var(--color-surface-raised);
  width: 100%;
  color: var(--color-text-primary);
  font: inherit;
  border-radius: 3px;
  padding: 14px 15px;
  line-height: 1.35;
  transition: border-color .18s, box-shadow .18s, background-color .18s
}

.contact-field textarea {
  resize: vertical;
  min-height: 170px
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--color-text-primary);
  background: #fff;
  outline: 0;
  box-shadow: 0 0 0 3px #2cb9e547
}

.contact-field [aria-invalid=true] {
  border-color: #a63f39
}

.contact-error {
  color: #8a302c;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 600
}

.contact-submit {
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  display: flex
}

.contact-submit>p {
  color: var(--color-text-subtle);
  font-size: 11px
}

.contact-submit button:disabled {
  cursor: not-allowed;
  opacity: .58
}

.contact-form-state {
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface-soft);
  margin-top: 24px;
  padding: 16px 18px
}

.contact-form-state strong {
  font-size: 14px
}

.contact-form-state p {
  color: var(--color-text-secondary);
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5
}

.contact-form-state.is-success {
  border-left-color: #43815d
}

.contact-facts {
  background: var(--aaw-graphite);
  color: #f3f4f1;
  align-self: start;
  padding: clamp(2rem, 4vw, 3.5rem)
}

.contact-facts>.eyebrow {
  margin-bottom: 30px
}

.contact-fact {
  border-top: 1px solid #ffffff24;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 13px;
  padding: 21px 0;
  display: grid
}

.contact-fact>svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  stroke-width: 1.75px
}

.contact-fact span {
  color: var(--color-accent);
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 600;
  display: block
}

.contact-fact a,
.contact-fact p {
  color: #f3f4f1;
  font-size: var(--type-meta);
  margin-top: 7px;
  line-height: 1.5;
  display: block
}

.contact-fact a:hover {
  color: var(--color-accent)
}

.contact-fact .contact-map-link {
  width: max-content;
  color: var(--color-accent);
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex
}

.contact-map-link svg {
  stroke-width: 1.75px;
  width: 15px;
  height: 15px
}

@media (max-width:800px) {
  .contact-intro {
    padding: 8.5rem 7vw 5.5rem
  }

  .contact-intro h1 {
    font-size: clamp(3.8rem, 16vw, 6rem)
  }

  .contact-enquiry {
    padding: 5.5rem 7vw;
    display: block
  }

  .contact-field-row {
    grid-template-columns: 1fr
  }

  .contact-submit {
    flex-direction: column;
    align-items: flex-start
  }

  .contact-submit .button {
    width: 100%
  }

  .contact-facts {
    margin-top: 5rem;
    padding: 2rem 7vw
  }

  .contact-form-heading {
    margin-bottom: 36px
  }
}

@media (prefers-reduced-motion:reduce) {

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    transition: none
  }
}


/* ==========================================================================
   HERO SECTION IMAGE ROTATION & DISPLAY STYLES
   Applied to: main:nth-of-type(1) > section#top:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(1) > img:nth-of-type(1)
   ========================================================================== */
main:nth-of-type(1)>section#top:nth-of-type(1)>div:nth-of-type(1)>div:nth-of-type(1)>img:nth-of-type(1),
.hero-media [data-hero-frame] img,
.hero-frame img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}

.hero-media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -2 !important;
  overflow: hidden !important;
}

.hero-frame {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  will-change: opacity, transform !important;
  transform: translateZ(0) !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
}


/* ==========================================================================
   HERO ACCESSIBILITY OVERLAY (MODERN, MINIMAL & ELEGANT)
   Calibrates luminance behind typography and actions without dimming photographic vitality.
   Prevents background contrast clashes on bright concrete pavers and specular highlights.
   ========================================================================== */
.hero-shade,
.hero-cinematic .hero-shade,
section#top .hero-shade {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 75% 62% at 50% 52%, rgba(14, 16, 17, 0.46) 0%, rgba(14, 16, 17, 0.30) 38%, rgba(14, 16, 17, 0.08) 72%, transparent 100%),
    linear-gradient(180deg, rgba(14, 16, 17, 0.40) 0%, rgba(14, 16, 17, 0.12) 22%, rgba(14, 16, 17, 0.16) 65%, rgba(14, 16, 17, 0.50) 100%),
    rgba(14, 16, 17, 0.15) !important;
}

@media (max-width: 800px) {

  .hero-shade,
  .hero-cinematic .hero-shade,
  section#top .hero-shade {
    background:
      radial-gradient(ellipse 95% 65% at 50% 68%, rgba(14, 16, 17, 0.46) 0%, rgba(14, 16, 17, 0.26) 45%, transparent 85%),
      linear-gradient(180deg, rgba(14, 16, 17, 0.42) 0%, rgba(14, 16, 17, 0.12) 22%, rgba(14, 16, 17, 0.36) 55%, rgba(14, 16, 17, 0.65) 92%, rgba(14, 16, 17, 0.72) 100%),
      rgba(14, 16, 17, 0.14) !important;
  }
}


/* ==========================================================================
   SELECTED ELEMENT: HERO "EXPLORE PRODUCTS" SOLID WHITE FILL BUTTON
   Applied strictly to: main:nth-of-type(1) > section#top:nth-of-type(1) > div:nth-of-type(4) > div:nth-of-type(2) > a:nth-of-type(1)
   ========================================================================== */
main:nth-of-type(1)>section#top:nth-of-type(1)>div:nth-of-type(4)>div:nth-of-type(2)>a:nth-of-type(1),
.hero-cinematic .hero-actions .hero-explore.button-secondary {
  background-color: #ffffff !important;
  background: #ffffff !important;
  color: #0e1011 !important;
  border: 1px solid #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.12) !important;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

main:nth-of-type(1)>section#top:nth-of-type(1)>div:nth-of-type(4)>div:nth-of-type(2)>a:nth-of-type(1):hover,
.hero-cinematic .hero-actions .hero-explore.button-secondary:hover {
  background-color: #f3f4f1 !important;
  background: #f3f4f1 !important;
  border-color: #f3f4f1 !important;
  color: #0e1011 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24), 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-1px) !important;
}

main:nth-of-type(1)>section#top:nth-of-type(1)>div:nth-of-type(4)>div:nth-of-type(2)>a:nth-of-type(1):active,
.hero-cinematic .hero-actions .hero-explore.button-secondary:active {
  background-color: #ecebe7 !important;
  background: #ecebe7 !important;
  border-color: #ecebe7 !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16) !important;
}


/* ==========================================================================
   SELECTED ELEMENTS: CAPABILITY PRINCIPLES (RESPONSIVE VERTICAL WRAPPING)
   Applied strictly to:
   - main:nth-of-type(1) > div:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(3) > div:nth-of-type(3) > div:nth-of-type(1)
   - main:nth-of-type(1) > div:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(3) > div:nth-of-type(3) > div:nth-of-type(2)
   - main:nth-of-type(1) > div:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(3) > div:nth-of-type(3) > div:nth-of-type(3)
   Parent container:
   - main:nth-of-type(1) > div:nth-of-type(1) > section:nth-of-type(1) > div:nth-of-type(3) > div:nth-of-type(3)
   ========================================================================== */
.capability-copy {
  container-type: inline-size;
}

main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3),
.capability-principles {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  border: 0 !important;
  margin: 30px 0 28px !important;
}

main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(1),
main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(2),
main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(3),
.capability-principles>div {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  background: #ffffff09 !important;
  border: 1px solid #ffffff24 !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 56px !important;
  padding: 12px 16px !important;
  flex: 1 1 auto !important;
}

main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3) strong,
.capability-principles strong {
  font-family: var(--font-ui) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #f3f4f1 !important;
  line-height: 1.35 !important;
}

/* When the container has generous width (>580px), display horizontally side-by-side */
@container (min-width: 580px) {

  main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3),
  .capability-principles {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(1),
  main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(2),
  main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3)>div:nth-of-type(3),
  .capability-principles>div {
    min-height: 72px !important;
    padding: 14px !important;
  }
}

@media (min-width: 1750px) {

  main:nth-of-type(1)>div:nth-of-type(1)>section:nth-of-type(1)>div:nth-of-type(3)>div:nth-of-type(3),
  .capability-principles {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

/* ==========================================================================
   FOCUS MODE: Mobile Phone Link & Menu Toggle Icons Stability & Transformation
   CSS Selector 1: header#site-top:nth-of-type(1) > button:nth-of-type(1)
   CSS Selector 2: header#site-top:nth-of-type(1) > a:nth-of-type(2)
   ========================================================================== */

/* 1. Header Grid Container Stability on Mobile (max-width: 800px) */
@media (max-width: 800px) {

  header#site-top:nth-of-type(1),
  header#site-top.menu-open:nth-of-type(1),
  .nav,
  .nav.menu-open {
    display: grid !important;
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    border: 1px solid #c9c9c3e6 !important;
    border-radius: 11px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    padding: 0 14px 0 16px !important;
    box-sizing: border-box !important;
    grid-template-columns: minmax(0, 1fr) auto 44px !important;
    column-gap: 12px !important;
    align-items: center !important;
    transform: none !important;
  }

  /* Closed state height & row */
  header#site-top:not(.menu-open):nth-of-type(1),
  .nav:not(.menu-open) {
    height: 60px !important;
    grid-template-rows: 60px !important;
  }

  /* Expanded state height & row structure */
  header#site-top.menu-open:nth-of-type(1),
  .nav.menu-open {
    height: calc(100dvh - 24px) !important;
    min-height: 0 !important;
    grid-template-rows: 60px minmax(0, 1fr) !important;
    overflow: hidden !important;
    padding-bottom: 16px !important;
  }

  /* Row 1, Column 1: Brand logo */
  header#site-top:nth-of-type(1)>a:nth-of-type(1),
  .nav-brand {
    grid-area: 1 / 1 !important;
    grid-row: 1 !important;
    grid-column: 1 !important;
    align-self: center !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
    height: 44px !important;
    margin: 0 !important;
  }

  /* Row 2: Nav main content spanning all columns */
  header#site-top.menu-open:nth-of-type(1)>nav:nth-of-type(1),
  .nav.menu-open .nav-main {
    grid-area: 2 / 1 / auto / -1 !important;
    grid-row: 2 !important;
    grid-column: 1 / -1 !important;
  }
}

/* Small mobile width consistency (<=390px) */
@media (max-width: 390px) {

  header#site-top:nth-of-type(1),
  header#site-top.menu-open:nth-of-type(1),
  .nav,
  .nav.menu-open {
    column-gap: 8px !important;
  }

  header#site-top:nth-of-type(1)>a:nth-of-type(1) img,
  header#site-top.menu-open:nth-of-type(1)>a:nth-of-type(1) img,
  .nav .nav-brand img,
  .nav.menu-open .nav-brand img {
    width: 100px !important;
  }
}

/* 2. CSS Selector 2: Mobile Phone Number Link (header#site-top > a:nth-of-type(2)) */
@media (max-width: 800px) {

  header#site-top:nth-of-type(1)>a:nth-of-type(2),
  header#site-top.menu-open:nth-of-type(1)>a:nth-of-type(2),
  .nav .nav-mobile-phone-idle,
  .nav.menu-open .nav-mobile-phone-idle {
    grid-area: 1 / 2 !important;
    grid-row: 1 !important;
    grid-column: 2 !important;
    align-self: center !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 4px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    gap: 7px !important;
    font-family: var(--font-ui) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: var(--color-text-primary) !important;
    text-decoration: none !important;
    position: relative !important;
    z-index: 52 !important;
    transition: color 0.15s ease !important;
  }

  header#site-top:nth-of-type(1)>a:nth-of-type(2) svg,
  header#site-top.menu-open:nth-of-type(1)>a:nth-of-type(2) svg,
  .nav-mobile-phone-idle svg {
    width: 15px !important;
    height: 15px !important;
    stroke: var(--color-accent-text) !important;
    stroke-width: 1.75px !important;
    flex-shrink: 0 !important;
    display: block !important;
    margin: 0 !important;
  }
}

@media (max-width: 390px) {

  header#site-top:nth-of-type(1)>a:nth-of-type(2),
  header#site-top.menu-open:nth-of-type(1)>a:nth-of-type(2),
  .nav .nav-mobile-phone-idle,
  .nav.menu-open .nav-mobile-phone-idle {
    gap: 5px !important;
    font-size: 10px !important;
    padding: 0 2px !important;
  }

  header#site-top:nth-of-type(1)>a:nth-of-type(2) svg,
  header#site-top.menu-open:nth-of-type(1)>a:nth-of-type(2) svg,
  .nav-mobile-phone-idle svg {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (min-width: 801px) {

  header#site-top:nth-of-type(1)>a:nth-of-type(2),
  .nav .nav-mobile-phone-idle {
    display: none !important;
  }
}

/* 3. CSS Selector 1: Burger Menu Toggle Button (header#site-top > button:nth-of-type(1)) */
@media (max-width: 800px) {

  header#site-top:nth-of-type(1)>button:nth-of-type(1),
  header#site-top.menu-open:nth-of-type(1)>button:nth-of-type(1),
  .menu,
  .nav.menu-open .menu {
    grid-area: 1 / 3 !important;
    grid-row: 1 !important;
    grid-column: 3 !important;
    align-self: center !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--color-text-primary) !important;
    position: relative !important;
    cursor: pointer !important;
    z-index: 52 !important;
  }

  /* Center icon container perfectly inside 44x44 tap target */
  header#site-top:nth-of-type(1)>button:nth-of-type(1) .menu-icon,
  .menu .menu-icon {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  /* Both burger and close SVG icons pinned precisely at center */
  header#site-top:nth-of-type(1)>button:nth-of-type(1) .menu-icon svg,
  .menu .menu-icon svg {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 22px !important;
    stroke: var(--color-text-primary) !important;
    stroke-width: 1.8px !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.26s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: center center !important;
    box-sizing: content-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Idle / Closed state: burger visible, close hidden */
  header#site-top:not(.menu-open):nth-of-type(1)>button:nth-of-type(1) .icon-burger,
  header#site-top:not(.menu-open):nth-of-type(1)>button:nth-of-type(1) svg.lucide-menu,
  .nav:not(.menu-open) .menu .icon-burger,
  .nav:not(.menu-open) .menu svg.lucide-menu,
  button.menu:not([aria-expanded="true"]) .icon-burger,
  button.menu:not([aria-expanded="true"]) svg.lucide-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
    pointer-events: auto !important;
  }

  header#site-top:not(.menu-open):nth-of-type(1)>button:nth-of-type(1) .icon-close,
  header#site-top:not(.menu-open):nth-of-type(1)>button:nth-of-type(1) svg.lucide-x,
  .nav:not(.menu-open) .menu .icon-close,
  .nav:not(.menu-open) .menu svg.lucide-x,
  button.menu:not([aria-expanded="true"]) .icon-close,
  button.menu:not([aria-expanded="true"]) svg.lucide-x {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.65) !important;
    pointer-events: none !important;
  }

  /* Expanded / Open state: burger transforms out, close transforms in */
  header#site-top.menu-open:nth-of-type(1)>button:nth-of-type(1) .icon-burger,
  header#site-top.menu-open:nth-of-type(1)>button:nth-of-type(1) svg.lucide-menu,
  .nav.menu-open .menu .icon-burger,
  .nav.menu-open .menu svg.lucide-menu,
  button.menu[aria-expanded="true"] .icon-burger,
  button.menu[aria-expanded="true"] svg.lucide-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.65) !important;
    pointer-events: none !important;
  }

  header#site-top.menu-open:nth-of-type(1)>button:nth-of-type(1) .icon-close,
  header#site-top.menu-open:nth-of-type(1)>button:nth-of-type(1) svg.lucide-x,
  .nav.menu-open .menu .icon-close,
  .nav.menu-open .menu svg.lucide-x,
  button.menu[aria-expanded="true"] .icon-close,
  button.menu[aria-expanded="true"] svg.lucide-x {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
    pointer-events: auto !important;
  }
}

@media (min-width: 801px) {

  header#site-top:nth-of-type(1)>button:nth-of-type(1),
  .menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  header#site-top:nth-of-type(1)>button:nth-of-type(1) .menu-icon svg,
  .menu .menu-icon svg {
    transition: none !important;
  }
}

/* ==========================================================================
   FOCUS MODE: Solid White Header (No Transparency)
   CSS Selector 1: header#site-top:nth-of-type(1)
   ========================================================================== */
header#site-top:nth-of-type(1),
header#site-top.nav:nth-of-type(1),
header#site-top.nav-over-hero:nth-of-type(1),
header#site-top.is-scrolled:nth-of-type(1),
header#site-top.menu-open:nth-of-type(1) {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

header#site-top:nth-of-type(1)::before,
header#site-top:nth-of-type(1)::after {
  display: none !important;
  content: none !important;
}

header#site-top:nth-of-type(1) .product-menu {
  background: #ffffff !important;
  background-color: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* ==========================================================================
   Full-Width Key Selling Highlights & Proof Strip Component
   Aligned to website main container (8vw desktop / 7vw mobile)
   ========================================================================== */

.proof-strip,
.product-information {
  width: 100% !important;
  max-width: 100% !important;
  background: var(--color-surface-soft, #e6e5e0) !important;
  background-color: var(--color-surface-soft, #e6e5e0) !important;
  border-top: 1px solid var(--color-border, var(--line, #c8cfca)) !important;
  border-bottom: 1px solid var(--color-border, var(--line, #c8cfca)) !important;
  padding: 0 max(var(--page-gutter, 8vw), calc((100vw - var(--content-max, 1600px)) / 2)) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.proof-strip {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  gap: 0 !important;
  box-sizing: border-box !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

.product-information-grid {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  border: 0 !important;
  box-sizing: border-box !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
}

.proof-strip>div,
.proof-strip>span,
.product-information-grid>div {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(22px, 2.5vw, 32px) clamp(20px, 2.5vw, 36px) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  border-right: 1px solid var(--color-border, var(--line, #c8cfca)) !important;
  background: transparent !important;
  min-height: clamp(88px, 9vw, 108px) !important;
  box-sizing: border-box !important;
}

.proof-strip>div:first-child,
.proof-strip>span:first-child,
.product-information-grid>div:first-child {
  padding-left: 0 !important;
}

.proof-strip>div:last-child,
.proof-strip>span:last-child,
.product-information-grid>div:last-child {
  border-right: 0 !important;
  padding-right: 0 !important;
}

.proof-strip span,
.product-information-grid span,
.proof-strip .highlight-label,
.product-information-grid .highlight-label {
  font-family: var(--font-ui), "Manrope", sans-serif !important;
  color: #0c7ea0 !important;
  font-size: clamp(10px, 0.75vw, 11px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
  display: block !important;
  border: 0 !important;
  padding: 0 !important;
}

.proof-strip p,
.proof-strip b,
.product-information-grid p,
.proof-strip .highlight-value,
.product-information-grid .highlight-value {
  font-family: var(--font-display), "Space Grotesk", sans-serif !important;
  color: var(--ink, #30383a) !important;
  font-size: clamp(1.15rem, 1.2vw, 1.55rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

@media (max-width: 800px) {

  .proof-strip,
  .product-information {
    padding: 0 var(--page-gutter, 7vw) !important;
  }

  .proof-strip,
  .product-information-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .proof-strip>div,
  .proof-strip>span,
  .product-information-grid>div {
    padding: 18px 16px !important;
    border-right: 1px solid var(--color-border, var(--line, #c8cfca)) !important;
    border-bottom: 1px solid var(--color-border, var(--line, #c8cfca)) !important;
  }

  .proof-strip>div:nth-child(2n+1),
  .proof-strip>span:nth-child(2n+1),
  .product-information-grid>div:nth-child(2n+1) {
    padding-left: 0 !important;
  }

  .proof-strip>div:nth-child(2n),
  .proof-strip>span:nth-child(2n),
  .product-information-grid>div:nth-child(2n) {
    border-right: 0 !important;
    padding-right: 0 !important;
  }

  .proof-strip>div:nth-last-child(-n+2),
  .proof-strip>span:nth-last-child(-n+2),
  .product-information-grid>div:nth-last-child(-n+2) {
    border-bottom: 0 !important;
  }
}

/* Shared CTA treatment: consistent controls without decorative arrows. */
:is(.button, .button-primary, .button-secondary) {
  min-height: 52px;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 13px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1;
  transition: transform .2s, background-color .2s, border-color .2s, color .2s;
  display: inline-flex
}

:is(.button, .button-primary, .button-secondary):hover {
  transform: translateY(-2px)
}

:is(.button, .button-primary, .button-secondary, .nav-cta, .tertiary-action, .product-explore) :is(.lucide-arrow-right, .lucide-arrow-up-right) {
  display: none !important
}

@media (max-width:800px) {
  :is(.button, .button-primary, .button-secondary) {
    min-height: 52px;
    padding: 13px 22px
  }
}

/* Shared product introduction: breadcrumb and hero use the site content grid. */
.product-detail {
  background:
    linear-gradient(180deg, rgba(200, 207, 202, .3) 0, rgba(200, 207, 202, .12) 280px, rgba(200, 207, 202, 0) 640px),
    var(--color-surface);
  padding-top: 114px
}

.product-breadcrumb {
  border-bottom: 0;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  margin: 0 auto 36px;
  padding: 0;
  line-height: 1.4
}

.product-editorial-hero {
  background: transparent;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  column-gap: clamp(48px, 4vw, 64px);
  align-items: start;
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-max));
  height: 540px;
  min-height: 0;
  margin: 0 auto 56px
}

.product-editorial-hero-copy {
  box-sizing: border-box;
  grid-column: auto;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 0
}

.product-editorial-hero-copy h1 {
  margin-top: 24px;
  margin-bottom: 18px
}

.product-detail-measure {
  width: clamp(80px, 7vw, 112px);
  margin-bottom: 24px
}

.product-detail-actions {
  margin-top: 36px
}

.product-editorial-hero-image {
  grid-column: auto;
  align-self: start;
  width: 100%;
  height: 540px;
  min-height: 0;
  margin: 0
}

.product-detail-title-mask {
  flex: 0 0 auto;
  width: 100%;
  overflow: visible
}

.product-editorial-hero-image {
  background: var(--color-surface-muted, #e2e5e1);
  contain: layout paint;
  overflow: hidden
}

.product-editorial-hero-image img {
  opacity: 0;
  display: block;
  transition: opacity .22s ease-out
}

.product-editorial-hero-image img.is-loaded {
  opacity: 1
}

@media (prefers-reduced-motion:reduce) {
  .product-editorial-hero-image img {
    transition: none
  }
}

@media (max-width:800px) {
  .product-detail {
    padding-top: 96px
  }

  .product-breadcrumb {
    width: calc(100% - (2 * var(--page-gutter)));
    margin-bottom: 32px;
    padding: 0
  }

  .product-editorial-hero {
    width: calc(100% - (2 * var(--page-gutter)));
    height: auto;
    margin: 0 auto
  }

  .product-editorial-hero-copy {
    box-sizing: border-box;
    justify-content: flex-start;
    height: auto;
    min-height: 0;
    padding: 0
  }

  .product-editorial-hero-image {
    width: 100%;
    height: clamp(320px, 52svh, 480px);
    min-height: 320px;
    margin: 36px 0 64px
  }
}
