:root {
  --primary: #007f3e;
  --primary-deep: #005f2f;
  --primary-dark: #023d24;
  --accent: #ffdd00;
  --orange: #f58345;
  --coffee: #6f4a32;
  --coffee-dark: #3f2a1f;
  --coffee-deep: #2b201b;
  --coffee-warm: #8a6144;
  --earth: #4b382d;
  --footer-dark: #303030;
  --ink: #2f3330;
  --muted: #626b63;
  --paper: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #f7f0e8;
  --line: rgba(79, 55, 42, 0.16);
  --shadow: 0 18px 42px rgba(63, 42, 31, 0.16);
  --shadow-soft: 0 10px 26px rgba(63, 42, 31, 0.1);
  --radius: 8px;
  --container: 1180px;
  --header-height: 102px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 62px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(111, 74, 50, 0.08), rgba(255, 221, 0, 0.06));
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.5vw, 3.05rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  overflow-wrap: break-word;
}

.lead {
  font-size: 1.08rem;
  color: #49534b;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--coffee), var(--coffee-dark));
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  color: var(--coffee-dark);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(79, 55, 42, 0.24);
}

.btn:hover,
.btn:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  border-bottom: 3px solid var(--coffee-dark);
  box-shadow: 0 8px 24px rgba(63, 42, 31, 0.13);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 232px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--coffee-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--coffee-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--coffee-dark);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero {
  min-height: calc(100svh - var(--header-height));
}

.hero-slider {
  min-height: calc(100svh - var(--header-height));
}

.hero-slide {
  position: absolute;
  inset: 0;
  isolation: isolate;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.page-hero {
  min-height: 420px;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(43, 32, 27, 0.92) 0%, rgba(79, 55, 42, 0.78) 54%, rgba(138, 97, 68, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.hero-slide.active .hero-image {
  animation: sliderImageDrift 6s ease-out forwards;
}

.hero-content,
.page-hero-content {
  width: 100%;
  max-width: 820px;
  min-width: 0;
  padding: 84px 0;
}

.hero-slide .hero-content .eyebrow,
.hero-slide .hero-content h1,
.hero-slide .hero-content p,
.hero-slide .hero-content .hero-actions {
  opacity: 0;
  transform: translateY(18px);
}

.hero-slide.active .hero-content .eyebrow {
  animation: sliderTextIn 0.65s ease forwards 0.18s;
}

.hero-slide.active .hero-content h1 {
  animation: sliderTextIn 0.7s ease forwards 0.3s;
}

.hero-slide.active .hero-content p {
  animation: sliderTextIn 0.7s ease forwards 0.42s;
}

.hero-slide.active .hero-content .hero-actions {
  animation: sliderTextIn 0.7s ease forwards 0.54s;
}

.hero-content h1,
.page-hero-content h1,
.hero-content p,
.page-hero-content p,
.hero-content .eyebrow,
.page-hero-content .eyebrow {
  color: #ffffff;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.page-hero-content h1 {
  margin-bottom: 16px;
}

.hero-content p,
.page-hero-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--accent);
}

@keyframes sliderImageDrift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1) translate3d(-1%, -0.7%, 0);
  }
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 44px;
}

.proof-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.proof-item strong {
  display: block;
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.grid-2,
.grid-3,
.grid-4,
.service-grid,
.portfolio-grid,
.client-grid,
.machine-grid,
.contact-grid,
.feature-grid {
  display: grid;
  gap: 24px;
}

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

.grid-3,
.service-grid,
.portfolio-grid,
.machine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.card,
.service-card,
.portfolio-card,
.client-card,
.machine-card,
.contact-panel,
.feature-card,
.story-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.service-card,
.feature-card,
.story-panel,
.contact-panel {
  padding: 28px;
}

.service-card,
.feature-card,
.machine-card,
.portfolio-card,
.client-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.feature-card:hover,
.machine-card:hover,
.portfolio-card:hover,
.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 131, 69, 0.34);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--primary-deep);
  background: linear-gradient(135deg, rgba(255, 221, 0, 0.42), rgba(245, 131, 69, 0.15));
  border: 1px solid rgba(0, 95, 47, 0.15);
  font-weight: 800;
}

.check-list,
.plain-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-panel {
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(79, 55, 42, 0.14);
  border-radius: var(--radius);
  background: #fffbe4;
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.45rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card a {
  display: grid;
  color: inherit;
  cursor: zoom-in;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f1f4ee;
}

.portfolio-body {
  padding: 18px;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(43, 32, 27, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  width: min(1100px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 14px;
  margin: 0;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(63, 42, 31, 0.94);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  outline: none;
  background: var(--coffee);
  box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.24), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.portfolio-body span,
.machine-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(79, 55, 42, 0.22);
  border-radius: 999px;
  color: var(--coffee-dark);
  background: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #ffffff;
  background: var(--coffee);
}

.client-card {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #ffffff;
}

.client-card img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.machine-card {
  overflow: hidden;
}

.machine-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef4ed;
}

.machine-body {
  padding: 20px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(112deg, rgba(43, 32, 27, 0.96), rgba(111, 74, 50, 0.9)),
    url("images/printing/heidelberg-4-colour-offset-machine.jpg") center / cover;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.center-actions {
  justify-content: center;
}

.cta-band .btn-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.service-row {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-row:last-child {
  padding-bottom: 0;
}

.service-row .badge {
  margin-bottom: 12px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.capability {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff9d6;
  border: 1px solid rgba(0, 95, 47, 0.16);
  font-weight: 800;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.contact-list a,
.contact-list span {
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--coffee-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(79, 55, 42, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffef6;
}

.form-group textarea {
  min-height: 145px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(245, 131, 69, 0.72);
  box-shadow: 0 0 0 4px rgba(245, 131, 69, 0.13);
}

.form-status {
  min-height: 24px;
  color: var(--coffee-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--footer-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18));
}

.footer-inner h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-inner p,
.footer-inner a,
.footer-inner li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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

  .hero-slide .hero-content .eyebrow,
  .hero-slide .hero-content h1,
  .hero-slide .hero-content p,
  .hero-slide .hero-content .hero-actions {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1160px) {
  .brand img {
    width: 214px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.86rem;
  }

  .grid-4,
  .feature-grid,
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 84px;
  }

  .header-inner {
    gap: 12px;
  }

  .header-inner nav {
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(79, 55, 42, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 221, 0, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    min-height: 42px;
  }

  .split,
  .split.reverse,
  .grid-2,
  .grid-3,
  .contact-grid,
  .service-grid,
  .portfolio-grid,
  .machine-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-proof,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    padding-inline: 0.625rem;
  }

  .brand img {
    width: 174px;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(1.78rem, 8.2vw, 2.45rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-slider {
    min-height: 600px;
  }

  .hero-content,
  .page-hero-content {
    max-width: 100%;
    padding: 72px 0;
  }

  .hero-content,
  .page-hero-content,
  .section-header,
  .story-panel,
  .contact-panel,
  .hero-actions,
  .cta-actions,
  .hero-proof,
  .proof-item,
  .filter-row {
    width: 100%;
    max-width: calc(100vw - 1.25rem);
  }

  .hero-content h1,
  .page-hero-content h1,
  .hero-content p,
  .page-hero-content p,
  .section-header h2,
  .section-header p,
  .story-panel p,
  .contact-panel p {
    max-width: calc(100vw - 1.25rem);
  }

  .hero-content p,
  .page-hero-content p,
  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .card,
  .service-card,
  .feature-card,
  .story-panel,
  .contact-panel {
    padding: 22px;
  }

  .image-panel,
  .image-panel img {
    min-height: 300px;
  }

  .client-grid,
  .feature-grid,
  .grid-4,
  .capability-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 100px;
  }

  .cta-band {
    padding: 30px 22px;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: 156px;
  }

  h1 {
    font-size: 1.88rem;
  }

  .hero-content,
  .page-hero-content {
    padding: 60px 0;
  }
}
 
.slide-1::after{
    background:
    linear-gradient(112deg,
    rgba(43,32,27,.92) 0%,
    rgba(79,55,42,.78) 54%,
    rgba(138,97,68,.36) 100%),
    linear-gradient(180deg,
    rgba(0,0,0,.04),
    rgba(0,0,0,.34));
}
.slide-2::after{
    background:
    linear-gradient(112deg,
    rgba(8,35,80,.90) 0%,
    rgba(18,74,145,.70) 55%,
    rgba(86,155,255,.25) 100%);
}
.slide-3::after{
    background:
    linear-gradient(112deg,
    rgba(18,65,45,.92) 0%,
    rgba(39,118,82,.70) 55%,
    rgba(94,180,130,.30) 100%);
}
.slide-4::after{
    background:
    linear-gradient(112deg,
    rgba(55,20,75,.92) 0%,
    rgba(112,49,150,.72) 55%,
    rgba(193,128,255,.28) 100%);
}