@font-face {
  font-family: "Spartan";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Spartan-400.ttf") format("truetype");
}

@font-face {
  font-family: "Spartan";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Spartan-300.ttf") format("truetype");
}

@font-face {
  font-family: "Spartan";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Spartan-500.ttf") format("truetype");
}

:root {
  --ink: #181818;
  --soft-ink: #323232;
  --paper: #ffffff;
  --mist: #f7f7f5;
  --silver: #e7e8e9;
  --line: rgba(24, 24, 24, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #b9c1c8;
  --container: 1200px;
  --header: 92px;
  --heading: "Spartan", Arial, Helvetica, sans-serif;
  --body: "Spartan", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--paper);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(24, 24, 24, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header);
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  width: 116px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  width: 100%;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--paper);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  padding: calc(var(--header) + 80px) 0 96px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)),
    var(--hero-image) center / cover no-repeat;
  overflow: hidden;
}

.page-home .hero {
  min-height: 100vh;
  padding: calc(var(--header) + 64px) 0 170px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.5)),
    var(--hero-image) center / cover no-repeat;
}

.page-home .hero::before {
  position: absolute;
  top: 24%;
  right: -14vw;
  z-index: 0;
  width: min(760px, 58vw);
  aspect-ratio: 1920 / 1100;
  background: url("../images/background_03_home2.png") center / contain no-repeat;
  content: "";
  opacity: 0.46;
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -2px;
  left: -10vw;
  height: 140px;
  background: url("../images/Wave_White_bottom_right_shape_02.png") bottom right / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.page-home .hero::after {
  right: -4vw;
  left: -4vw;
  height: 150px;
  background-image: url("../images/border5gray.png");
  background-position: bottom center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.page-home .hero__inner {
  align-content: end;
}

.hero__copy {
  width: min(760px, 100%);
}

.page-home .hero__copy {
  width: min(820px, 100%);
  margin-left: min(33vw, 400px);
}

.hero__kicker {
  margin: 0 0 8px;
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
}

.hero h1 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(38px, 6.2vw, 86px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero__superheadline {
  margin: 12px 0 0;
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
}

.page-home .hero h1 {
  font-size: clamp(54px, 8vw, 104px);
}

.hero p:not(.hero__kicker):not(.hero__superheadline) {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.7vw, 24px);
}

.section {
  position: relative;
  padding: 96px 0;
}

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

.section--dark {
  color: var(--paper);
  background:
    linear-gradient(rgba(24, 24, 24, 0.92), rgba(24, 24, 24, 0.92)),
    url("../images/background_03_home2.png") center / cover repeat;
}

.split-visual--background {
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.92), rgba(24, 24, 24, 0.72)),
    var(--section-image) center / cover no-repeat;
}

.section--pattern {
  background:
    linear-gradient(rgba(247, 247, 245, 0.94), rgba(247, 247, 245, 0.94)),
    url("../images/background_squares.png") center / cover repeat;
}

.section--intro,
.section--products,
.section--news {
  background:
    linear-gradient(rgba(247, 247, 245, 0.95), rgba(247, 247, 245, 0.95)),
    url("../images/background_03_home2.png") center / cover repeat;
}

.section--wave::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 110px;
  background: url("../images/Wave_grey_bottom_left_shape_01.png") bottom left / 100% 100% no-repeat;
  content: "";
  opacity: 0.75;
  pointer-events: none;
}

.section--intro::after {
  height: 132px;
  background: url("../images/background_002-kesik.png") bottom center / 100% 100% no-repeat;
  opacity: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 54px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.center-section h2,
.production-band h2,
.principles-grid h2,
.policy-content h2,
.contact-info h2,
.contact-form h2,
.footer-grid h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-copy h2,
.section-heading h2,
.center-section h2,
.production-band h2 {
  font-size: clamp(31px, 4vw, 54px);
}

.lead {
  color: var(--soft-ink);
  font-size: 20px;
  font-weight: 800;
}

.section-copy p {
  margin: 18px 0 0;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  border: 1px solid currentColor;
  padding: 0 30px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

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

.process-column {
  display: grid;
  gap: 38px;
}

.image-card,
.product-card,
.news-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(24, 24, 24, 0.08);
}

.image-card img {
  width: 100%;
  aspect-ratio: 900 / 563;
  object-fit: cover;
}

.image-card div,
.product-card div,
.news-card div {
  padding: 28px;
}

.image-card h3,
.product-card h3,
.news-card h3,
.feature-list h3,
.contact-info h3 {
  margin: 0 0 12px;
  font-family: var(--heading);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.image-card p,
.product-card p,
.news-card p {
  margin: 0;
  color: #4d4d4d;
}

.split-visual__grid,
.content-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.split-visual--background .split-visual__grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
}

.split-visual img,
.content-split img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.feature-list article {
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.center-section {
  text-align: center;
}

.narrow {
  width: min(860px, calc(100% - 48px));
}

.center-section p:not(.eyebrow) {
  margin: 24px auto 0;
  color: #4c4c4c;
  font-size: 19px;
}

.production-band {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5)),
    url("../images/kada-back-01.jpg") center / cover no-repeat;
}

.production-band__inner {
  width: min(900px, calc(100% - 48px));
}

.production-band p {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 42px;
}

.section-heading p,
.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading span {
  display: block;
  margin-top: 18px;
  color: #4c4c4c;
  font-size: 18px;
}

.product-grid,
.news-grid,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  aspect-ratio: 850 / 1280;
  object-fit: cover;
}

.product-card {
  position: relative;
  min-height: 560px;
  color: var(--paper);
  background: var(--ink);
}

.product-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent);
  content: "";
}

.product-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 34px;
}

.product-card h3 {
  color: var(--paper);
  font-size: clamp(25px, 2.8vw, 38px);
}

.product-card p {
  color: rgba(255, 255, 255, 0.78);
}

.product-card .product-card__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-card .product-card__eyebrow::after {
  display: block;
  width: 52px;
  height: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.58);
  content: "";
}

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

.news-card time {
  display: block;
  margin-bottom: 10px;
  color: #747474;
  font-size: 13px;
  font-weight: 800;
}

.center-actions {
  text-align: center;
}

.content-split {
  align-items: center;
}

.principles-grid article {
  border: 1px solid var(--line-light);
  padding: 36px;
  min-height: 320px;
}

.principles-grid h2 {
  font-size: 25px;
}

.principles-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-info {
  align-self: start;
}

.contact-info h2,
.contact-form h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.contact-info ul {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row a,
.social-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-content {
  width: min(920px, calc(100% - 48px));
}

.policy-content .lead {
  margin: 0 0 28px;
}

.policy-content article {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.policy-content h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.policy-content p {
  margin: 14px 0 0;
  color: #4c4c4c;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  padding: 42px;
  color: var(--paper);
  background: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 16px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--paper);
}

.contact-form .btn {
  justify-self: start;
  cursor: pointer;
}

.form-notice {
  border: 1px solid currentColor;
  padding: 14px 16px;
}

.form-notice--success {
  color: #a8d9a6;
}

.form-notice--error {
  color: #ffb3a3;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
  padding: 74px 0 48px;
}

.footer-logo {
  width: 100px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-grid p {
  margin: 0 0 10px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: 19px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--paper);
}

.social-row--footer {
  margin-top: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Offline WordPress capture alignment */
.brand img {
  width: 142px;
}

.page-home .site-header:not(.is-scrolled):not(.menu-open) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

.page-home .hero {
  min-height: 760px;
  padding: calc(var(--header) + 70px) 0 170px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.3) 36%, rgba(0, 0, 0, 0.76)),
    var(--hero-image) center / cover no-repeat;
  background-blend-mode: normal, luminosity;
}

.page-home .hero__copy {
  width: min(760px, 100%);
  margin-inline: auto;
}

.page-home .hero__kicker {
  font-size: clamp(33px, 4vw, 58px);
}

.page-home .hero__superheadline {
  margin-top: 4px;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 400;
}

.page-home .hero h1 {
  margin-top: 4px;
  font-size: clamp(48px, 6.4vw, 78px);
}

.page-home .hero p:not(.hero__kicker):not(.hero__superheadline) {
  margin-inline: auto;
}

.intro-grid {
  grid-template-columns: minmax(310px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(52px, 7vw, 96px);
}

.section--intro {
  padding-top: 150px;
  padding-bottom: 170px;
}

.process-column:nth-child(2) {
  padding-top: 74px;
}

.image-card,
.news-card {
  border-radius: 7px;
}

.image-card {
  box-shadow: 0 28px 55px rgba(24, 24, 24, 0.14);
}

.image-card div,
.news-card div {
  padding: 26px 28px 34px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: currentColor;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

.section--strength {
  padding: 92px 0 94px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("../images/background_03_home2.png") center / cover repeat;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
  max-width: 660px;
}

.section-heading--center span {
  margin-inline: auto;
  max-width: 560px;
  color: #181818;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 7vw, 104px);
  margin-top: 78px;
}

.strength-grid article {
  position: relative;
}

.strength-grid article:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -58px;
  width: 94px;
  height: 5px;
  border-radius: 999px;
  background: #ececec;
  content: "";
}

.strength-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: #101010;
}

.strength-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strength-grid p {
  min-height: 48px;
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.25;
}

.strength-grid h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

.service-band,
.production-band {
  min-height: 820px;
  display: grid;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.service-band {
  background:
    linear-gradient(90deg, rgba(0, 12, 14, 0.82), rgba(0, 0, 0, 0.2) 64%, rgba(0, 0, 0, 0.6)),
    url("../images/export.jpg") center / cover no-repeat;
}

.service-band::before,
.production-band::before,
.section--products::before,
.section--news::before {
  position: absolute;
  inset: 0;
  background: url("../images/background_03_home2.png") center / cover no-repeat;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.service-band__inner {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
}

.service-band h2,
.production-band h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.14;
}

.service-band p,
.production-band p {
  width: min(760px, 100%);
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.btn--solid {
  border-color: #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
}

.production-band {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0.86)),
    url("../images/kada-back-01.jpg") center / cover no-repeat;
}

.production-band__inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-left: min(36vw, 720px);
}

.section--products,
.section--news {
  overflow: hidden;
  background: #fff;
}

.section--products .container,
.section--news .container {
  position: relative;
  z-index: 1;
}

.section--products .section-heading,
.section--news .section-heading {
  margin-inline: auto;
  text-align: center;
}

.section--products .section-heading p {
  text-transform: none;
  font-size: 12px;
  font-weight: 400;
}

.product-card {
  min-height: 420px;
  border: 0;
  border-radius: 7px;
  box-shadow: 0 20px 34px rgba(24, 24, 24, 0.16);
}

.product-card img {
  min-height: 420px;
}

.product-card div {
  padding: 28px;
}

.product-card p:not(.product-card__eyebrow) {
  display: none;
}

.product-card .card-link {
  color: #fff;
  font-size: 11px;
  text-transform: none;
}

.news-card {
  border-color: rgba(24, 24, 24, 0.08);
  box-shadow: 0 10px 28px rgba(24, 24, 24, 0.07);
}

.news-card:nth-child(2) {
  position: relative;
  min-height: 286px;
  color: #fff;
  background: #111;
}

.news-card:nth-child(2)::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
  content: "";
}

.news-card:nth-child(2) img {
  height: 100%;
  min-height: 286px;
}

.news-card:nth-child(2) div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
}

.news-card:nth-child(2) p {
  display: none;
}

.news-card:nth-child(2) time,
.news-card:nth-child(2) h3 {
  color: #fff;
}

.site-footer {
  color: #181818;
  background: #fff;
}

.footer-grid {
  grid-template-columns: 1fr repeat(3, minmax(0, 1fr));
  padding: 92px 0 70px;
}

.footer-logo {
  margin-bottom: 44px;
}

.footer-grid h2 {
  color: #181818;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a {
  color: #181818;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #000;
}

.social-row--footer span {
  width: 40px;
  height: 40px;
  color: #111;
  border-color: #111;
}

.footer-bottom {
  width: 100%;
  max-width: none;
  padding: 28px max(48px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: #151515;
}

.footer-bottom a,
.footer-bottom p {
  color: #fff;
}

@media (max-width: 1040px) {
  .intro-grid,
  .split-visual__grid,
  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  :root {
    --header: 78px;
  }

  .container,
  .narrow,
  .production-band__inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand img {
    width: 86px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    background: rgba(24, 24, 24, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line-light);
  }

  .hero {
    min-height: 620px;
    padding: calc(var(--header) + 60px) 0 90px;
  }

  .page-home .hero {
    min-height: 680px;
    padding: calc(var(--header) + 60px) 0 130px;
  }

  .page-home .hero__copy {
    margin-left: 0;
  }

  .page-home .hero::before {
    top: 30%;
    right: -42vw;
    width: 110vw;
  }

  .section {
    padding: 68px 0;
  }

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

  .contact-form {
    padding: 30px;
  }

  .product-card,
  .product-card img {
    min-height: 500px;
  }

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

@media (max-width: 460px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero__kicker,
  .hero__superheadline,
  .section-copy h2,
  .section-heading h2,
  .center-section h2,
  .production-band h2 {
    font-size: 30px;
  }

  .btn {
    width: 100%;
  }

  .contact-form .btn {
    justify-self: stretch;
  }
}
