:root {
  --ink: #211827;
  --paper: #f5f1e9;
  --surface: #fffdfa;
  --petal: #8b3f64;
  --petal-dark: #64304a;
  --petal-soft: #ead7df;
  --mineral: #376b61;
  --mineral-soft: #dce8e3;
  --copper: #c66b3d;
  --line: #d8d0c5;
  --muted: #706a72;
  --white: #ffffff;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(33, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, Inter, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(198, 107, 61, 0.55);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.topline {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.topline-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(216, 208, 197, 0.85);
  background: rgba(245, 241, 233, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.brand-word {
  line-height: 1;
}

.brand-word small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lotus-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.lotus-mark i {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 12px;
  color: #4f4853;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--petal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--petal);
}

.button-primary:hover {
  background: var(--petal-dark);
}

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

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

.button-light {
  color: var(--ink);
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--petal);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 720;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
}

.lead {
  max-width: 690px;
  color: #5f5962;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
  padding-block: 64px 74px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 860px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mineral);
}

.hero-collage {
  position: relative;
  min-height: 500px;
}

.hero-photo-main {
  position: absolute;
  inset: 0 0 74px 52px;
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  padding: 22px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product-cutout {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 0;
  width: 170px;
  height: 330px;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(216, 208, 197, 0.9);
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(33, 24, 39, 0.16);
}

.hero-product-cutout img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.hero-media-label {
  color: #4f4853;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-media-label span {
  display: block;
  margin-bottom: 3px;
  color: var(--petal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero-photo-main .hero-media-label {
  display: none;
}

.hero-dossier {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 28px;
  width: 280px;
  padding: 22px;
  color: var(--white);
  background: var(--petal);
  box-shadow: 0 20px 44px rgba(99, 47, 73, 0.3);
}

.hero-dossier small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-dossier strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
}

.section {
  padding-block: clamp(78px, 10vw, 132px);
  border-bottom: 1px solid var(--line);
}

.section-white {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  max-width: 850px;
  margin-bottom: 54px;
}

.section-head p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
}

.section-dark .section-head p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

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

.role-panel {
  min-height: 320px;
  padding: clamp(34px, 5vw, 62px);
}

.role-panel + .role-panel {
  border-left: 1px solid var(--line);
}

.role-number,
.chapter-number,
.step-number {
  display: block;
  margin-bottom: 52px;
  color: var(--petal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.role-panel p {
  max-width: 520px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--petal);
  font-size: 14px;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.chapters {
  padding: 0;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 680px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.chapter:nth-child(even) .chapter-media {
  order: 2;
}

.chapter-media {
  min-height: 520px;
  overflow: hidden;
  background: #e8e4dd;
}

.chapter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter-media.contain {
  display: grid;
  place-items: center;
  padding: clamp(36px, 7vw, 90px);
  background: #eef1ef;
}

.chapter-media.contain img {
  max-height: 530px;
  object-fit: contain;
}

.chapter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 112px);
}

.chapter-content p {
  max-width: 600px;
  color: var(--muted);
  font-size: 19px;
}

.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 30px;
}

.chapter-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step {
  min-height: 290px;
  padding: 34px 28px;
}

.process-step + .process-step {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step h3 {
  font-size: 21px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.process-step .step-number {
  color: #d79bb2;
}

.cta-band {
  padding-block: 78px;
  color: var(--white);
  background: var(--petal);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-grid h2 {
  max-width: 820px;
  margin-bottom: 12px;
}

.cta-grid p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  min-height: 580px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 64px;
  padding-block: 58px 68px;
}

.page-hero h1 {
  font-size: clamp(38px, 4vw, 54px);
}

.page-hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.page-hero-media.contain {
  display: grid;
  place-items: center;
  padding: 44px;
  background: #eef1ef;
}

.page-hero-media.contain img {
  max-height: 500px;
  min-height: 0;
  object-fit: contain;
}

.page-hero.meril-hero {
  background: linear-gradient(125deg, #f5f1e9 0%, #efe4e9 100%);
}

.page-hero.sinapi-hero {
  background: linear-gradient(125deg, #f5f1e9 0%, #dce8e3 100%);
}

.page-hero.geister-hero {
  color: var(--white);
  background: #16151a;
}

.geister-hero .lead {
  color: rgba(255, 255, 255, 0.66);
}

.geister-hero .eyebrow {
  color: #d79bb2;
}

.crumbs {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.crumbs a:hover {
  color: var(--petal);
}

.geister-hero .crumbs {
  color: rgba(255, 255, 255, 0.58);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 8vw, 110px);
}

.product-intro-grid > p {
  color: var(--muted);
  font-size: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-card-media {
  height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background: #eeeae3;
}

.product-card-media.photo {
  padding: 0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-media.photo img {
  object-fit: cover;
}

.product-card-media.contain-media {
  padding: 20px;
  background: #f5f2ed;
}

.product-card-media.contain-media img {
  object-fit: contain;
}

.myval-panel {
  position: relative;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--petal-dark), var(--petal) 58%, #b97391);
}

.myval-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 24px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.myval-panel small,
.myval-panel strong,
.myval-panel span {
  position: relative;
  z-index: 1;
}

.myval-panel small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.myval-panel strong {
  margin-block: 6px 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.myval-panel span {
  font-size: 19px;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.product-card-body small {
  margin-bottom: 12px;
  color: var(--petal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card-body h3 {
  font-size: 25px;
}

.product-card-body p {
  color: var(--muted);
  font-size: 15px;
}

.product-card-body .text-link {
  margin-top: auto;
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row strong {
  font-size: 15px;
}

.spec-row span {
  color: var(--muted);
}

.notice {
  margin-top: 36px;
  padding: 22px 24px;
  border-left: 3px solid var(--copper);
  color: var(--muted);
  background: rgba(198, 107, 61, 0.08);
  font-size: 14px;
}

.procurement-hero {
  padding-block: 70px 80px;
  border-bottom: 1px solid var(--line);
}

.procurement-hero h1 {
  max-width: 980px;
}

.timeline {
  counter-reset: steps;
  border-top: 1px solid var(--line);
}

.timeline-item {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item::before {
  content: "0" counter(steps);
  color: var(--petal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.timeline-item p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(50px, 8vw, 110px);
}

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

.checklist li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mineral);
}

.request-form {
  padding: clamp(30px, 5vw, 50px);
  background: var(--surface);
  border: 1px solid var(--line);
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

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

.field label {
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 100px);
}

.contact-card {
  padding: clamp(34px, 6vw, 64px);
  color: var(--white);
  background: var(--ink);
}

.contact-card a {
  display: block;
  margin: 14px 0;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 680;
  line-height: 1.25;
}

.contact-card a:hover {
  color: #d79bb2;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-hours h3 {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hours dl {
  margin: 0;
}

.contact-hours dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.contact-hours dt {
  color: rgba(255, 255, 255, 0.72);
}

.contact-hours dd {
  margin: 0;
  color: var(--white);
  font-weight: 750;
  white-space: nowrap;
}

.legal-list {
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
  font-weight: 650;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin-top: 58px;
  font-size: 34px;
}

.prose h3 {
  margin-top: 34px;
  font-size: 24px;
}

.prose p,
.prose li {
  color: #5f5962;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #18131b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 0.85fr;
  gap: 48px;
  padding-block: 70px 58px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 390px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 10px 0;
  font-size: 14px;
}

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

.footer-col .footer-hours {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-open .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 82px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px 20px 150px;
    background: var(--paper);
    overflow-y: auto;
  }

  .menu-open .nav-actions {
    position: fixed;
    z-index: 102;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-actions .phone-link,
  .menu-open .nav-actions .button {
    flex: 1;
    text-align: center;
  }

  .menu-open .main-nav a {
    padding: 17px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

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

  .hero-grid {
    padding-top: 72px;
  }

  .hero-collage {
    min-height: 620px;
  }

  .page-hero-grid {
    gap: 40px;
  }

  .page-hero-media {
    min-height: 440px;
  }

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

  .process-step:nth-child(3) {
    border-left: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .product-grid > .product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .request-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topline-inner {
    min-height: 32px;
    justify-content: center;
  }

  .topline-inner span:last-child {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-word small {
    display: none;
  }

  .menu-open .main-nav {
    height: calc(100dvh - 72px);
  }

  .menu-open .nav-actions {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .page-hero h1,
  .procurement-hero h1 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 54px 64px;
  }

  .hero-collage {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "instrument"
      "drain";
    gap: 14px;
  }

  .hero-photo-main {
    position: relative;
    inset: auto;
    grid-area: instrument;
    aspect-ratio: 1 / 1;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px;
  }

  .hero-photo-main .hero-media-label {
    display: block;
  }

  .hero-product-cutout {
    position: relative;
    left: auto;
    bottom: auto;
    grid-area: drain;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 18px 16px 14px;
  }

  .hero-dossier {
    display: none;
  }

  .roles-grid,
  .chapter,
  .product-intro-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .role-panel {
    min-height: auto;
  }

  .role-panel + .role-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .role-number,
  .chapter-number {
    margin-bottom: 30px;
  }

  .chapter {
    min-height: auto;
  }

  .chapter:nth-child(even) .chapter-media {
    order: 0;
  }

  .chapter-media {
    min-height: 400px;
  }

  .chapter-content {
    padding: 52px 24px 62px;
  }

  .process-grid,
  .product-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-grid > .product-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .process-step + .process-step,
  .process-step:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .process-step {
    min-height: 230px;
  }

  .page-hero-grid {
    min-height: auto;
    padding-block: 48px 64px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 360px;
  }

  .page-hero-media.contain {
    padding: 28px;
  }

  .product-card {
    min-height: auto;
  }

  .spec-row,
  .timeline-item,
  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .request-form {
    padding: 26px 18px;
  }

  .contact-card {
    padding: 42px 24px;
  }

  .footer-grid {
    padding-block: 58px 42px;
  }

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
