:root {
  --red: #ed1c24;
  --dark: #111111;
  --ink: #222222;
  --muted: #666666;
  --line: #e8e8e8;
  --soft: #f1f2f4;
  --gold: #c99a42;
  --orange: #f6a500;
  --blue: #1197e5;
  --green: #27aa0d;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  line-height: 1.5;
}

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

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

.topbar {
  background: #201b1d;
  color: #ffffff;
  font-size: 14px;
}

.topbar-inner,
.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 50px));
  margin: 0 auto;
}

.full-section-inner {
  width: calc(100% - 100px);
  max-width: none;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}

.site-header {
  background: #ffffff;
  border-bottom: 4px solid #d9bd74;
}

.header-inner {
  width: 100%;
  min-height: 112px;
  margin: 0;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 210px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover {
  filter: drop-shadow(0 8px 14px rgba(201, 154, 66, 0.25));
  transform: scale(1.04);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  color: #ffffff;
  background: var(--red);
  font-size: 24px;
  cursor: pointer;
}

.primary-nav {
  margin-left: auto;
  background: var(--red);
  border-radius: 999px 0 0 999px;
  overflow: hidden;
  display: flex;
  min-width: 500px;
}

.primary-nav a {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 16px 26px;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: rgba(0, 0, 0, 0.18);
}

.primary-nav a:hover {
  transform: translateY(-2px);
}

.primary-nav a:hover::after {
  transform: translateX(120%);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1600 / 625;
  height: auto;
  min-height: 0;
  background: #000000;
  border-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.03) 72%),
    radial-gradient(circle at 24% 48%, rgba(0, 0, 0, 0.22), transparent 44%);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  filter: saturate(0.96) contrast(1.02);
  will-change: opacity, transform;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out, filter 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.hero-copy-slides {
  position: absolute;
  z-index: 4;
  left: clamp(34px, 7vw, 118px);
  top: 50%;
  width: min(560px, 44vw);
  min-height: 270px;
  color: #ffffff;
  transform: translateY(-50%);
}

.hero-content-slide {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  will-change: opacity, transform;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-content-slide h1 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.08;
}

.hero-content-slide h1 span {
  color: #ffdf19;
}

.hero-content-slide p {
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.32;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(237, 28, 36, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  box-shadow: 0 18px 34px rgba(237, 28, 36, 0.36);
  transform: translateY(-3px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(237, 28, 36, 0.82);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
  left: 22px;
}

.hero-arrow-next {
  right: 22px;
}

.section {
  padding: 48px 0;
}

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

.section-title {
  display: table;
  margin: 0 auto 34px;
  padding: 10px 34px;
  background: var(--red);
  color: #ffffff;
  border-radius: 999px;
  font-size: 21px;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-link {
  cursor: pointer;
}

.section-link::after {
  content: "  ›";
  font-weight: 700;
}

.section-title:hover {
  box-shadow: 0 10px 20px rgba(237, 28, 36, 0.22);
  transform: translateY(-2px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.intro-grid p {
  margin: 0 0 16px;
  color: #444444;
  text-align: justify;
}

.intro-grid img {
  border-radius: 12px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-intro-section .intro-grid img {
  width: 50%;
  justify-self: center;
}

.intro-grid img:hover,
.launch-grid img:hover,
.wide-image:hover,
.client-board img:hover {
  box-shadow: 0 16px 34px rgba(32, 24, 25, 0.16);
  transform: translateY(-5px);
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 620px);
  justify-content: center;
  gap: 44px;
  align-items: center;
}

.launch-image {
  width: 100%;
  padding: 10px;
  border: 8px solid #ffffff;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  box-shadow: 0 18px 40px rgba(32, 24, 25, 0.13), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.launch-grid h3,
.text-panel h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.launch-grid ul,
.text-panel ul {
  margin: 0;
  padding-left: 20px;
}

.launch-text-slider {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  text-align: left;
}

.launch-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.launch-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.dots span,
.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #bbbbbb;
  cursor: pointer;
}

.dots span:first-child,
.dots button.is-active {
  background: #222222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: #ffffff;
  padding: 32px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.26), transparent 34%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.service-card p {
  margin: 0;
  font-size: 15px;
}

.service-card.print {
  background: var(--red);
}

.service-card.design {
  background: var(--orange);
}

.service-card.signage {
  background: var(--blue);
}

.service-card.branding {
  background: var(--green);
}

.service-card.gifting {
  background: #7c3aed;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.portfolio-carousel {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
}

.home-portfolio-section .portfolio-track {
  --portfolio-visible: 4;
}

.portfolio-window {
  overflow: hidden;
  padding: 6px 0 18px;
}

.portfolio-track {
  --portfolio-index: 0;
  --portfolio-visible: 3;
  --portfolio-gap: 24px;
  display: flex;
  gap: var(--portfolio-gap);
  transform: translateX(calc(var(--portfolio-index) * -1 * ((100% - ((var(--portfolio-visible) - 1) * var(--portfolio-gap))) / var(--portfolio-visible) + var(--portfolio-gap))));
  transition: transform 0.55s ease;
}

.portfolio-track .portfolio-item {
  flex: 0 0 calc((100% - ((var(--portfolio-visible) - 1) * var(--portfolio-gap))) / var(--portfolio-visible));
}

.portfolio-item {
  display: block;
  overflow: hidden;
  padding-bottom: 16px;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(32, 24, 25, 0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.portfolio-item:hover {
  box-shadow: 0 18px 34px rgba(32, 24, 25, 0.15);
  transform: translateY(-6px);
}

.portfolio-item img,
.portfolio-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover .portfolio-placeholder {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.03);
}

.portfolio-item:nth-child(1) img {
  object-position: left center;
}

.portfolio-item:nth-child(2) img {
  object-position: center center;
}

.portfolio-item:nth-child(3) img {
  object-position: right center;
}

.portfolio-item h3 {
  margin: 16px 10px 0;
  font-size: 21px;
}

.portfolio-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  color: #ffffff;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
}

.red-tint {
  background: linear-gradient(135deg, #ed1c24, #7d080d);
}

.gold-tint {
  background: linear-gradient(135deg, #d9bd74, #805b16);
}

.blue-tint {
  background: linear-gradient(135deg, #1197e5, #075387);
}

.green-tint {
  background: linear-gradient(135deg, #27aa0d, #105705);
}

.dark-tint {
  background: linear-gradient(135deg, #222222, #050505);
}

.orange-tint {
  background: linear-gradient(135deg, #f6a500, #a84400);
}

.gray-tint {
  background: linear-gradient(135deg, #777777, #252525);
}

.about-hero-grid,
.about-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.about-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;
  font-weight: 700;
}

.about-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

.about-copy p,
.about-process-layout p,
.about-closing {
  color: #444444;
  font-size: 16px;
}

.about-picture-stack {
  display: grid;
  gap: 16px;
}

.about-picture-stack img,
.about-process-layout img {
  width: 100%;
  border: 10px solid #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(32, 24, 25, 0.14);
}

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

.about-card-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(32, 24, 25, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-card-grid article:hover {
  border-color: rgba(201, 154, 66, 0.55);
  box-shadow: 0 18px 34px rgba(32, 24, 25, 0.13);
  transform: translateY(-4px);
}

.about-card-grid h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 20px;
}

.about-card-grid p {
  margin: 0;
  color: #444444;
}

.process-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.process-list div {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(32, 24, 25, 0.08);
}

.process-list strong {
  display: block;
  color: var(--red);
}

.process-list span {
  display: block;
  color: #444444;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-grid span {
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 700;
}

.about-closing {
  max-width: 950px;
  margin: 30px auto 0;
  text-align: center;
}

.clients-grid {
  display: block;
}

.clients-heading {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
}

.clients-heading h2 {
  margin: 0 0 6px;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.05;
}

.clients-heading p {
  margin: 0;
  font-size: 10px;
}

.client-board {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 18px;
}

.arrow {
  border: 0;
  background: transparent;
  font-size: 44px;
  color: #111111;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arrow:hover {
  color: var(--red);
  transform: scale(1.15);
}

.client-window {
  overflow: hidden;
  padding: 4px 0 10px;
}

.client-track {
  --client-index: 0;
  --client-visible: 4;
  --client-gap: 24px;
  display: flex;
  gap: var(--client-gap);
  transform: translateX(calc(var(--client-index) * -1 * ((100% - ((var(--client-visible) - 1) * var(--client-gap))) / var(--client-visible) + var(--client-gap))));
  transition: transform 0.58s ease;
}

.client-logo-card {
  flex: 0 0 calc((100% - ((var(--client-visible) - 1) * var(--client-gap))) / var(--client-visible));
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.client-logo-card:hover {
  box-shadow: 0 8px 18px rgba(32, 24, 25, 0.08);
  transform: translateY(-2px);
}

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

.cta-band {
  background: var(--red);
  color: #ffffff;
  text-align: center;
  padding: 34px 0;
}

.cta-band h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button.light {
  color: #ffffff;
}

.button:hover,
.submit-btn:hover {
  box-shadow: 0 12px 24px rgba(237, 28, 36, 0.24);
  transform: translateY(-3px);
}

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

.text-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.text-panel:hover,
.contact-card:hover,
.contact-form:hover {
  border-color: rgba(201, 154, 66, 0.5);
  box-shadow: 0 16px 34px rgba(32, 24, 25, 0.12);
  transform: translateY(-4px);
}

.text-panel p {
  margin: 0 0 16px;
}

.product-launch-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.product-launch-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-launch-images img:hover {
  box-shadow: 0 14px 28px rgba(32, 24, 25, 0.12);
  transform: translateY(-4px);
}

.machine-detail-list {
  display: grid;
  gap: 28px;
}

.machine-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  scroll-margin-top: 120px;
  box-shadow: 0 12px 30px rgba(32, 24, 25, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.machine-detail:hover {
  box-shadow: 0 22px 44px rgba(32, 24, 25, 0.14);
  transform: translateY(-4px);
}

.machine-detail h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 28px;
}

.machine-detail p {
  margin: 0 0 16px;
  color: #444444;
}

.machine-detail ul {
  margin: 0;
  padding-left: 20px;
}

.machine-detail img {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, #f7f7f7);
  border: 1px solid rgba(201, 154, 66, 0.22);
  box-shadow: 0 18px 34px rgba(32, 24, 25, 0.12);
  justify-self: end;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.machine-detail:hover img {
  box-shadow: 0 26px 48px rgba(32, 24, 25, 0.18);
  transform: translateY(-6px) scale(1.02);
}

.portfolio-showcase {
  display: grid;
  gap: 28px;
}

.wide-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wide-image img {
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card h2,
.contact-form h2 {
  margin: 0 0 20px;
}

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

.contact-list strong {
  display: block;
  color: var(--red);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:hover,
.form-row textarea:hover,
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.14);
  outline: none;
}

.form-row textarea {
  min-height: 135px;
  resize: vertical;
}

.submit-btn {
  border: 0;
  background: var(--red);
  color: #ffffff;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 28px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.form-note {
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 700;
}

.form-note.is-error {
  color: var(--red);
}

.site-footer {
  background: #030303;
  color: #ffffff;
  border-top: 4px solid #d9bd74;
}

.footer-inner {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1.05fr 1.55fr 0.85fr 1.25fr;
  gap: 34px;
  align-items: start;
  padding: 42px 0 24px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #d9bd74;
  font-size: 18px;
  line-height: 1.2;
}

.footer-column p {
  margin: 0;
  color: #dddddd;
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo-column {
  align-self: center;
}

.footer-logo-main {
  width: min(100%, 260px);
  padding: 12px;
  border-radius: 8px;
  background: #ffffff;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 15px;
}

.footer-links a {
  color: #eeeeee;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #d9bd74;
  transform: translateX(4px);
}

.footer-address p {
  max-width: 280px;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  color: #dddddd;
  font-size: 13px;
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
    min-height: 92px;
    margin: 0 auto;
    padding-left: 0;
    flex-wrap: wrap;
  }

  .logo {
    width: 170px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    display: none;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    border-radius: 8px;
    flex-direction: column;
  }

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

  .primary-nav a {
    padding: 14px 18px;
  }

  .hero {
    min-height: 320px;
    aspect-ratio: auto;
  }

  .hero-copy-slides {
    left: 28px;
    width: min(450px, 68vw);
    min-height: 240px;
  }

  .hero-content-slide h1 {
    font-size: clamp(32px, 7vw, 54px);
  }

  .full-section-inner,
  .home-portfolio-inner {
    width: calc(100% - 40px);
  }

  .intro-grid,
  .launch-grid,
  .clients-grid,
  .content-grid,
  .contact-layout,
  .about-hero-grid,
  .about-process-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .portfolio-grid,
  .about-card-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-track {
    --portfolio-visible: 2;
  }

  .home-portfolio-section .portfolio-track {
    --portfolio-visible: 2;
  }

  .client-track {
    --client-visible: 2;
  }

  .client-board {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .arrow {
    display: none;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .footer-logo-column {
    align-self: start;
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 22px, var(--max));
  }

  .section {
    padding: 36px 0;
  }

  .logo {
    width: 150px;
    height: 68px;
  }

  .hero {
    min-height: 350px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.1)),
      radial-gradient(circle at 30% 48%, rgba(0, 0, 0, 0.3), transparent 48%);
  }

  .hero-slide {
    object-position: 68% center;
  }

  .hero-copy-slides {
    left: 18px;
    width: calc(100% - 44px);
    min-height: 260px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  .hero-content-slide h1 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .hero-content-slide p {
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-button {
    min-height: 40px;
    padding: 0 15px;
    font-size: 15px;
  }

  .full-section-inner,
  .home-portfolio-inner {
    width: calc(100% - 24px);
  }

  .section-title {
    font-size: 18px;
    padding-inline: 24px;
  }

  .intro-grid {
    gap: 22px;
  }

  .home-intro-section .intro-grid img {
    width: min(220px, 70vw);
  }

  .launch-grid {
    gap: 24px;
  }

  .launch-text-slider {
    min-height: 270px;
  }

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

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

  .footer-logo-main {
    margin: 0 auto;
  }

  .footer-address p {
    max-width: none;
  }

  .services-grid,
  .portfolio-grid,
  .about-card-grid,
  .why-grid,
  .machine-detail {
    grid-template-columns: 1fr;
  }

  .machine-detail img {
    justify-self: center;
  }

  .portfolio-carousel {
    grid-template-columns: 1fr;
  }

  .portfolio-carousel .arrow {
    display: none;
  }

  .portfolio-track {
    --portfolio-visible: 1;
  }

  .home-portfolio-section .portfolio-track {
    --portfolio-visible: 1;
  }

  .client-track {
    --client-visible: 1;
  }

  .service-card {
    min-height: 210px;
  }

}
