/*
Theme Name: ATM Industrial Light
Theme URI: https://atm-pneumatic.com/
Author: ATM Pneumatic Components
Description: A responsive B2B industrial theme for ATM Pneumatic Components, including dedicated page layouts and WordPress post templates.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: atm-v7
*/

:root {
  --atm-bg: #f3f6f8;
  --atm-surface: #ffffff;
  --atm-raised: #eaf0f4;
  --atm-raised-2: #dce7ed;
  --atm-blue: #246fa7;
  --atm-blue-light: #5d98c0;
  --atm-red: #ec130e;
  --atm-red-dark: #c80f0b;
  --atm-text: #22313d;
  --atm-muted: #637482;
  --atm-line: #d8e1e7;
  --atm-line-strong: #bbc9d2;
  --atm-max: 1280px;
  --atm-gutter: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--atm-text);
  background: var(--atm-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--atm-text);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.012em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  color: #ffffff;
  background: var(--atm-red);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--atm-max), calc(100% - var(--atm-gutter)));
  margin-inline: auto;
}

.utility-bar {
  border-top: 3px solid var(--atm-red);
  border-bottom: 1px solid var(--atm-line);
  color: var(--atm-muted);
  background: #122838;
  font-size: 0.78rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--atm-line);
  background: #173044;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateY(3px);
}

.brand-name {
  padding-left: 9px;
  border-left: 1px solid var(--atm-line-strong);
  color: var(--atm-muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: block;
  padding: 27px 0 24px;
  color: #cad2db;
  font-size: 0.88rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--atm-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  flex: 0 0 auto;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--atm-line-strong);
  border-radius: 2px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button-primary {
  color: #ffffff;
  background: var(--atm-blue);
}

.button-primary:hover {
  background: var(--atm-blue-light);
}

.button-red {
  color: #ffffff;
  background: var(--atm-red);
}

.button-red:hover {
  background: #e23a42;
}

.button-outline {
  border-color: var(--atm-line-strong);
  color: #ffffff;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--atm-blue-light);
  background: rgba(62, 131, 191, 0.12);
}

.button:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.contact-link:focus-visible,
.category-link:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(62, 131, 191, 0.65);
  outline-offset: 3px;
}

.section {
  padding: 80px 0;
}

.surface-base {
  background: var(--atm-bg);
}

.surface-raised {
  background: #1d3a4f;
}

.surface-soft {
  background: #eef4f7;
}

.surface-blue {
  background: #0a355a;
}

.section-border {
  border-top: 1px solid var(--atm-line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ee5a61;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--atm-red);
}

.display-title {
  max-width: 780px;
  margin-bottom: 20px;
}

.lead {
  max-width: 720px;
  color: var(--atm-muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.text-link {
  color: #6a9dcc;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-color: rgba(106, 157, 204, 0.55);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0 82px;
  background-color: #26485d;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(21, 48, 67, 0.42);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--atm-blue);
  border-left: 34vw solid var(--atm-red);
}

.hero-copy {
  max-width: 800px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
}

.hero .lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: #d0d7de;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--atm-line-strong);
  list-style: none;
}

.hero-points li {
  padding: 18px 24px 0 0;
  color: #d7dee6;
  font-size: 0.86rem;
  font-weight: 650;
}

.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0 62px;
  border-bottom: 1px solid var(--atm-line);
  background-color: #17384f;
  background-image:
    linear-gradient(90deg, rgba(23, 56, 79, 0.98) 0%, rgba(23, 56, 79, 0.94) 42%, rgba(23, 56, 79, 0.7) 100%),
    var(--page-head-image);
  background-position: var(--page-head-position, center);
  background-size: cover;
}

.page-head::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--atm-red) 0 22%, var(--atm-blue) 22% 100%);
}

.page-head .display-title {
  max-width: 850px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #a9bbc7;
  font-size: 0.78rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--atm-line);
  border-left: 1px solid var(--atm-line);
}

.category-item {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--atm-line);
  border-bottom: 1px solid var(--atm-line);
  background: var(--atm-surface);
}

.category-image {
  width: calc(100% + 56px);
  height: 172px;
  margin: -28px -28px 25px;
  border-bottom: 1px solid var(--atm-line);
  object-fit: cover;
}

.category-code {
  margin-bottom: 42px;
  color: #ef5961;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.category-item h3 {
  margin-bottom: 11px;
}

.category-item p {
  margin-bottom: 22px;
  color: var(--atm-muted);
  font-size: 0.9rem;
}

.category-link {
  margin-top: auto;
  color: #6a9dcc;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.category-link:hover {
  color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--atm-line);
  border-bottom: 1px solid var(--atm-line);
}

.feature-item {
  min-height: 230px;
  padding: 32px 28px 34px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--atm-line);
}

.feature-marker {
  width: 36px;
  height: 3px;
  display: block;
  margin-bottom: 42px;
  background: var(--atm-blue-light);
}

.feature-item:nth-child(even) .feature-marker {
  background: var(--atm-red);
}

.feature-item p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 480px;
  margin: 0;
  border-left: 4px solid var(--atm-red);
  border-bottom: 4px solid var(--atm-blue);
  background: var(--atm-raised);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 476px;
  object-fit: cover;
}

.lined-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lined-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--atm-line);
}

.lined-index {
  color: #ef5961;
  font-size: 0.77rem;
  font-weight: 760;
}

.lined-item h3 {
  margin-bottom: 7px;
}

.lined-item p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.92rem;
}

.catalog-list {
  border-top: 1px solid var(--atm-line);
}

.catalog-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.6fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--atm-line);
}

.catalog-row:hover {
  background: rgba(255, 255, 255, 0.018);
}

.catalog-id {
  color: #ef5961;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.catalog-row h3,
.catalog-row p {
  margin-bottom: 0;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--atm-line);
  background: var(--atm-surface);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--atm-line);
  background: #dfe9ef;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.025);
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.product-card-category {
  margin-bottom: 12px;
  color: #ff6d68;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 8px;
}

.product-card p {
  margin-bottom: 20px;
  color: var(--atm-muted);
  font-size: 0.88rem;
}

.product-card .text-link {
  margin-top: auto;
}

.product-catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.product-filters {
  position: sticky;
  top: 96px;
  border-top: 3px solid var(--atm-red);
  background: var(--atm-surface);
}

.filter-group {
  padding: 22px;
  border-right: 1px solid var(--atm-line);
  border-bottom: 1px solid var(--atm-line);
  border-left: 1px solid var(--atm-line);
}

.filter-title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.filter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-list li + li {
  margin-top: 8px;
}

.filter-link {
  color: var(--atm-muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.filter-link:hover {
  color: #ffffff;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--atm-line);
}

.catalog-toolbar p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.86rem;
}

.catalog-sort {
  min-height: 40px;
  padding: 8px 34px 8px 11px;
  border: 1px solid var(--atm-line-strong);
  border-radius: 0;
  color: #ffffff;
  background: var(--atm-surface);
}

.plugin-note {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--atm-blue-light);
  color: #dbe5ec;
  background: rgba(114, 171, 210, 0.12);
  font-size: 0.88rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.page-number {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--atm-line-strong);
  color: var(--atm-muted);
  text-decoration: none;
}

.page-number:hover,
.page-number[aria-current="page"] {
  border-color: var(--atm-blue-light);
  color: #ffffff;
  background: var(--atm-blue);
}

.catalog-row p {
  color: var(--atm-muted);
  font-size: 0.92rem;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--atm-line);
}

.segment-item {
  padding: 26px 22px 28px 0;
  border-bottom: 1px solid var(--atm-line);
}

.segment-item + .segment-item {
  padding-left: 22px;
  border-left: 1px solid var(--atm-line);
}

.segment-item h3 {
  margin-bottom: 8px;
}

.segment-item p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.process-step {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid var(--atm-line-strong);
}

.process-step::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--atm-blue-light);
}

.process-step:nth-child(even)::before {
  background: var(--atm-red);
}

.process-number {
  display: block;
  margin-bottom: 36px;
  color: #7f8c99;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.9rem;
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--atm-line);
}

.faq-item {
  border-bottom: 1px solid var(--atm-line);
}

.faq-item summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: #e7ecf1;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 23px;
  right: 5px;
  color: var(--atm-blue-light);
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  color: #ef5961;
  content: "\2212";
}

.faq-answer {
  max-width: 760px;
  padding: 0 44px 23px 0;
  color: var(--atm-muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.cta-band {
  padding: 68px 0;
  border-top: 4px solid var(--atm-red);
  background: #235f88;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.cta-grid p {
  max-width: 720px;
  margin-bottom: 0;
  color: #ccdae7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.form-panel {
  padding: 36px;
  border: 1px solid var(--atm-line-strong);
  background: var(--atm-raised);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #dbe2e9;
  font-size: 0.82rem;
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--atm-line-strong);
  border-radius: 0;
  color: var(--atm-text);
  background: #183348;
}

.field input,
.field select {
  min-height: 47px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #71808f;
}

.form-actions {
  margin-top: 24px;
}

.form-note {
  display: none;
}

.contact-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--atm-line);
  list-style: none;
}

.contact-photo {
  margin: 0 0 34px;
  border-left: 3px solid var(--atm-red);
  border-bottom: 3px solid var(--atm-blue-light);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--atm-line);
}

.contact-label {
  display: block;
  margin-bottom: 6px;
  color: #ef5961;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link {
  color: #eef2f5;
  text-decoration: none;
}

.contact-link:hover {
  color: #6a9dcc;
}

.note-box {
  margin-top: 32px;
  padding: 22px;
  border-left: 3px solid var(--atm-blue-light);
  background: rgba(62, 131, 191, 0.08);
}

.note-box p:last-child {
  margin-bottom: 0;
}

.confirmation {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 96px 0;
}

.confirmation-panel {
  max-width: 850px;
  padding: 46px 0 46px 38px;
  border-left: 4px solid var(--atm-red);
}

.confirmation-panel h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.confirmation-panel .lead {
  margin-bottom: 30px;
}

.site-footer {
  border-top: 1px solid var(--atm-line);
  background: #122838;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.6fr));
  gap: 54px;
  padding: 66px 0 54px;
}

.footer-intro {
  max-width: 370px;
  margin-top: 20px;
  color: #8995a1;
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-link {
  color: #8995a1;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--atm-line);
  color: #687583;
  font-size: 0.76rem;
}

/* Light-led visual system -------------------------------------------------- */
.surface-base {
  background: #ffffff;
}

.surface-raised {
  background: var(--atm-bg);
}

.utility-bar,
.site-header,
.site-footer,
.page-head,
.buyer-band {
  color: #ffffff;
}

.utility-bar {
  color: #b8c7d2;
  background: #102b3e;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: #17384f;
}

.site-header .brand-name,
.site-footer .brand-name {
  color: #d1dbe2;
}

.hero h1,
.hero h2,
.hero h3,
.page-head h1,
.page-head h2,
.page-head h3,
.buyer-band h2,
.buyer-band h3,
.cta-band h2,
.cta-band h3,
.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.page-head {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background-color: #17384f;
}

.page-head .lead {
  color: #c5d2da;
}

.button-outline {
  border-color: var(--atm-blue);
  color: var(--atm-blue);
}

.button-outline:hover {
  border-color: var(--atm-blue);
  color: #ffffff;
  background: var(--atm-blue);
}

.hero .button-outline,
.cta-band .button-outline,
.page-head .button-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

.hero .button-outline:hover,
.cta-band .button-outline:hover,
.page-head .button-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.text-link,
.category-link {
  color: var(--atm-blue);
}

.text-link:hover,
.category-link:hover {
  color: #164d73;
}

.category-item,
.product-card,
.product-filters {
  background: #ffffff;
}

.category-code,
.product-card-category,
.contact-label {
  color: var(--atm-red);
}

.filter-title,
.faq-item summary,
.contact-link {
  color: var(--atm-text);
}

.filter-link:hover,
.contact-link:hover {
  color: var(--atm-blue);
}

.catalog-row:hover {
  background: rgba(36, 111, 167, 0.045);
}

.catalog-sort {
  color: var(--atm-text);
  background: #ffffff;
}

.plugin-note {
  color: #35566c;
  background: #e7f1f7;
}

.form-panel {
  border-color: var(--atm-line);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(23, 56, 79, 0.08);
}

.field label {
  color: #344956;
}

.field input,
.field textarea,
.field select {
  color: var(--atm-text);
  background: #f9fbfc;
}

.note-box {
  background: #e8f1f6;
}

.site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: #102b3e;
}

.site-footer .footer-intro,
.site-footer .footer-link {
  color: #9fb0bd;
}

.site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: #8194a3;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--atm-text);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}

.social-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.social-mark-linkedin {
  background: #0a66c2;
}

.social-mark-facebook {
  background: #1877f2;
}

.social-mark-tiktok {
  background: #111111;
}

.social-mark-tiktok svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: #ffffff;
}

.social-link:hover {
  color: var(--atm-blue);
}

.site-footer .social-link {
  color: #c5d1da;
}

.site-footer .social-link:hover {
  color: #ffffff;
}

.contact-social {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--atm-line);
}

.contact-social h3 {
  margin-bottom: 9px;
}

.contact-social > p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.88rem;
}

/* WordPress content and Insights ----------------------------------------- */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--atm-line);
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(23, 56, 79, 0.1);
}

.article-card-media {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: var(--atm-raised);
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
  color: var(--atm-muted);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-meta a {
  color: var(--atm-red);
  text-decoration: none;
}

.article-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.article-card h2 a {
  text-decoration: none;
}

.article-card p {
  margin-bottom: 22px;
  color: var(--atm-muted);
  font-size: 0.9rem;
}

.article-card .text-link {
  margin-top: auto;
}

.posts-pagination,
.navigation.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--atm-line-strong);
  color: var(--atm-text);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--atm-blue);
  color: #ffffff;
  background: var(--atm-blue);
}

.empty-state {
  max-width: 720px;
  padding: 42px;
  border-left: 4px solid var(--atm-red);
  background: var(--atm-bg);
}

.article-hero {
  padding: 72px 0 86px;
  color: #ffffff;
  background: #17384f;
}

.article-hero h1 {
  max-width: 930px;
  margin-bottom: 22px;
  color: #ffffff;
}

.article-hero .lead {
  color: #c1d0d9;
}

.article-hero .breadcrumb a:hover {
  color: #ffffff;
}

.article-featured {
  margin-top: -42px;
  margin-bottom: 0;
}

.article-featured img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(23, 56, 79, 0.16);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 80px;
  align-items: start;
  padding-top: 78px;
  padding-bottom: 96px;
}

.article-content {
  max-width: 790px;
}

.article-content > * + * {
  margin-top: 1.25em;
}

.article-content h2,
.article-content h3 {
  margin-top: 1.8em;
  margin-bottom: 0.55em;
}

.article-content p,
.article-content li {
  color: #425462;
}

.article-content img {
  height: auto;
}

.article-content a {
  color: var(--atm-blue);
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 0 18px 24px;
  border-left: 3px solid var(--atm-red);
  color: #17384f;
  font-size: 1.05rem;
  font-weight: 650;
}

.article-aside {
  position: sticky;
  top: 110px;
}

.article-cta {
  padding: 28px;
  border-top: 4px solid var(--atm-red);
  background: var(--atm-raised);
}

.article-cta h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.article-cta p {
  color: var(--atm-muted);
  font-size: 0.88rem;
}

.article-cta .button {
  width: 100%;
  margin-bottom: 16px;
}

.article-cta .text-link {
  display: inline-block;
}

.wp-block-image,
.wp-block-gallery,
.wp-block-table {
  margin-bottom: 28px;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 12px 14px;
  border: 1px solid var(--atm-line);
  text-align: left;
}

/* About: editorial section rhythm ---------------------------------------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 82px;
  align-items: center;
}

.about-intro-copy > p:not(.eyebrow):not(.lead) {
  max-width: 630px;
  color: var(--atm-muted);
}

.about-quote {
  max-width: 610px;
  margin: 34px 0 0;
  padding: 22px 0 22px 26px;
  border-left: 3px solid var(--atm-red);
  color: #17384f;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.5;
}

.about-intro-media {
  position: relative;
  margin: 0;
  padding: 0 0 44px 44px;
}

.about-intro-media::before {
  position: absolute;
  top: 38px;
  bottom: 0;
  left: 0;
  width: 64%;
  content: "";
  background: var(--atm-raised);
}

.about-intro-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(23, 56, 79, 0.13);
}

.about-intro-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 12px;
  width: min(360px, 78%);
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  border-top: 3px solid var(--atm-red);
  color: #ffffff;
  background: #17384f;
}

.about-intro-media figcaption span {
  margin-bottom: 5px;
  color: #ff6a65;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.11em;
}

.about-intro-media figcaption strong {
  font-size: 0.92rem;
}

.about-evolution-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 60px;
}

.about-evolution-heading .display-title,
.about-evolution-heading .lead {
  margin-bottom: 0;
}

.evolution-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.evolution-track::before {
  position: absolute;
  top: 22px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--atm-line-strong);
}

.evolution-track li {
  position: relative;
  padding-right: 34px;
}

.evolution-stage {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid var(--atm-blue);
  border-radius: 50%;
  color: var(--atm-blue);
  background: var(--atm-bg);
  font-size: 0.7rem;
  font-weight: 780;
}

.evolution-track li:last-child .evolution-stage {
  border-color: var(--atm-red);
  color: #ffffff;
  background: var(--atm-red);
}

.evolution-track small {
  display: block;
  margin-bottom: 7px;
  color: var(--atm-red);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evolution-track h3 {
  margin-bottom: 9px;
}

.evolution-track p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.86rem;
}

.strength-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
}

.strength-statement {
  position: relative;
  padding: 54px 50px;
  color: #ffffff;
  background: #17384f;
}

.strength-statement::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--atm-red) 0 28%, var(--atm-blue) 28% 100%);
}

.strength-code {
  display: block;
  margin-bottom: 62px;
  color: #94aabd;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.strength-statement h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.strength-statement > p:not(.eyebrow) {
  color: #bdccd6;
}

.strength-statement .button-outline {
  margin-top: 18px;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.strength-list {
  border-top: 1px solid var(--atm-line);
  background: #ffffff;
}

.strength-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 34px;
  border-right: 1px solid var(--atm-line);
  border-bottom: 1px solid var(--atm-line);
}

.strength-list article > span {
  color: var(--atm-red);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.strength-list h3 {
  margin-bottom: 6px;
}

.strength-list p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.88rem;
}

.supply-stage {
  position: relative;
  min-height: 610px;
}

.supply-photo {
  width: 72%;
  height: 560px;
  margin: 0;
}

.supply-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(23, 56, 79, 0.12);
}

.supply-panel {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46%;
  padding: 44px 46px;
  border-top: 4px solid var(--atm-red);
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(23, 56, 79, 0.15);
  transform: translateY(-50%);
}

.supply-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 24px;
}

.supply-options span {
  padding: 7px 10px;
  border: 1px solid var(--atm-line-strong);
  color: #345165;
  background: #f7fafb;
  font-size: 0.76rem;
  font-weight: 650;
}

.supply-note {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--atm-line);
  color: var(--atm-muted);
  font-size: 0.84rem;
}

.commitment-band {
  padding: 88px 0;
  color: #ffffff;
  background: #17384f;
}

.commitment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
  align-items: center;
}

.commitment-intro h2,
.commitment-principles h3 {
  color: #ffffff;
}

.commitment-intro h2 {
  margin-bottom: 18px;
}

.commitment-intro > p:last-child {
  margin-bottom: 0;
  color: #b8c9d4;
}

.commitment-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-principles article {
  min-height: 174px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-principles article > span {
  display: block;
  margin-bottom: 20px;
  color: #ff625d;
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commitment-principles h3 {
  margin-bottom: 7px;
}

.commitment-principles p {
  margin-bottom: 0;
  color: #b8c9d4;
  font-size: 0.85rem;
}

/* Home: varied editorial layouts ----------------------------------------- */
.home-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: end;
}

.home-heading-row .display-title,
.home-heading-row .lead {
  margin-bottom: 0;
}

.home-heading-row .text-link {
  display: inline-block;
  margin-top: 16px;
}

.range-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 230px);
  gap: 18px;
}

.range-tile {
  position: relative;
  grid-column: span 3;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background: #dce7ed;
  text-decoration: none;
}

.range-tile-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.range-tile:nth-child(4) {
  grid-column: span 6;
}

.range-tile::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 35, 51, 0.02) 25%, rgba(13, 35, 51, 0.92) 100%);
}

.range-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.range-tile:hover img {
  transform: scale(1.035);
}

.range-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.range-overlay small {
  margin-bottom: 7px;
  color: #ff625d;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.range-overlay strong {
  font-size: 1.13rem;
  line-height: 1.25;
}

.range-tile-wide .range-overlay strong {
  max-width: 430px;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
}

.range-overlay span {
  margin-top: 5px;
  color: #d8e2e8;
  font-size: 0.84rem;
}

.range-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  margin-top: 24px;
  color: var(--atm-muted);
  font-size: 0.86rem;
}

.range-quick-links > span {
  color: var(--atm-text);
  font-weight: 700;
}

.range-quick-links a {
  color: var(--atm-blue);
  text-underline-offset: 4px;
}

.support-story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 76px;
  align-items: center;
}

.support-photo {
  position: relative;
  margin: 0;
  border-bottom: 5px solid var(--atm-blue);
  box-shadow: 0 22px 55px rgba(23, 56, 79, 0.12);
}

.support-photo::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 74px;
  height: 5px;
  content: "";
  background: var(--atm-red);
}

.support-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.support-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px 18px;
  color: #ffffff;
  background: rgba(16, 43, 62, 0.9);
  font-size: 0.83rem;
}

.support-points {
  margin: 34px 0 30px;
  border-top: 1px solid var(--atm-line);
}

.support-points article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--atm-line);
}

.support-points article > span {
  color: var(--atm-red);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.support-points h3 {
  margin-bottom: 5px;
}

.support-points p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.9rem;
}

.buyer-band {
  padding: 78px 0;
  background: #17384f;
}

.buyer-band-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 76px;
  align-items: center;
}

.buyer-band-intro h2 {
  margin-bottom: 16px;
}

.buyer-band-intro > p:last-child {
  margin-bottom: 0;
  color: #b9cad5;
}

.buyer-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.buyer-types article {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.buyer-types article > span {
  display: block;
  margin-bottom: 18px;
  color: #ff625d;
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buyer-types h3 {
  margin-bottom: 7px;
}

.buyer-types p {
  margin-bottom: 0;
  color: #b9cad5;
  font-size: 0.85rem;
}

.process-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: center;
}

.process-visual {
  position: relative;
  padding: 0 0 58px 34px;
}

.process-visual::before {
  position: absolute;
  top: 34px;
  bottom: 22px;
  left: 0;
  width: 72%;
  content: "";
  background: var(--atm-raised);
}

.process-visual figure,
.process-visual img {
  position: relative;
  width: 100%;
  margin: 0;
}

.process-visual img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(23, 56, 79, 0.12);
}

.process-visual-note {
  position: absolute;
  right: -26px;
  bottom: 0;
  width: min(340px, 80%);
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border-top: 3px solid var(--atm-red);
  color: #ffffff;
  background: #17384f;
}

.process-visual-note span {
  margin-top: 6px;
  color: #bacbd5;
  font-size: 0.82rem;
}

.process-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--atm-line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--atm-line);
}

.process-list li > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--atm-blue);
  font-size: 0.68rem;
  font-weight: 780;
}

.process-list li:nth-child(even) > span {
  background: var(--atm-red);
}

.process-list h3 {
  margin-bottom: 5px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--atm-muted);
  font-size: 0.88rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-contact-box {
  display: flex;
  flex-direction: column;
  margin-top: 36px;
  padding: 24px;
  border-left: 3px solid var(--atm-red);
  background: #ffffff;
}

.faq-contact-box span {
  color: var(--atm-muted);
  font-size: 0.82rem;
}

.faq-contact-box strong {
  margin: 3px 0 14px;
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .section {
    padding: 92px 0;
  }

  .home-page .section {
    padding: 82px 0;
  }
}

/* V7.2 home visual refinement ------------------------------------------- */
.home-page .hero {
  min-height: 545px;
  padding-top: 86px;
  padding-bottom: 64px;
  align-items: center;
}

.home-page .hero::before {
  background: linear-gradient(90deg, rgba(16, 43, 62, 0.9) 0%, rgba(16, 43, 62, 0.66) 48%, rgba(16, 43, 62, 0.16) 100%);
}

.home-page .hero h1 {
  max-width: 710px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.5vw, 3.45rem);
}

.home-page .hero .lead {
  max-width: 650px;
  margin-bottom: 26px;
}

.home-page .hero-points {
  max-width: 770px;
  margin-top: 34px;
}

.home-page .hero-points li {
  padding-top: 14px;
}

.home-page .section-heading {
  margin-bottom: 34px;
}

.home-page .display-title {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.home-page .lead {
  font-size: 1.02rem;
}

.home-range {
  background: #ffffff;
}

.home-support {
  background: #edf3f6;
}

.home-support .support-story {
  gap: 64px;
}

.home-support .support-photo img {
  aspect-ratio: 16 / 11;
}

.home-support .support-points {
  margin-top: 25px;
  margin-bottom: 24px;
}

.home-support .support-points article {
  padding-top: 15px;
  padding-bottom: 15px;
}

.home-buyer-strip {
  padding: 54px 0;
  color: var(--atm-text);
  background: #ffffff;
  border-top: 1px solid var(--atm-line);
  border-bottom: 1px solid var(--atm-line);
}

.home-buyer-strip h2,
.home-buyer-strip h3 {
  color: var(--atm-text);
}

.home-buyer-strip .buyer-band-layout {
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: 52px;
}

.home-buyer-strip .buyer-band-intro > p:last-child {
  color: var(--atm-muted);
}

.home-buyer-strip .buyer-types {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top-color: var(--atm-line);
  border-left: 0;
}

.home-buyer-strip .buyer-types article {
  min-height: 125px;
  padding: 20px 18px;
  border-right: 0;
  border-bottom-color: var(--atm-line);
}

.home-buyer-strip .buyer-types article + article {
  border-left: 1px solid var(--atm-line);
}

.home-buyer-strip .buyer-types article > span {
  margin-bottom: 11px;
  color: var(--atm-red);
}

.home-buyer-strip .buyer-types p {
  color: var(--atm-muted);
}

.home-process {
  background: #f7f9fa;
}

.home-process .process-story {
  gap: 68px;
}

.home-process .process-list {
  margin-top: 25px;
}

.home-process .process-list li {
  padding-top: 14px;
  padding-bottom: 14px;
}

.home-process .process-visual img {
  aspect-ratio: 16 / 11;
}

.home-faq {
  background: #ffffff;
}

.home-faq .faq-layout {
  gap: 68px;
}

.home-faq .faq-item summary {
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-faq .faq-item summary::after {
  top: 18px;
}

.home-featured {
  background: #f7f9fa;
}

.home-featured .atm-products-grid {
  margin-top: 0;
}

.home-featured .atm-product-card-media {
  aspect-ratio: 16 / 11;
}

.home-featured .atm-product-card-body {
  padding: 18px;
}

.home-featured .atm-product-excerpt {
  display: none;
}

.home-page .cta-band {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #17384f;
}

@media (max-width: 1040px) {
  .home-buyer-strip .buyer-band-layout {
    grid-template-columns: 1fr;
  }

  .home-buyer-strip .buyer-types {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page .hero {
    min-height: 520px;
  }

  .home-buyer-strip .buyer-types {
    grid-template-columns: 1fr;
  }

  .home-buyer-strip .buyer-types article + article {
    border-left: 0;
  }
}

/* V8.0.2: balanced two-zone footer. */
.footer-main.footer-main-balanced {
  grid-template-columns: minmax(430px, 1fr) minmax(440px, 0.92fr);
  gap: clamp(78px, 9vw, 144px);
  align-items: start;
  padding-top: 72px;
  padding-bottom: 60px;
}

.footer-main-balanced .footer-company {
  max-width: 570px;
}

.footer-main-balanced .footer-company-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 28px;
  row-gap: 8px;
}

.footer-explore {
  min-width: 0;
  padding-left: clamp(38px, 4vw, 62px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-explore-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-explore-header .footer-title {
  flex: 0 0 auto;
  margin: 0;
}

.footer-explore-header > span {
  color: #738999;
  font-size: 0.72rem;
  text-align: right;
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu-grid a {
  display: block;
  padding: 15px 0 13px;
  color: #b2c1cc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-menu-grid a:hover {
  color: #ffffff;
  border-bottom-color: var(--atm-red);
}

.footer-catalog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: center;
  margin-top: 28px;
  padding: 21px 23px 20px;
  background: rgba(255, 255, 255, 0.035);
  border-top: 2px solid var(--atm-red);
}

.footer-catalog-panel .footer-title {
  margin: 0 0 6px;
}

.footer-catalog-panel p:not(.footer-title) {
  margin: 0;
  color: #8296a5;
  font-size: 0.78rem;
}

.footer-catalog-primary {
  color: #b8d8ed;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.footer-catalog-primary:hover {
  color: #ffffff;
}

.footer-category-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 22px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-category-links a {
  color: #8296a5;
  font-size: 0.72rem;
  text-decoration: none;
}

.footer-category-links a:hover {
  color: #ffffff;
}

@media (max-width: 1040px) {
  .footer-main.footer-main-balanced {
    grid-template-columns: minmax(350px, 1fr) minmax(390px, 0.95fr);
    gap: 48px;
  }

  .footer-explore {
    padding-left: 34px;
  }
}

@media (max-width: 800px) {
  .footer-main.footer-main-balanced {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-explore {
    padding-top: 38px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .footer-main-balanced .footer-company-contact {
    grid-template-columns: 1fr;
  }

  .footer-explore-header {
    display: block;
  }

  .footer-explore-header > span {
    display: block;
    margin-top: 7px;
    text-align: left;
  }

  .footer-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-catalog-panel {
    grid-template-columns: 1fr;
  }

  .footer-catalog-primary {
    white-space: normal;
  }

  .footer-category-links {
    grid-template-columns: 1fr;
  }
}

/* V8.0.1: compact supporting links and unified company/contact footer. */
.footer-main.footer-main-compact {
  grid-template-columns: minmax(420px, 1.65fr) minmax(150px, 0.52fr) minmax(190px, 0.68fr);
  gap: clamp(52px, 7vw, 110px);
}

.footer-company {
  max-width: 590px;
}

.footer-company-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  max-width: 570px;
  margin-top: 18px;
}

.footer-company-contact a,
.footer-company-contact span {
  color: #9fb0bd;
  font-size: 0.8rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-company-contact a:hover {
  color: #ffffff;
}

.footer-legal.footer-legal-compact {
  justify-content: flex-start;
  gap: 7px 16px;
  margin-top: 17px;
  color: #738999;
  font-size: 0.7rem;
}

@media (max-width: 1040px) {
  .footer-main.footer-main-compact {
    grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(140px, 0.7fr));
    gap: 44px;
  }
}

@media (max-width: 780px) {
  .footer-main.footer-main-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main-compact .footer-company {
    max-width: none;
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-main.footer-main-compact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-main-compact .footer-company {
    grid-column: auto;
  }

  .footer-company-contact {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .site-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
  }

  body.nav-open .site-nav {
    position: fixed;
    z-index: 49;
    top: 111px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 30px 24px;
    border-top: 1px solid var(--atm-line);
    background: var(--atm-bg);
  }

  body.nav-open .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  body.nav-open .nav-link {
    padding: 18px 0;
    border-bottom: 1px solid var(--atm-line);
    font-size: 1rem;
  }

  body.nav-open .nav-link::after {
    display: none;
  }

  .category-grid,
  .feature-grid,
  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-catalog-layout {
    grid-template-columns: 1fr;
  }

  .product-filters {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-item:nth-child(3) {
    border-left: 0;
  }

  .feature-item:nth-child(n + 3) {
    border-top: 1px solid var(--atm-line);
  }

  .split,
  .contact-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .segment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-row {
    grid-template-columns: 70px minmax(200px, 0.7fr) minmax(0, 1fr);
  }

  .catalog-row .text-link {
    grid-column: 2 / -1;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-heading-row,
  .support-story,
  .buyer-band-layout,
  .process-story,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .range-mosaic {
    grid-template-rows: repeat(2, 210px);
  }

  .support-photo {
    max-width: 760px;
  }

  .process-visual {
    max-width: 720px;
  }

  .faq-layout .faq-list {
    max-width: none;
  }

  .about-intro-grid,
  .about-evolution-heading,
  .strength-layout,
  .commitment-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-intro-media {
    max-width: 760px;
  }

  .about-evolution-heading {
    margin-bottom: 48px;
  }

  .evolution-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 28px;
  }

  .evolution-track::before {
    display: none;
  }

  .strength-statement {
    padding: 46px;
  }

  .strength-code {
    margin-bottom: 38px;
  }

  .supply-stage {
    min-height: 0;
    display: grid;
  }

  .supply-photo {
    width: 100%;
    height: 460px;
  }

  .supply-panel {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 48px);
    margin: -92px 0 0 auto;
    transform: none;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-aside {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --atm-gutter: 32px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner > span,
  .utility-links a:first-child {
    display: none;
  }

  .brand-name {
    display: none;
  }

  body.nav-open .site-nav {
    top: 111px;
  }

  .hero {
    min-height: 560px;
    padding: 90px 0 58px;
  }

  .hero-points,
  .category-grid,
  .feature-grid,
  .product-showcase-grid,
  .segment-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-filters {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    padding-top: 13px;
  }

  .feature-item,
  .feature-item + .feature-item,
  .feature-item:nth-child(3) {
    border-top: 1px solid var(--atm-line);
    border-left: 0;
  }

  .segment-item,
  .segment-item + .segment-item,
  .segment-item:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .split-media,
  .split-media img {
    min-height: 320px;
  }

  .catalog-row {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .catalog-row p,
  .catalog-row .text-link {
    grid-column: 2;
  }

  .form-panel {
    padding: 24px 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .confirmation-panel {
    padding: 30px 0 30px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  body.nav-open .site-nav {
    background: #17384f;
  }

  .range-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .range-tile,
  .range-tile-wide,
  .range-tile:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .range-tile-wide {
    min-height: 340px;
  }

  .range-quick-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .buyer-types {
    grid-template-columns: 1fr;
  }

  .process-visual {
    padding: 0 0 72px 18px;
  }

  .process-visual-note {
    right: -8px;
    width: 88%;
  }

  .about-intro-media {
    padding: 0 0 50px 18px;
  }

  .about-intro-media figcaption {
    right: 10px;
    width: 86%;
  }

  .evolution-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .evolution-track::before {
    top: 20px;
    bottom: 24px;
    left: 21px;
    width: 1px;
    height: auto;
    display: block;
  }

  .evolution-track li {
    min-height: 126px;
    padding: 0 0 28px 68px;
  }

  .evolution-stage {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .strength-statement,
  .supply-panel {
    padding: 30px 26px;
  }

  .strength-list article {
    padding: 22px 20px;
  }

  .supply-photo {
    height: 330px;
  }

  .supply-panel {
    width: calc(100% - 20px);
    margin-top: -52px;
  }

  .commitment-band {
    padding: 74px 0;
  }

  .commitment-principles {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 54px 0 68px;
  }

  .article-shell {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .article-card-body,
  .article-cta,
  .empty-state {
    padding: 22px;
  }
}

/* V7.3: larger, calmer home-page composition ---------------------------- */
.home-page .container {
  width: min(1340px, calc(100% - var(--atm-gutter)));
}

.home-page .hero {
  min-height: 620px;
  padding-top: 100px;
  padding-bottom: 78px;
}

.home-page .hero-copy {
  max-width: 900px;
}

.home-page .hero h1 {
  max-width: 840px;
  font-size: clamp(2.8rem, 5.1vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-page .hero .lead {
  max-width: 720px;
  font-size: 1.15rem;
}

.home-page .home-heading-row {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.58fr);
  gap: 96px;
}

.home-page .home-heading-row .display-title {
  max-width: 820px;
  font-size: clamp(2.25rem, 3.7vw, 3.25rem);
  line-height: 1.08;
}

.home-page .range-mosaic {
  grid-template-rows: repeat(2, 260px);
  gap: 22px;
}

.home-page .range-overlay {
  padding: 30px;
}

.home-page .range-overlay strong {
  font-size: 1.35rem;
}

.home-page .range-tile-wide .range-overlay strong {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.home-support {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background: #ffffff;
}

.home-support .support-story {
  grid-template-columns: minmax(0, 1.22fr) minmax(410px, 0.78fr);
  gap: 88px;
}

.home-support .support-photo {
  border: 0;
  box-shadow: none;
}

.home-support .support-photo::before,
.home-support .support-photo figcaption {
  display: none;
}

.home-support .support-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-support .support-copy .display-title {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 3.8vw, 3.35rem);
  line-height: 1.06;
}

.home-support .support-copy .lead {
  max-width: 520px;
  font-size: 1.1rem;
}

.home-support .support-points {
  margin: 34px 0 32px;
}

.home-support .support-points article {
  display: block;
  padding: 20px 0;
}

.home-support .support-points h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.home-support .support-points p {
  max-width: 480px;
  font-size: 0.95rem;
}

.home-process {
  padding-top: 82px !important;
  padding-bottom: 88px !important;
  background: #eef4f7;
}

.home-process .process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 100px;
  align-items: end;
  margin-bottom: 54px;
}

.home-process .process-heading .display-title,
.home-process .process-heading .lead {
  margin-bottom: 0;
}

.home-process .process-heading .display-title {
  max-width: 840px;
  font-size: clamp(2.35rem, 3.7vw, 3.2rem);
  line-height: 1.07;
}

.process-list-horizontal {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--atm-line-strong);
}

.process-list-horizontal::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 25%;
  height: 3px;
  content: "";
  background: var(--atm-red);
}

.process-list-horizontal li {
  position: relative;
  display: block;
  padding: 34px 32px 0 0;
  border: 0;
}

.process-list-horizontal li + li {
  padding-left: 32px;
  border-left: 1px solid var(--atm-line);
}

.process-list-horizontal li > span {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 44px;
  color: var(--atm-red);
  background: transparent !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.process-list-horizontal h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.process-list-horizontal p {
  max-width: 250px;
  font-size: 0.92rem;
}

.home-page .cta-band .cta-grid h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
}

.reality-gallery {
  padding-top: 94px !important;
  padding-bottom: 90px !important;
  background: #ffffff;
}

.reality-heading,
.compact-faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.55fr);
  gap: 96px;
  align-items: end;
  margin-bottom: 46px;
}

.reality-heading .display-title,
.reality-heading .lead,
.compact-faq-heading .display-title,
.compact-faq-heading .lead {
  margin-bottom: 0;
}

.reality-heading .display-title,
.compact-faq-heading .display-title {
  max-width: 760px;
  font-size: clamp(2.25rem, 3.6vw, 3.15rem);
  line-height: 1.07;
}

.reality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, 275px);
  gap: 20px;
}

.reality-item {
  position: relative;
  min-width: 0;
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  background: #dce7ed;
}

.reality-item-wide {
  grid-row: 1 / span 2;
}

.reality-item::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(12, 36, 52, 0.84) 100%);
}

.reality-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.reality-item:hover img {
  transform: scale(1.025);
}

.reality-item figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #ffffff;
}

.reality-item figcaption span {
  margin-bottom: 7px;
  color: #ff625d;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reality-item figcaption strong {
  max-width: 560px;
  font-size: 1.23rem;
  line-height: 1.25;
}

.reality-item-wide figcaption strong {
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.reality-note {
  max-width: 900px;
  margin: 20px 0 0;
  color: var(--atm-muted);
  font-size: 0.8rem;
}

.compact-faq {
  padding-top: 78px !important;
  padding-bottom: 80px !important;
  border-top: 1px solid var(--atm-line);
  background: #f4f7f9;
}

.compact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  border-top: 1px solid var(--atm-line-strong);
}

.compact-faq .faq-item summary {
  padding: 20px 42px 20px 0;
}

.compact-faq .faq-item summary::after {
  top: 20px;
}

.compact-faq .faq-answer {
  padding-bottom: 20px;
}

@media (max-width: 1040px) {
  .home-support .support-story,
  .home-process .process-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-list-horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list-horizontal li:nth-child(3) {
    border-left: 0;
  }

  .reality-heading,
  .compact-faq-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .reality-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, 230px);
  }
}

@media (max-width: 680px) {
  .home-page .hero {
    min-height: 560px;
  }

  .home-page .hero h1 {
    font-size: 2.65rem;
  }

  .home-support {
    padding-top: 68px !important;
    padding-bottom: 68px !important;
  }

  .home-support .support-copy .display-title,
  .home-process .process-heading .display-title {
    font-size: 2.25rem;
  }

  .process-list-horizontal {
    grid-template-columns: 1fr;
  }

  .process-list-horizontal li,
  .process-list-horizontal li + li {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--atm-line);
  }

  .process-list-horizontal li > span {
    margin-bottom: 18px;
  }

  .reality-gallery,
  .compact-faq {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .reality-grid,
  .compact-faq-grid {
    grid-template-columns: 1fr;
  }

  .reality-grid {
    grid-template-rows: none;
  }

  .reality-item,
  .reality-item-wide {
    grid-row: auto;
    min-height: 280px;
  }

  .reality-item-wide {
    min-height: 380px;
  }
}

/* V7.5: documentary trust strip, visually distinct from product mosaic --- */
.reality-gallery {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #eef3f6;
}

.reality-band {
  display: grid;
  grid-template-columns: minmax(285px, 0.72fr) minmax(0, 2.28fr);
  align-items: stretch;
}

.reality-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 46px;
  color: #ffffff;
  background: #17384f;
}

.reality-intro h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.reality-intro > p:not(.eyebrow) {
  margin-bottom: 26px;
  color: #bfd0da;
  font-size: 0.94rem;
}

.reality-intro .text-link {
  margin-top: auto;
  color: #ffffff;
}

.reality-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 0;
  background: #ffffff;
}

.reality-grid-horizontal .reality-item,
.reality-grid-horizontal .reality-item-wide {
  min-height: 0;
  display: grid;
  grid-template-rows: 250px auto;
  overflow: visible;
  background: #ffffff;
}

.reality-grid-horizontal .reality-item + .reality-item {
  border-left: 1px solid var(--atm-line);
}

.reality-grid-horizontal .reality-item::after {
  display: none;
}

.reality-grid-horizontal .reality-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.reality-grid-horizontal .reality-item figcaption {
  position: static;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 30px;
  color: var(--atm-text);
  background: #ffffff;
}

.reality-grid-horizontal .reality-item figcaption span {
  margin-bottom: 10px;
  color: var(--atm-red);
}

.reality-grid-horizontal .reality-item figcaption strong,
.reality-grid-horizontal .reality-item-wide figcaption strong {
  margin-bottom: 8px;
  color: var(--atm-text);
  font-size: 1.08rem;
  line-height: 1.25;
}

.reality-grid-horizontal .reality-item figcaption small {
  color: var(--atm-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.reality-note {
  max-width: none;
  margin: 0;
  padding: 15px 0 17px;
}

@media (max-width: 1040px) {
  .reality-band {
    grid-template-columns: 1fr;
  }

  .reality-intro {
    padding: 44px 38px;
  }

  .reality-intro .text-link {
    margin-top: 0;
  }

  .reality-grid-horizontal .reality-item {
    grid-template-rows: 220px auto;
  }

  .reality-grid-horizontal .reality-item img {
    height: 220px;
  }
}

@media (max-width: 680px) {
  .reality-grid-horizontal {
    grid-template-columns: 1fr;
  }

  .reality-grid-horizontal .reality-item,
  .reality-grid-horizontal .reality-item-wide {
    grid-template-rows: 260px auto;
    min-height: 0;
  }

  .reality-grid-horizontal .reality-item img {
    height: 260px;
  }

  .reality-grid-horizontal .reality-item + .reality-item {
    border-top: 1px solid var(--atm-line);
    border-left: 0;
  }
}

/* V7.6: full-width reality photo carousel ------------------------------- */
.reality-gallery {
  padding: 78px 0 22px !important;
  background: #ffffff;
}

.reality-gallery-heading {
  margin-bottom: 34px;
}

.reality-gallery-heading .display-title {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 3.7vw, 3.25rem);
  line-height: 1.07;
}

.reality-slider {
  position: relative;
  width: 100%;
  background: #dbe5ea;
}

.reality-track {
  position: relative;
  height: clamp(480px, 57vw, 760px);
  overflow: hidden;
}

.reality-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.reality-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.reality-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(11, 35, 51, 0.72) 100%);
}

.reality-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reality-slide figcaption {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1340px) / 2));
  bottom: 54px;
  left: max(28px, calc((100vw - 1340px) / 2));
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.reality-slide figcaption span {
  margin-bottom: 7px;
  color: #ff625d;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reality-slide figcaption strong {
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.reality-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(16, 43, 62, 0.48);
  font-size: 1.25rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.reality-arrow:hover {
  background: rgba(16, 43, 62, 0.82);
}

.reality-arrow-prev {
  left: 28px;
}

.reality-arrow-next {
  right: 28px;
}

.reality-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.reality-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.reality-dots button.is-active {
  background: var(--atm-red);
}

.reality-gallery .reality-note {
  padding-top: 14px;
  padding-bottom: 0;
}

@media (max-width: 680px) {
  .reality-gallery {
    padding-top: 58px !important;
  }

  .reality-track {
    height: 440px;
  }

  .reality-arrow {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .reality-arrow-prev {
    left: 18px;
  }

  .reality-arrow-next {
    right: 18px;
  }

  .reality-slide figcaption {
    right: 22px;
    bottom: 78px;
    left: 22px;
  }
}

/* V7.8: quiet documentary photo strip, with the central image in focus. */
.reality-gallery {
  padding: 78px 0 64px !important;
  background: #ffffff;
}

.reality-gallery-heading {
  display: block;
  margin-bottom: 24px;
}

.reality-gallery-heading .eyebrow {
  margin-bottom: 9px;
}

.reality-gallery-heading .display-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.1rem, 3.5vw, 3.35rem);
}

.reality-mosaic-slider {
  width: 100%;
  background: transparent;
}

.reality-mosaic {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.reality-card {
  position: absolute;
  top: 60px;
  width: calc(25% - 12px);
  height: 380px;
  margin: 0;
  overflow: hidden;
  background: #e4ebef;
  cursor: pointer;
  transition: top 420ms ease, left 420ms ease, width 420ms ease, height 420ms ease, opacity 420ms ease;
}

.reality-card[data-position="left"] {
  left: 0;
}

.reality-card[data-position="center"] {
  z-index: 1;
  top: 0;
  left: calc(25% + 4px);
  width: calc(50% - 8px);
  height: 500px;
  cursor: default;
}

.reality-card[data-position="right"] {
  left: calc(75% + 12px);
}

.reality-card[data-position="hidden"] {
  z-index: 0;
  top: 60px;
  left: 50%;
  width: 0;
  height: 380px;
  opacity: 0;
  pointer-events: none;
}

.reality-mosaic.has-one .reality-card[data-position="center"] {
  left: 10%;
  width: 80%;
}

.reality-mosaic.has-two .reality-card[data-position="center"] {
  left: 7%;
  width: 60%;
}

.reality-mosaic.has-two .reality-card[data-position="right"],
.reality-mosaic.has-two .reality-card[data-position="left"] {
  left: calc(67% + 16px);
  width: calc(33% - 16px);
}

.reality-card::after {
  content: none;
}

.reality-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reality-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 22px;
}

.reality-controls .reality-arrow {
  position: static;
  width: 42px;
  height: 42px;
  color: var(--atm-text);
  background: #ffffff;
  border-color: var(--atm-line-strong);
  transform: none;
}

.reality-controls .reality-arrow:hover {
  color: #ffffff;
  background: var(--atm-blue);
}

.reality-controls .reality-dots {
  position: static;
}

.reality-controls .reality-dots button {
  background: var(--atm-line-strong);
}

.reality-controls .reality-dots button.is-active {
  background: var(--atm-red);
}

@media (max-width: 1040px) {
  .reality-mosaic {
    height: 420px;
  }

  .reality-card {
    top: 50px;
    width: calc(24% - 8px);
    height: 320px;
  }

  .reality-card[data-position="center"] {
    left: calc(24% + 8px);
    width: calc(52% - 16px);
    height: 420px;
  }

  .reality-card[data-position="right"] {
    left: calc(76% + 8px);
  }

  .reality-card[data-position="hidden"] {
    top: 50px;
    left: 50%;
    width: 0;
    height: 320px;
  }
}

@media (max-width: 680px) {
  .reality-gallery {
    padding: 58px 0 48px !important;
  }

  .reality-gallery-heading {
    margin-bottom: 18px;
  }

  .reality-gallery-heading .display-title {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .reality-mosaic {
    height: 310px;
  }

  .reality-card {
    top: 42px;
    width: 20%;
    height: 226px;
  }

  .reality-card[data-position="center"] {
    left: calc(20% + 8px);
    width: calc(60% - 16px);
    height: 310px;
  }

  .reality-card[data-position="right"] {
    left: 80%;
  }

  .reality-card[data-position="hidden"] {
    top: 42px;
    left: 50%;
    width: 0;
    height: 226px;
  }

  .reality-mosaic.has-one .reality-card[data-position="center"] {
    left: 0;
    width: 100%;
  }

  .reality-mosaic.has-two .reality-card[data-position="center"] {
    left: 0;
    width: calc(70% - 8px);
  }

  .reality-mosaic.has-two .reality-card[data-position="right"],
  .reality-mosaic.has-two .reality-card[data-position="left"] {
    left: calc(70% + 8px);
    width: calc(30% - 8px);
  }

  .reality-controls {
    padding-top: 16px;
  }

  .reality-controls .reality-arrow {
    width: 38px;
    height: 38px;
  }
}

/* V7.9: expandable gallery, legal links and global RFQ dialog. */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #ffffff;
}

.mobile-nav-rfq {
  display: none;
}

body.rfq-dialog-open {
  overflow: hidden;
}

.rfq-dialog {
  width: min(880px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--atm-text);
  background: #ffffff;
  border: 0;
  box-shadow: 0 28px 80px rgba(8, 30, 45, 0.28);
}

.rfq-dialog::backdrop {
  background: rgba(8, 29, 43, 0.72);
  backdrop-filter: blur(3px);
}

.rfq-dialog-panel {
  padding: 36px 38px 38px;
  border-top: 4px solid var(--atm-red);
}

.rfq-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.rfq-dialog-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.rfq-dialog-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--atm-text);
  background: #ffffff;
  border: 1px solid var(--atm-line-strong);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.rfq-dialog-close:hover {
  color: #ffffff;
  background: var(--atm-blue);
  border-color: var(--atm-blue);
}

.rfq-dialog-intro {
  max-width: 700px;
  margin: 18px 0 24px;
  color: var(--atm-muted);
}

.rfq-modal-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.rfq-modal-form textarea {
  min-height: 116px;
}

.rfq-modal-actions {
  align-items: center;
  margin-top: 20px;
}

.rfq-modal-actions .form-note {
  max-width: 520px;
  margin: 0;
}

.rfq-modal-actions .form-note a {
  color: var(--atm-blue);
}

@media (max-width: 1040px) {
  .footer-bottom {
    gap: 18px;
  }

  body.nav-open .mobile-nav-rfq {
    display: inline-flex;
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .rfq-dialog {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
  }

  .rfq-dialog-panel {
    padding: 25px 20px 26px;
  }

  .rfq-dialog-header h2 {
    font-size: 2rem;
  }

  .rfq-dialog-close {
    width: 38px;
    height: 38px;
  }

  .rfq-modal-actions {
    align-items: stretch;
  }

  .rfq-modal-actions .button {
    width: 100%;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-link::after,
  .button,
  .reality-slide,
  .reality-card {
    transition: none;
  }
}

/* V8.0: standard landscape reality gallery with softened side previews. */
.reality-mosaic {
  height: auto;
  aspect-ratio: 32 / 9;
}

.reality-card,
.reality-card[data-position="left"],
.reality-card[data-position="right"],
.reality-card[data-position="hidden"] {
  top: 25%;
  width: calc(25% - 12px);
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 0.6;
  filter: blur(1.6px) brightness(0.78) saturate(0.72);
  transform: scale(0.96);
  transition: top 420ms ease, left 420ms ease, width 420ms ease, opacity 420ms ease, filter 420ms ease, transform 420ms ease;
}

.reality-card[data-position="left"] {
  left: 0;
}

.reality-card[data-position="center"] {
  z-index: 2;
  top: 0;
  left: calc(25% + 4px);
  width: calc(50% - 8px);
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  filter: none;
  transform: none;
}

.reality-card[data-position="right"] {
  left: calc(75% + 12px);
}

.reality-card[data-position="hidden"] {
  left: 50%;
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.reality-mosaic.has-one {
  aspect-ratio: 16 / 9;
}

.reality-mosaic.has-one .reality-card[data-position="center"] {
  left: 0;
  width: 100%;
}

.reality-mosaic.has-two {
  aspect-ratio: 25 / 9;
}

.reality-mosaic.has-two .reality-card[data-position="center"] {
  left: 0;
  width: 64%;
}

.reality-mosaic.has-two .reality-card[data-position="right"],
.reality-mosaic.has-two .reality-card[data-position="left"] {
  top: 24%;
  left: 66%;
  width: 34%;
}

@media (max-width: 680px) {
  .reality-mosaic,
  .reality-mosaic.has-one,
  .reality-mosaic.has-two {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .reality-card[data-position="center"],
  .reality-mosaic.has-one .reality-card[data-position="center"],
  .reality-mosaic.has-two .reality-card[data-position="center"] {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .reality-card[data-position="left"],
  .reality-card[data-position="right"],
  .reality-mosaic.has-two .reality-card[data-position="left"],
  .reality-mosaic.has-two .reality-card[data-position="right"] {
    top: 25%;
    left: 50%;
    width: 0;
    opacity: 0;
    pointer-events: none;
  }
}

/* V8.0.3: traditional four-column footer and compact product matching band. */
.footer-main.footer-main-traditional {
  grid-template-columns: minmax(280px, 1.15fr) minmax(115px, 0.48fr) minmax(250px, 1fr) minmax(170px, 0.68fr);
  gap: clamp(38px, 4.2vw, 66px);
  align-items: start;
  padding-top: 64px;
  padding-bottom: 52px;
}

.footer-main-traditional .footer-company {
  max-width: 370px;
}

.footer-main-traditional .footer-intro {
  max-width: 350px;
}

.footer-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.footer-product-list li + li {
  margin-top: 0;
}

.section[aria-labelledby="matching-title"] {
  padding-top: 54px;
  padding-bottom: 54px;
}

.section[aria-labelledby="matching-title"] .split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 58px;
}

.section[aria-labelledby="matching-title"] .display-title {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.section[aria-labelledby="matching-title"] .lead {
  font-size: 1rem;
  line-height: 1.62;
}

.section[aria-labelledby="matching-title"] .lined-list {
  margin-top: 21px;
}

.section[aria-labelledby="matching-title"] .lined-item {
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 13px 0;
}

.section[aria-labelledby="matching-title"] .lined-item h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.section[aria-labelledby="matching-title"] .lined-item p {
  font-size: 0.84rem;
}

.section[aria-labelledby="matching-title"] > .split > div > .button {
  margin-top: 18px;
}

.section[aria-labelledby="matching-title"] .split-media,
.section[aria-labelledby="matching-title"] .split-media img {
  min-height: 0;
  height: 350px;
}

@media (max-width: 1040px) {
  .footer-main.footer-main-traditional {
    grid-template-columns: minmax(260px, 1fr) minmax(110px, 0.5fr) minmax(220px, 0.9fr) minmax(160px, 0.7fr);
    gap: 32px;
  }

  .section[aria-labelledby="matching-title"] .split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .footer-main.footer-main-traditional {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 54px;
  }

  .section[aria-labelledby="matching-title"] .split {
    grid-template-columns: 1fr;
  }

  .section[aria-labelledby="matching-title"] .split-media,
  .section[aria-labelledby="matching-title"] .split-media img {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .footer-main.footer-main-traditional {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-product-list {
    grid-template-columns: 1fr;
  }

  .section[aria-labelledby="matching-title"] {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section[aria-labelledby="matching-title"] .split-media,
  .section[aria-labelledby="matching-title"] .split-media img {
    height: 240px;
  }
}
