:root {
  --ocean: #173845;
  --ocean-soft: #4d6c76;
  --teal: #146c7e;
  --teal-deep: #0e5665;
  --aqua: #e8f6f4;
  --sky: #eff8fc;
  --white: #ffffff;
  --coral: #b84a3a;
  --success: #287a55;
  --error: #b8423b;
  --focus: #0a7f98;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 77.5rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --space-section: clamp(5rem, 9vw, 8.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ocean);
  background: var(--white);
  font: 1rem/1.65 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

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

button,
summary,
a {
  cursor: pointer;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--teal-deep);
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--gutter);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(20, 108, 126, 0.12);
}

.descriptor {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ocean);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  text-decoration: none;
}

.descriptor-mark {
  position: relative;
  width: 1.05rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border: 1.5px solid var(--teal);
  border-radius: 0.28rem;
}

.descriptor-mark::before {
  content: "";
  position: absolute;
  top: 0.22rem;
  left: 0.2rem;
  width: 0.26rem;
  height: 0.26rem;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.3rem);
}

.primary-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--ocean);
  font-size: 0.88rem;
  font-weight: 550;
  text-decoration: none;
}

.primary-nav a:not(.nav-cta) {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.38rem;
  transition: text-decoration-color 180ms ease, color 180ms ease;
}

.primary-nav a:not(.nav-cta):hover,
.primary-nav a[aria-current="page"] {
  color: var(--teal);
  text-decoration-color: currentColor;
}

.nav-cta,
.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary,
.button-submit {
  color: var(--white) !important;
  background: var(--teal);
}

.nav-cta:hover,
.button-primary:hover,
.button-submit:hover {
  background: var(--teal-deep);
}

.button-secondary {
  color: var(--teal);
  border-color: var(--teal);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  color: var(--ocean);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.4rem auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  max-width: 82rem;
  min-height: 41rem;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) var(--gutter);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.product-meta,
.breadcrumbs,
.figure-note {
  margin: 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
.editorial-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--ocean-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions,
.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

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

.text-link:hover span {
  transform: translateX(0.2rem);
}

.hero-media {
  min-height: 33rem;
  padding: clamp(1rem, 2.5vw, 2rem);
  background: var(--aqua);
}

.hero-image {
  width: 100%;
  height: 31rem;
  object-fit: cover;
  object-position: center;
}

.figure-note {
  margin-top: 0.75rem;
  color: var(--ocean-soft);
  text-transform: none;
  letter-spacing: 0.03em;
}

.value-notes {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 4rem;
}

.value-notes div {
  min-width: 0;
}

.value-notes strong,
.value-notes span {
  display: block;
}

.value-notes strong {
  color: var(--teal);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.value-notes span {
  margin-top: 0.15rem;
  color: var(--ocean-soft);
  font-size: 0.88rem;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
}

.section-heading {
  max-width: 45rem;
}

.section-heading h2,
.page-intro h1,
.product-detail-copy h1,
.inquiry-heading h2 {
  margin-top: 0.9rem;
  color: var(--ocean);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.14;
}

.section-heading > p:not(.section-label),
.page-intro > p,
.product-detail-copy > p,
.inquiry-heading > p {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--ocean-soft);
  font-size: 1.08rem;
}

.product-showcase,
.catalog-list {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.product-story:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.08fr);
}

.product-story:nth-child(even) .product-visual {
  grid-column: 2;
  grid-row: 1;
}

.product-story:nth-child(even) .product-copy {
  grid-column: 1;
  grid-row: 1;
}

.product-visual {
  margin: 0;
  padding: clamp(1rem, 3vw, 2.25rem);
  background: var(--sky);
}

.product-story:nth-child(2n) .product-visual {
  background: var(--aqua);
}

.product-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-copy {
  max-width: 30rem;
}

.product-copy h2,
.product-copy h3 {
  margin: 0.85rem 0 0;
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.product-copy p {
  margin: 1rem 0 0;
  color: var(--ocean-soft);
}

.product-copy .text-link {
  margin-top: 1.25rem;
}

.soft-section {
  background: var(--aqua);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.capability-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem clamp(2rem, 5vw, 5rem);
}

.capability-columns article {
  min-width: 0;
}

.capability-columns span {
  display: block;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-columns h3 {
  margin: 0.7rem 0 0;
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.25;
}

.capability-columns p {
  margin: 0.65rem 0 0;
  color: var(--ocean-soft);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.process-image {
  position: sticky;
  top: 7rem;
  margin: 0;
  padding: 1rem;
  background: var(--sky);
}

.process-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.process-list {
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
}

.process-list > li > span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 650;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.process-list p {
  margin-top: 0.35rem;
  color: var(--ocean-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list details {
  padding: 0.7rem 0;
  border-bottom: 1px solid #cfe4e7;
}

.faq-list summary {
  position: relative;
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 2.75rem 0.65rem 0;
  color: var(--ocean);
  font-size: 1.02rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 62ch;
  margin: 0;
  padding: 0 2.75rem 1rem 0;
  color: var(--ocean-soft);
}

.inquiry-section {
  background: var(--sky);
}

.inquiry-layout {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
}

.inquiry-heading {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.inquiry-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ocean);
  font-size: 0.86rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #b6dadd;
  border-radius: 0.5rem;
  color: var(--ocean);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #6f8a92;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 127, 152, 0.15);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-help,
.field-error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.35;
}

.field-help {
  color: var(--ocean-soft);
}

.field-error {
  color: var(--error);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.7rem;
}

.form-footer p {
  margin: 0;
  color: var(--ocean-soft);
  font-size: 0.82rem;
}

.button-submit {
  border: 0;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  min-height: 2.6rem;
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem var(--gutter);
  color: var(--white);
  background: var(--teal-deep);
}

.site-footer p {
  max-width: 34rem;
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.32rem;
}

.privacy-main {
  padding: clamp(7.5rem, 12vw, 11rem) var(--gutter) clamp(5rem, 9vw, 8rem);
}

.privacy-copy {
  width: min(47.5rem, 100%);
  margin-inline: auto;
}

.privacy-copy h1 {
  max-width: 14ch;
  margin: 0.8rem 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.privacy-updated {
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.privacy-copy h2 {
  margin: 2.8rem 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
}

.privacy-copy p:not(.section-label) {
  max-width: 68ch;
  color: var(--ocean-soft);
  line-height: 1.75;
}

.page-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--gutter) 2rem;
}

.page-intro h1 {
  max-width: 15ch;
}

.page-intro > p {
  max-width: 48rem;
}

.catalog-list {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  padding: 0 var(--gutter) var(--space-section);
}

.breadcrumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
  color: var(--ocean-soft);
  letter-spacing: 0.03em;
  text-transform: none;
}

.breadcrumbs a {
  color: var(--teal);
}

.product-detail-hero {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(19rem, 0.78fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) var(--gutter) var(--space-section);
}

.product-image-stage {
  margin: 0;
  padding: clamp(1rem, 3vw, 2.4rem);
  background: var(--aqua);
}

.product-image-stage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-copy h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.55rem, 4.3vw, 3.75rem);
}

.product-detail-copy > p {
  font-size: 1.06rem;
}

.product-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 2rem;
  margin: 2rem 0 0;
}

.product-facts div {
  min-width: 0;
}

.product-facts dt {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0.35rem 0 0;
  color: var(--ocean);
  font-size: 0.95rem;
}

.swatch-group {
  margin-top: 1.6rem;
}

.swatch-group > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ocean-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.swatches {
  display: flex;
  gap: 0.7rem;
}

.swatches i {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(20, 108, 126, 0.28);
}

.swatch-clear { background: #f7fbfc; }
.swatch-mist { background: #cbd9dc; }
.swatch-sky { background: #94cbd2; }
.swatch-smoke { background: #7b8990; }
.swatch-sage { background: #91a99c; }
.swatch-blue { background: #8bb8c6; }
.swatch-coral { background: #e58b78; }
.swatch-ivory { background: #ece8dc; }
.swatch-ocean { background: #344e58; }
.swatch-forest { background: #567468; }
.swatch-rust { background: #d96d50; }
.swatch-steel { background: #6e8792; }
.swatch-white { background: #ffffff; }
.swatch-aqua { background: #eaf6f6; }
.swatch-cyan { background: #b8dfe4; }
.swatch-salmon { background: #f0a08f; }

.product-options .section-heading {
  max-width: 50rem;
}

.option-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
}

.option-columns h3 {
  margin: 0;
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.option-columns p {
  margin: 0.7rem 0 0;
  color: var(--ocean-soft);
}

.product-cta-section {
  max-width: 52rem;
  margin: 0 auto;
  padding: var(--space-section) var(--gutter);
  text-align: center;
}

.product-cta-section h2 {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
  line-height: 1.14;
}

.product-cta-section p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--ocean-soft);
}

.product-cta-section .button {
  margin-top: 1.8rem;
}

.related-products {
  background: var(--sky);
}

.related-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 2.5rem;
}

.related-links a {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ocean);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-decoration: none;
}

.related-links a span {
  color: var(--teal);
  font-family: var(--font-sans);
  transition: transform 180ms ease;
}

.related-links a:hover span {
  transform: translateX(0.25rem);
}

.reveal {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 4.75rem 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--white);
    box-shadow: 0 1rem 2rem rgba(20, 108, 126, 0.08);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms var(--ease), visibility 220ms;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav a {
    justify-content: space-between;
    padding: 0.65rem 0;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin-top: 0.8rem;
  }

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

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

  .hero,
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .product-image-stage {
    grid-row: 1;
  }

  .hero-content,
  .product-detail-copy {
    grid-row: 2;
  }

  .value-notes {
    grid-template-columns: 1fr 1fr;
  }

  .product-story,
  .product-story:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
    gap: 2.5rem;
  }

  .product-story:nth-child(even) .product-visual,
  .product-story:nth-child(even) .product-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-story:nth-child(even) .product-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .product-story:nth-child(even) .product-visual {
    grid-column: 2;
    grid-row: 1;
  }

  .capability-layout,
  .process-layout,
  .faq-layout,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .process-image,
  .inquiry-heading {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 4.25rem;
  }

  .descriptor {
    font-size: 0.8rem;
  }

  .primary-nav {
    top: 4.25rem;
  }

  .hero {
    min-height: 0;
    gap: 2rem;
    padding-top: 1.25rem;
    padding-bottom: 4.5rem;
  }

  .hero-media {
    min-height: 0;
    padding: 0.75rem;
  }

  .hero-image {
    height: 19rem;
  }

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

  .hero-actions,
  .detail-actions,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .value-notes {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .section-shell,
  .inquiry-layout {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .section-heading h2,
  .page-intro h1,
  .product-detail-copy h1,
  .inquiry-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .product-story,
  .product-story:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2.25rem 0;
  }

  .product-story:nth-child(even) .product-visual,
  .product-story:nth-child(even) .product-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .product-story .product-visual {
    grid-row: 1;
  }

  .product-story .product-copy {
    grid-row: 2;
  }

  .product-copy h2,
  .product-copy h3 {
    font-size: 2.25rem;
  }

  .capability-columns,
  .form-grid,
  .option-columns,
  .related-links {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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