:root {
  --ink: #101622;
  --midnight: #070d1b;
  --steel: #5f6672;
  --paper: #f6f6f4;
  --line: #e4e2de;
  --gold: #c49a65;
  --orange: #e8723d;
  --soft: #eceae6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body > main {
  padding-top: 66px;
}

body > main:has(.hero:first-child) {
  padding-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr minmax(160px, 220px);
  align-items: center;
  width: 100%;
  height: 66px;
  padding: 0 580px;
  color: var(--white);
  font-size: 13px;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  backdrop-filter: none;
  color: var(--ink);
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .nav-item > a {
  color: var(--ink);
  opacity: 0.8;
}

.site-header.scrolled .nav-item > a:hover,
.site-header.scrolled .nav-item > a[aria-current="page"] {
  color: var(--orange);
  opacity: 1;
}

.site-header.scrolled .icon-button,
.site-header.scrolled .language-pill {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgb(0 0 0 / 32%));
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #f0ad5f 42%, #1d3866 43%, #09142a);
  transform: skewX(-14deg);
  border-radius: 3px;
  font-size: 12px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
}

.brand-name {
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 1px 1px rgb(0 0 0 / 45%);
}

.main-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item > a {
  opacity: .86;
  font-size: 16px;
}

.nav-item > a:hover,
.nav-item > a[aria-current="page"] {
  color: #ffd19c;
  opacity: 1;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  margin-top: 8px;
  padding: 12px 0;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  display: block;
  padding: 10px 20px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.submenu a:hover {
  background: #fff3ec;
  color: #f05f2d;
  padding-left: 24px;
}

.main-nav a {
  opacity: .86;
  font-size: 16px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-button,
.language-pill {
  min-width: 24px;
  height: 26px;
  border: 1px solid rgb(255 255 255 / 35%);
  color: var(--white);
  background: rgb(255 255 255 / 9%);
  border-radius: 14px;
  font: inherit;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 66vh;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 78%, rgb(201 165 117 / 23%), transparent 20%),
    radial-gradient(circle at 50% 0%, #182239, var(--midnight) 72%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(6 9 18 / 30%), rgb(6 9 18 / 0) 45%, rgb(6 9 18 / 42%));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: clamp(140px, 12vw, 220px);
  text-align: center;
}

.hero-copy h1,
.strip-copy h2,
.tile-copy h2,
.techniques h2,
.process h2,
.demo-page h1 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy h1 {
  color: #ddbd8f;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-copy p {
  margin: 18px 0 22px;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
}

.tagline {
  margin: 0 0 16px 0;
}

.subtitle {
  color: white;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
}

.button-row,
.micro-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.button-row a,
.micro-links a {
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(8px);
}

.button-row a {
  padding: 7px 15px;
  font-size: 11px;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  transform: translateY(24px) scale(1.06);
  opacity: 0;
  transition: opacity 950ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 72px;
  border: 0;
  color: rgb(255 255 255 / 86%);
  background: rgb(3 9 21 / 18%);
  border-radius: 2px;
  font-size: 58px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease;
}

.slide-arrow:hover {
  color: var(--white);
  background: rgb(3 9 21 / 34%);
}

.slide-arrow-left {
  left: 20px;
}

.slide-arrow-right {
  right: 20px;
}

.home-proof {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding: 0 36px 44px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0), var(--white) 34%);
}

.home-proof-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 0 34px;
  background: var(--white);
  box-shadow: 0 22px 70px rgb(16 22 34 / 11%);
}

.proof-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 184px;
  padding: 24px clamp(18px, 3vw, 50px) 0;
  color: var(--steel);
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid #d9dce2;
}

.proof-item strong {
  display: block;
  min-height: 45px;
  margin-bottom: 12px;
  color: #f19700;
  font-size: clamp(27px, 2.7vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.proof-item h2 {
  margin: 0 0 17px;
  color: #ff9400;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.proof-item p {
  max-width: 250px;
  margin: 0;
  color: #566173;
  font-size: 16px;
  line-height: 1.55;
}

.home-body .hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.2fr);
  align-items: center;
  place-items: stretch;
  height: max(520px, calc(100vh - 192px));
  min-height: 520px;
  padding: 96px clamp(36px, 5vw, 90px) 34px;
  background:
    radial-gradient(circle at 96% 6%, rgb(212 164 95 / 32%), transparent 18%),
    radial-gradient(circle at 73% 60%, rgb(24 62 102 / 48%), transparent 36%),
    linear-gradient(115deg, #071427 0%, #081629 44%, #111821 100%);
}

.home-body .hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(5 13 28 / 92%) 0%, rgb(5 13 28 / 74%) 36%, rgb(5 13 28 / 14%) 68%, rgb(5 13 28 / 42%) 100%),
    repeating-linear-gradient(160deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 22px);
}

.home-body .hero-copy {
  align-self: center;
  justify-self: start;
  max-width: 720px;
  padding-top: 0;
  text-align: left;
}

.home-body .hero-copy h1 {
  color: #e0bd86;
  font-size: clamp(72px, 8.2vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 15px 38px rgb(0 0 0 / 38%);
}

.home-body .hero-copy p {
  margin: 10px 0 30px;
  color: #fff7ea;
  font-size: clamp(31px, 3vw, 50px);
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
}

.home-body .hero-copy strong {
  display: block;
  position: relative;
  margin: 0 0 14px;
  padding-top: 28px;
  color: #d9b77e;
  font-size: clamp(18px, 1.55vw, 25px);
  letter-spacing: 0;
}

.home-body .hero-copy strong::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 72px;
  height: 2px;
  background: #d9b77e;
}

.home-body .hero-copy small {
  display: block;
  max-width: 440px;
  margin-bottom: 34px;
  color: rgb(244 238 228 / 86%);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.home-body .button-row {
  justify-content: flex-start;
  gap: 18px;
}

.home-body .button-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 28px;
  border-color: rgb(221 183 123 / 66%);
  color: #f5d7a2;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.home-body .button-row a:first-child {
  color: #1b1820;
  background: linear-gradient(135deg, #f1d19c, #c99752);
  border-color: transparent;
}

.home-body .hero-slides {
  left: 38%;
  z-index: 0;
}

.home-body .hero-slide {
  object-position: 55% 50%;
  transform: none;
  filter: drop-shadow(0 34px 70px rgb(0 0 0 / 42%));
}

.home-body .slide-arrow {
  display: none;
}

.home-body .home-proof {
  margin-top: 0;
  padding: 0 clamp(28px, 4.8vw, 72px) 36px;
  background: #081426;
}

.home-body .home-proof-track {
  max-width: 1420px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgb(218 186 133 / 16%);
  border-bottom: 1px solid rgb(218 186 133 / 10%);
}

.home-body .proof-item {
  position: relative;
  grid-template-columns: 58px minmax(0, 1fr);
  justify-items: start;
  align-content: center;
  align-items: start;
  min-height: 156px;
  padding: 34px clamp(22px, 2.8vw, 48px);
  text-align: left;
}

.home-body .proof-item::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: start;
  justify-self: center;
  width: 44px;
  height: 44px;
  margin-top: 3px;
  border: 1px solid rgb(221 183 123 / 36%);
  border-radius: 50%;
  background: rgb(221 183 123 / 8%);
  box-shadow: inset 0 0 0 5px rgb(221 183 123 / 4%);
}

.home-body .proof-item::after {
  content: "";
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: start;
  justify-self: center;
  width: 44px;
  height: 44px;
  margin-top: 3px;
  background: #d9b77e;
  transform: scale(0.58);
  transform-origin: center;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.home-body .proof-item:nth-child(1)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v2h6V2h2v2h2.5A2.5 2.5 0 0 1 22 6.5v13A2.5 2.5 0 0 1 19.5 22h-15A2.5 2.5 0 0 1 2 19.5v-13A2.5 2.5 0 0 1 4.5 4H7V2Zm13 8H4v9.5c0 .28.22.5.5.5h15a.5.5 0 0 0 .5-.5V10ZM4.5 6a.5.5 0 0 0-.5.5V8h16V6.5a.5.5 0 0 0-.5-.5h-15Zm3 6h3v3h-3v-3Zm5 0h3v3h-3v-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v2h6V2h2v2h2.5A2.5 2.5 0 0 1 22 6.5v13A2.5 2.5 0 0 1 19.5 22h-15A2.5 2.5 0 0 1 2 19.5v-13A2.5 2.5 0 0 1 4.5 4H7V2Zm13 8H4v9.5c0 .28.22.5.5.5h15a.5.5 0 0 0 .5-.5V10ZM4.5 6a.5.5 0 0 0-.5.5V8h16V6.5a.5.5 0 0 0-.5-.5h-15Zm3 6h3v3h-3v-3Zm5 0h3v3h-3v-3Z'/%3E%3C/svg%3E");
}

.home-body .proof-item:nth-child(2)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.24L5.24 7.62 12 11l6.76-3.38L12 4.24ZM5 9.24v7.03l6 3v-7.03l-6-3Zm14 0-6 3v7.03l6-3V9.24ZM7.45 6.52 14.2 9.9l2.35-1.18-6.75-3.37-2.35 1.17Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.24L5.24 7.62 12 11l6.76-3.38L12 4.24ZM5 9.24v7.03l6 3v-7.03l-6-3Zm14 0-6 3v7.03l6-3V9.24ZM7.45 6.52 14.2 9.9l2.35-1.18-6.75-3.37-2.35 1.17Z'/%3E%3C/svg%3E");
}

.home-body .proof-item:nth-child(3)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5.2v6.15c0 5.05 3.33 8.88 8 10.65 4.67-1.77 8-5.6 8-10.65V5.2L12 2Zm0 2.16 6 2.4v4.79c0 3.89-2.34 6.91-6 8.5-3.66-1.59-6-4.61-6-8.5V6.56l6-2.4Zm4.24 5.18-5.32 5.32-2.32-2.32-1.42 1.42 3.74 3.74 6.74-6.74-1.42-1.42Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5.2v6.15c0 5.05 3.33 8.88 8 10.65 4.67-1.77 8-5.6 8-10.65V5.2L12 2Zm0 2.16 6 2.4v4.79c0 3.89-2.34 6.91-6 8.5-3.66-1.59-6-4.61-6-8.5V6.56l6-2.4Zm4.24 5.18-5.32 5.32-2.32-2.32-1.42 1.42 3.74 3.74 6.74-6.74-1.42-1.42Z'/%3E%3C/svg%3E");
}

.home-body .proof-item:nth-child(4)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v3h4v2.5c0 2.8-1.86 5.16-4.41 5.93A5.03 5.03 0 0 1 13 17.9V20h4v2H7v-2h4v-2.1a5.03 5.03 0 0 1-3.59-3.47A6.22 6.22 0 0 1 3 8.5V6h4V3Zm2 2v7.5a3 3 0 1 0 6 0V5H9ZM5 8v.5c0 1.52.8 2.86 2 3.62V8H5Zm12 0v4.12a4.2 4.2 0 0 0 2-3.62V8h-2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h10v3h4v2.5c0 2.8-1.86 5.16-4.41 5.93A5.03 5.03 0 0 1 13 17.9V20h4v2H7v-2h4v-2.1a5.03 5.03 0 0 1-3.59-3.47A6.22 6.22 0 0 1 3 8.5V6h4V3Zm2 2v7.5a3 3 0 1 0 6 0V5H9ZM5 8v.5c0 1.52.8 2.86 2 3.62V8H5Zm12 0v4.12a4.2 4.2 0 0 0 2-3.62V8h-2Z'/%3E%3C/svg%3E");
}

.home-body .proof-item + .proof-item {
  border-left: 1px solid rgb(218 186 133 / 20%);
}

.home-body .proof-item strong {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  margin: 0 0 4px;
  color: #d9b77e;
  font-size: clamp(28px, 2.35vw, 44px);
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-body .proof-item h2 {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 10px;
  color: #d9b77e;
  font-size: 14px;
  letter-spacing: 0;
}

.home-body .proof-item p {
  grid-column: 2;
  grid-row: 3;
  max-width: 280px;
  color: rgb(244 238 228 / 70%);
  font-size: 13px;
  line-height: 1.5;
}

.feature-strip {
  position: relative;
  display: grid;
  place-items: center;
  height: calc(100vw / 3.2);
  min-height: 360px;
  overflow: hidden;
  border-top: 10px solid var(--white);
}

.feature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgb(255 255 255 / 35%), transparent 34%);
}

.perfume {
  background: #d4bd9b;
}

.product-range {
  background: #9a7a66;
  padding: 0 80px;
  max-width: 100%;
}

.product-range .strip-copy {
  max-width: 700px;
  padding: 0 30px;
}

.product-range > img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.strip-copy {
  position: absolute;
  top: clamp(42px, 4.4vw, 78px);
  z-index: 2;
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 2px rgb(0 0 0 / 18%);
}

.strip-copy span,
.tile-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  opacity: .86;
}

.strip-copy h2 {
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 900;
}

.strip-copy p {
  margin: 5px 0 10px;
  font-size: 17px;
  font-weight: 700;
}

.micro-links a {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
}

.feature-strip > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
}

.product-range > img {
  width: 100%;
  max-height: none;
  object-position: center bottom;
}

.holiday-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px clamp(24px, 8vw, 180px);
  background: linear-gradient(180deg, #fbfaf7 0%, #eef2f1 100%);
}

.holiday-grid article {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 76%, rgb(207 194 176 / 22%), transparent 20%),
    linear-gradient(135deg, #fcfbf8 0%, #f4f6f5 48%, #ebe8e2 100%);
  border: 1px solid rgb(25 31 42 / 7%);
  border-radius: 12px;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.holiday-grid article:hover {
  border-color: rgb(196 154 101 / 28%);
  box-shadow: none;
  transform: translateY(-4px);
}

.tile-copy {
  position: absolute;
  top: clamp(26px, 3.1vw, 48px);
  z-index: 2;
  width: 92%;
  color: #151b27;
  text-align: center;
}

.tile-copy h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.015em;
}

.tile-copy p {
  max-width: 520px;
  margin: 9px auto 15px;
  color: #2f3745;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.tile-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7e694f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tile-copy .micro-links a {
  border-color: transparent;
  background: transparent;
  color: #161d2a;
  font-size: 12px;
  font-weight: 700;
}

.holiday-grid article img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.techniques {
  position: relative;
  padding: 30px 0 66px;
  background: var(--white);
  text-align: center;
}

.techniques h2 {
  margin-bottom: 18px;
  font-size: clamp(23px, 2.4vw, 31px);
}

.technique-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  z-index: 10;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 28px;
  font-weight: bold;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--white);
  transform: scale(1.05);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
}

.carousel-track figure {
  flex-shrink: 0;
  width: calc((100% - 28px) / 3);
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  aspect-ratio: 16 / 9;
}

.carousel-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.carousel-dots span {
  width: 27px;
  height: 5px;
  cursor: pointer;
  background: #e3e0dc;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.carousel-dots span:hover {
  background: #c4c1bc;
}

.carousel-dots .active {
  background: #aaa7a2;
}

.process {
  padding: 96px 20px 112px;
  background: var(--white);
}

.process-card {
  max-width: 1110px;
  margin: 0 auto;
  padding: 46px 56px 42px;
  text-align: center;
  border: 1px solid #f0eeea;
  box-shadow: 0 18px 70px rgb(25 35 48 / 6%);
}

.process-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.process-logo img {
  display: block;
  width: min(260px, 58vw);
  height: auto;
}

.process h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #26304f;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
}

.process h2 span {
  color: var(--orange);
}

.process-card > p {
  margin: 24px 0 42px;
  color: #667083;
  font-size: 14px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  min-width: 0;
}

.process li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 34px;
  right: -16px;
  color: #c8c5c0;
}

.process i {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  color: var(--orange);
  border: 2px solid #f1c7b3;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.process strong,
.process small {
  display: block;
}

.process strong {
  font-size: 13px;
}

.process small {
  margin-top: 5px;
  color: #7b828d;
  font-size: 11px;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.promise-row span {
  padding: 14px 10px;
  color: #26304f;
  border: 1px solid #f0d4c6;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 48px 70px;
  background: #f1f1f0;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -88px;
  z-index: 0;
  width: min(1600px, 96vw);
  height: 360px;
  background: url("data:image/svg+xml,%3Csvg width='1600' height='360' viewBox='0 0 1600 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M90 330C430 360 930 300 1510 60' fill='none' stroke='%23e8723d' stroke-opacity='.15' stroke-width='80' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.footer-arc {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 150px 20px 90px;
  text-align: center;
}

.footer-arc::before {
  content: "";
  position: absolute;
  top: -400px;
  left: 50%;
  z-index: -1;
  width: max(1600px, 120vw);
  height: 640px;
  background: #f1f1f0;
  border-radius: 50%;
  transform: translateX(-50%);
}

.footer-arc img {
  width: min(400px, 54vw);
  height: auto;
}

.footer-arc p {
  margin: 0;
  color: #5f6671;
  font-size: clamp(24px, 2.8vw, 40px);
}

.footer-top,
.footer-links {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
}

.footer-top {
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d5d2cd;
}

.footer-top h2,
.signup label,
.footer-links h3 {
  margin: 0 0 13px;
  color: #333945;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: 8px;
  background: transparent !important;
  font-weight: 900;
  font-size: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.socials a:hover {
  box-shadow: 0 10px 22px rgb(20 22 28 / 14%);
  transform: translateY(-2px);
}

.socials a:nth-child(1) { background: #f23c55; }
.socials a:nth-child(2) { background: #316fb2; }
.socials a:nth-child(3) { background: #d52230; }
.socials a:nth-child(4) { background: #111111; }
.socials a:nth-child(5) { background: #e22d24; }
.socials a:nth-child(6) { background: #111111; }

.socials a::before {
  content: none;
  width: 21px;
  height: 21px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}

.socials a img {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.socials a[aria-label="Instagram"]::before {
  width: 22px;
  height: 22px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2.2a3.6 3.6 0 0 0-3.6 3.6v8.4a3.6 3.6 0 0 0 3.6 3.6h8.4a3.6 3.6 0 0 0 3.6-3.6V7.8a3.6 3.6 0 0 0-3.6-3.6H7.8ZM12 7.4a4.6 4.6 0 1 1 0 9.2 4.6 4.6 0 0 1 0-9.2Zm0 2.2a2.4 2.4 0 1 0 0 4.8 2.4 2.4 0 0 0 0-4.8Zm5-2.9a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2.2a3.6 3.6 0 0 0-3.6 3.6v8.4a3.6 3.6 0 0 0 3.6 3.6h8.4a3.6 3.6 0 0 0 3.6-3.6V7.8a3.6 3.6 0 0 0-3.6-3.6H7.8ZM12 7.4a4.6 4.6 0 1 1 0 9.2 4.6 4.6 0 0 1 0-9.2Zm0 2.2a2.4 2.4 0 1 0 0 4.8 2.4 2.4 0 0 0 0-4.8Zm5-2.9a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2Z'/%3E%3C/svg%3E");
}

.socials a[aria-label="LinkedIn"]::before {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.98 3.5A2.48 2.48 0 1 1 0 3.5a2.48 2.48 0 0 1 4.98 0ZM.4 8.1h4.15V24H.4V8.1Zm7.25 0h3.98v2.17h.06c.55-1.05 1.91-2.17 3.94-2.17 4.21 0 4.99 2.77 4.99 6.38V24h-4.15v-8.44c0-2.01-.04-4.6-2.8-4.6-2.81 0-3.24 2.2-3.24 4.46V24H7.65V8.1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.98 3.5A2.48 2.48 0 1 1 0 3.5a2.48 2.48 0 0 1 4.98 0ZM.4 8.1h4.15V24H.4V8.1Zm7.25 0h3.98v2.17h.06c.55-1.05 1.91-2.17 3.94-2.17 4.21 0 4.99 2.77 4.99 6.38V24h-4.15v-8.44c0-2.01-.04-4.6-2.8-4.6-2.81 0-3.24 2.2-3.24 4.46V24H7.65V8.1Z'/%3E%3C/svg%3E");
}

.socials a[aria-label="Pinterest"]::before {
  width: 22px;
  height: 22px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 0C5.4 0 0 5.4 0 12.04c0 4.9 2.93 9.11 7.13 10.98-.1-.84-.18-2.13.04-3.05l1.55-6.58s-.4-.8-.4-1.98c0-1.86 1.08-3.25 2.42-3.25 1.14 0 1.69.86 1.69 1.89 0 1.15-.73 2.86-1.1 4.45-.31 1.33.67 2.41 1.98 2.41 2.37 0 4.2-2.5 4.2-6.12 0-3.2-2.3-5.44-5.59-5.44-3.8 0-6.04 2.85-6.04 5.8 0 1.15.44 2.38 1 3.05.1.13.12.25.09.38l-.37 1.48c-.06.24-.2.29-.45.17-1.67-.78-2.72-3.23-2.72-5.2 0-4.23 3.07-8.12 8.86-8.12 4.65 0 8.27 3.31 8.27 7.75 0 4.62-2.91 8.34-6.96 8.34-1.36 0-2.64-.71-3.08-1.54l-.84 3.2c-.3 1.17-1.12 2.64-1.67 3.54 1.26.39 2.59.6 3.98.6C18.6 24.08 24 18.68 24 12.04S18.68 0 12.04 0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 0C5.4 0 0 5.4 0 12.04c0 4.9 2.93 9.11 7.13 10.98-.1-.84-.18-2.13.04-3.05l1.55-6.58s-.4-.8-.4-1.98c0-1.86 1.08-3.25 2.42-3.25 1.14 0 1.69.86 1.69 1.89 0 1.15-.73 2.86-1.1 4.45-.31 1.33.67 2.41 1.98 2.41 2.37 0 4.2-2.5 4.2-6.12 0-3.2-2.3-5.44-5.59-5.44-3.8 0-6.04 2.85-6.04 5.8 0 1.15.44 2.38 1 3.05.1.13.12.25.09.38l-.37 1.48c-.06.24-.2.29-.45.17-1.67-.78-2.72-3.23-2.72-5.2 0-4.23 3.07-8.12 8.86-8.12 4.65 0 8.27 3.31 8.27 7.75 0 4.62-2.91 8.34-6.96 8.34-1.36 0-2.64-.71-3.08-1.54l-.84 3.2c-.3 1.17-1.12 2.64-1.67 3.54 1.26.39 2.59.6 3.98.6C18.6 24.08 24 18.68 24 12.04S18.68 0 12.04 0Z'/%3E%3C/svg%3E");
}

.socials a[aria-label="X"]::before {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9 2h3.68l-8.04 9.19L24 22h-7.41l-5.8-7.59L4.15 22H.46l8.6-9.83L0 2h7.59l5.24 6.93L18.9 2Zm-1.29 18.1h2.04L6.48 3.8H4.29L17.61 20.1Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9 2h3.68l-8.04 9.19L24 22h-7.41l-5.8-7.59L4.15 22H.46l8.6-9.83L0 2h7.59l5.24 6.93L18.9 2Zm-1.29 18.1h2.04L6.48 3.8H4.29L17.61 20.1Z'/%3E%3C/svg%3E");
}

.socials a[aria-label="YouTube"]::before {
  width: 24px;
  height: 18px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.4 3.13A3.5 3.5 0 0 0 24.94.65C22.78.08 14 .08 14 .08S5.22.08 3.06.65A3.5 3.5 0 0 0 .6 3.13C.02 5.32.02 9.9.02 9.9s0 4.58.58 6.77a3.5 3.5 0 0 0 2.46 2.48c2.16.57 10.94.57 10.94.57s8.78 0 10.94-.57a3.5 3.5 0 0 0 2.46-2.48c.58-2.19.58-6.77.58-6.77s0-4.58-.58-6.77ZM11.2 14.02V5.78l7.32 4.12-7.32 4.12Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.4 3.13A3.5 3.5 0 0 0 24.94.65C22.78.08 14 .08 14 .08S5.22.08 3.06.65A3.5 3.5 0 0 0 .6 3.13C.02 5.32.02 9.9.02 9.9s0 4.58.58 6.77a3.5 3.5 0 0 0 2.46 2.48c2.16.57 10.94.57 10.94.57s8.78 0 10.94-.57a3.5 3.5 0 0 0 2.46-2.48c.58-2.19.58-6.77.58-6.77s0-4.58-.58-6.77ZM11.2 14.02V5.78l7.32 4.12-7.32 4.12Z'/%3E%3C/svg%3E");
}

.socials a[aria-label="TikTok"]::before {
  width: 22px;
  height: 22px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.56 5.15A6.24 6.24 0 0 0 21.2 6.3v3.86a9.76 9.76 0 0 1-5.14-1.49v7.15a6.18 6.18 0 1 1-6.18-6.18c.43 0 .85.04 1.25.13v3.96a2.34 2.34 0 1 0 1.62 2.23V0h3.98c.15 1.96.48 3.54.83 5.15Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.56 5.15A6.24 6.24 0 0 0 21.2 6.3v3.86a9.76 9.76 0 0 1-5.14-1.49v7.15a6.18 6.18 0 1 1-6.18-6.18c.43 0 .85.04 1.25.13v3.96a2.34 2.34 0 1 0 1.62 2.23V0h3.98c.15 1.96.48 3.54.83 5.15Z'/%3E%3C/svg%3E");
}

.signup {
  justify-self: end;
  width: min(100%, 520px);
}

.signup label {
  display: block;
}

.signup div {
  display: grid;
  grid-template-columns: 1fr 1fr 130px;
}

.signup input,
.signup button {
  min-height: 42px;
  border: 0;
  font: inherit;
}

.signup input {
  min-width: 0;
  padding: 0 20px;
  background: #d9d8d6;
}

.signup button {
  color: var(--white);
  background: var(--orange);
}

.footer-email {
  position: relative;
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(0, auto) 58px;
  align-items: center;
  column-gap: 18px;
  width: min(100%, 520px);
  text-align: right;
}

.footer-email span {
  grid-column: 1;
  color: #b9bec6;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-email a {
  grid-column: 1;
  color: #252b35;
  font-size: clamp(26px, 2.3vw, 40px);
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.footer-email i {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  background: #2d2d2d;
  border-radius: 50%;
}

.footer-email i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='34' height='26' viewBox='0 0 34 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2.5' y='3.5' width='29' height='19' rx='1.5' stroke='white' stroke-width='3'/%3E%3Cpath d='M4 6L17 15L30 6' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 34px 26px no-repeat;
}

.footer-email i::after {
  content: none;
}

.footer-links {
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  padding-top: 32px;
}

.footer-links a {
  display: block;
  margin: 0 0 9px;
  color: #666c76;
  font-size: 13px;
  line-height: 1.35;
}

.products-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 70vh;
  min-height: 520px;
  margin-top: -66px;
  padding-top: 66px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("../images/banners/product/setinya-packaging-products-banner.jpg") center/cover no-repeat;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.products-hero-content h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.5px;
}

.products-hero-content p {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  opacity: 0.95;
}

.category-nav {
  padding: 46px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.category-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 178px;
  min-height: 60px;
  padding: 0 28px;
  border: 2px solid #dfddd8;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 2px 0 rgb(16 22 34 / 3%);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.category-btn:hover {
  border-color: #f07b4c;
  color: #f05f2d;
  transform: translateY(-1px);
}

.category-btn.active {
  border-color: #f26b3d;
  background: #fff3ec;
  color: #f05f2d;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  font-size: 22px;
  line-height: 1;
}

.category-icons {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
  flex-wrap: wrap;
}

.category-icons img {
  width: clamp(50px, 8vw, 80px);
  height: clamp(50px, 8vw, 80px);
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.category-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.category-labels {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 5vw, 30px);
  flex-wrap: wrap;
  align-items: center;
}

.category-label {
  min-width: 130px;
  padding: 12px 24px;
  border: 2px solid #dfddd8;
  border-radius: 999px;
  background: var(--white);
  color: var(--steel);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 0 rgb(16 22 34 / 3%);
}

.category-label:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.category-label.active {
  border-color: var(--orange);
  background: rgba(232, 114, 61, 0.08);
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(232, 114, 61, 0.15);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 0 15px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--orange);
}

.search-box input {
  flex: 1;
  min-width: 140px;
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 10px 0;
  outline: none;
}

.search-box input::placeholder {
  color: #999;
}

.search-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0 5px;
}

.stats-section {
  padding: 80px 20px;
  background: var(--white);
  text-align: center;
}

.stats-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--orange);
}

.stat-text {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--steel);
  font-weight: 600;
  max-width: 300px;
}

.products-section {
  padding: 80px 20px;
  background: var(--white);
}

.products-section > * {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.main-title {
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  text-align: center;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1px;
}

.sub-title {
  display: block;
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--steel);
  position: relative;
  padding-bottom: 20px;
}

.sub-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.packaging-carousel {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.packaging-slide {
  flex: 1;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.packaging-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.05);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1220px;
  margin: 50px auto 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px 18px;
  text-align: center;
}

.product-info h4 {
  min-height: 36px;
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: 0.5px;
}

.product-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
}

.product-links a {
  color: var(--orange);
  font-weight: 700;
  transition: color 0.3s ease;
}

.product-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.demo-page {
  min-height: calc(100vh - 54px);
  padding: 150px 24px 80px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgb(7 13 27 / 65%), rgb(7 13 27 / 92%)),
    url("../images/misc/hero-packaging.svg") center 58% / min(760px, 90vw) no-repeat,
    var(--midnight);
}

.demo-page h1 {
  margin-bottom: 18px;
  color: #ddbd8f;
  font-size: clamp(46px, 8vw, 92px);
}

.demo-page p {
  max-width: 720px;
  margin: 0 auto;
  color: rgb(255 255 255 / 82%);
  font-size: 20px;
  line-height: 1.6;
}

.solutions-page {
  background: var(--white);
}

.solutions-hero {
  position: relative;
  min-height: 760px;
  margin-top: -66px;
  padding: 112px 20px 380px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 10%), rgb(255 255 255 / 0) 34%, rgb(255 255 255 / 12%)),
    url("../images/banners/solution/background.png") center 25% / cover no-repeat;
}

.solutions-hero::before,
.solutions-hero::after {
  content: none;
}

.solutions-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 700px);
  align-items: center;
  gap: 30px;
  max-width: 960px;
  margin: 64px auto 0;
  padding: 38px 48px;
  color: var(--ink);
  background: rgb(255 255 255 / 87%);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgb(16 22 34 / 16%);
}

.solutions-logo-disc {
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  background: var(--midnight);
  border: 6px solid #f2e1cf;
  border-radius: 50%;
}

.solutions-logo-disc img {
  width: 126px;
  filter: drop-shadow(0 2px 8px rgb(0 0 0 / 35%));
}

.solutions-hero h1,
.solutions-stat h2,
.solution-title,
.solution-flow h2,
.dieline-section h2,
.solution-project-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.solutions-hero h1 {
  max-width: 680px;
  font-size: clamp(33px, 3.9vw, 56px);
  line-height: 1.04;
  font-weight: 900;
}

.solutions-hero p {
  max-width: 680px;
  margin: 12px 0 18px;
  color: #4e5662;
  font-size: 17px;
  line-height: 1.35;
}

.solutions-hero strong {
  display: inline-block;
  width: auto;
  margin-left: 24px;
  padding: 13px 38px;
  color: #6c3218;
  background: #f6c05d;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.solutions-stat {
  padding: 32px 20px 152px;
  text-align: center;
}

.solutions-stat h2 {
  color: #4b4f56;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 500;
}

.solution-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px 210px;
  text-align: center;
}

.solution-section.compact {
  max-width: 1180px;
  padding-bottom: 142px;
}

.solution-title {
  position: relative;
  display: inline-block;
  margin-bottom: 72px;
  padding-bottom: 13px;
  color: #171b22;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.solution-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82%;
  height: 7px;
  background: var(--orange);
  transform: translateX(-50%);
}

.technique-grid,
.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.technique-grid {
  gap: 76px 92px;
}

.technique-grid article,
.structure-grid article {
  min-width: 0;
}

.technique-grid h3,
.structure-grid h3 {
  min-height: 42px;
  margin: 0 0 14px;
  color: #20242b;
  font-size: 14px;
  line-height: 1.14;
  font-weight: 900;
}

.technique-grid img {
  width: 172px;
  height: 102px;
  margin: 0 auto;
  object-fit: cover;
}

.structure-grid {
  gap: 56px 54px;
}

.structure-grid article > div {
  position: relative;
  display: block;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
  background: #f0f0ef;
}

.structure-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.structure-image-swap img {
  display: block;
  transition: opacity 220ms ease;
}

.structure-image-swap img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.structure-image-swap:hover img + img {
  opacity: 1;
}

.solution-flow {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px 42px;
  text-align: center;
}

.solution-flow h2 {
  color: #111017;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: .95;
  font-weight: 400;
}

.solution-flow h2::after {
  content: none;
}

.solution-flow-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 246px;
  margin: 22px auto 13px;
  color: var(--orange);
}

.solution-flow-mark::before,
.solution-flow-mark::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.solution-flow-mark::after {
  order: 3;
}

.solution-flow-mark {
  font-size: 0;
}

.solution-flow-mark::before {
  box-shadow: 69px 0 0 -1px currentColor;
}

.solution-flow-mark::after {
  box-shadow: -69px 0 0 -1px currentColor;
}

.solution-flow-mark {
  background:
    radial-gradient(circle, currentColor 0 2px, transparent 2.5px),
    linear-gradient(45deg, transparent 39%, currentColor 40% 60%, transparent 61%),
    linear-gradient(-45deg, transparent 39%, currentColor 40% 60%, transparent 61%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px 6px, 11px 11px, 11px 11px;
}

.solution-flow-subtitle {
  margin: 0;
  color: #111017;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.3vw, 27px);
  line-height: 1.1;
}

.solution-flow-note {
  margin: 10px 0 30px;
  color: #565a62;
  font-size: 14px;
  line-height: 1.3;
}

.solution-flow ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 84px 0 0;
  list-style: none;
}

.solution-flow ol::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  right: 5px;
  z-index: 0;
  height: 60px;
  background: linear-gradient(90deg, #de4f18 0%, var(--orange) 58%, #ec7338 100%);
  clip-path: polygon(7% 38%, 90% 38%, 90% 5%, 100% 50%, 90% 95%, 90% 62%, 7% 62%);
}

.solution-flow ol::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  z-index: 1;
  width: 108px;
  height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 44'%3E%3Cg fill='none' stroke='%23e8723d' stroke-width='6' stroke-linejoin='miter'%3E%3Cpath opacity='.18' d='M4 4l18 18L4 40'/%3E%3Cpath opacity='.28' d='M22 4l18 18-18 18'/%3E%3Cpath opacity='.42' d='M40 4l18 18-18 18'/%3E%3Cpath opacity='.58' d='M58 4l18 18-18 18'/%3E%3Cpath opacity='.74' d='M76 4l18 18-18 18'/%3E%3Cpath opacity='.9' d='M94 4l18 18-18 18'/%3E%3Cpath d='M112 4l18 18-18 18'/%3E%3C/g%3E%3C/svg%3E") left center / contain no-repeat;
}

.solution-flow li {
  position: relative;
  min-width: 0;
  padding: 0 16px;
}

.solution-flow li img {
  width: 132px;
  height: 104px;
  margin: 22px auto 0;
  object-fit: contain;
}

.solution-flow span {
  position: absolute;
  top: -78px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, #e04f18 0%, var(--orange) 100%);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgb(232 114 61 / 20%);
  font-size: 16px;
  font-weight: 900;
  transform: translateX(-50%);
}

.solution-flow h3 {
  margin: 0 0 15px;
  color: #111017;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.solution-flow li p {
  min-height: 34px;
  max-width: 160px;
  margin: 0 auto;
  color: #343943;
  font-size: 11px;
  line-height: 1.25;
}

.dieline-section {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 18px 34px;
  text-align: center;
}

.dieline-section h2 {
  color: #111017;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.05;
  font-weight: 400;
}

.dieline-section .solution-flow-mark {
  width: 154px;
  margin: 12px auto 10px;
}

.dieline-section > p {
  margin: 0 auto 22px;
  color: #6a7079;
  font-size: 12px;
  line-height: 1.4;
}

.dieline-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
}

.dieline-window {
  overflow: hidden;
}

.dieline-grid {
  display: flex;
  gap: 12px;
  margin: 0;
  transition: transform 320ms ease;
}

.dieline-grid.is-shifted {
  transform: translateX(calc(-1 * var(--dieline-shift, 0px)));
}

.dieline-card {
  flex: 0 0 calc((100% - 48px) / 5);
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ece8e4;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgb(20 22 28 / 7%);
}

.dieline-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: #fbfbfa;
}

.dieline-card div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 10px;
  min-height: 68px;
  padding: 12px 14px 14px;
  text-align: left;
}

.dieline-card span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  background: #ff7a1a;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.dieline-card strong {
  display: block;
  min-width: 0;
  color: #17100b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
}

.dieline-card small {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #6f747d;
  font-size: 12px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dieline-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--orange);
  background: #ffffff;
  border: 1px solid #eee5df;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgb(20 22 28 / 9%);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.dieline-nav:hover {
  border-color: #f0b293;
  background: #fff8f4;
}

.solution-project-cta {
  margin-top: 0;
  padding: 27px 20px 46px;
  text-align: center;
  border-top: 1px solid #f2dfd4;
}

.solution-project-cta h2 {
  color: #111017;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
  font-weight: 400;
}

.solution-project-cta p {
  margin: 9px auto 18px;
  color: #555b65;
  font-size: 12px;
}

.solution-project-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 34px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.about-body {
  background: var(--white);
}

.about-body .site-header {
  color: #20242b;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 18px rgb(16 22 34 / 8%);
  backdrop-filter: blur(12px);
}

.about-body .brand-logo {
  filter: none;
}

.about-body .main-nav a:hover,
.about-body .main-nav a[aria-current="page"] {
  color: var(--orange);
}

.about-body .icon-button,
.about-body .language-pill {
  color: #20242b;
  border-color: rgb(32 36 43 / 24%);
  background: rgb(32 36 43 / 4%);
}

.about-page {
  color: #111722;
  background: var(--white);
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 86px);
  max-width: 1240px;
  min-height: 540px;
  margin: 0 auto;
  padding: 76px 48px 56px;
  overflow: hidden;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgb(232 114 61 / 24%);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero::before {
  right: 0;
  top: 132px;
  width: 460px;
  height: 160px;
  transform: rotate(-23deg);
}

.about-hero::after {
  right: 84px;
  top: 190px;
  width: 360px;
  height: 118px;
  transform: rotate(-23deg);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  margin: 0;
  color: #1b202c;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero h1 span,
.about-hero p strong,
.about-tagline span {
  color: var(--orange);
}

.about-hero p {
  position: relative;
  max-width: 330px;
  margin: 54px 0 0;
  color: #747984;
  font-size: 17px;
  line-height: 1.55;
}

.about-hero p::before {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  width: 42px;
  height: 3px;
  background: var(--orange);
}

.about-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 350px;
}

.about-cube {
  position: absolute;
  right: 94px;
  top: 58px;
  display: grid;
  place-items: center;
  width: min(320px, 36vw);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 92%), rgb(231 226 217 / 94%)),
    #eee8de;
  border: 1px solid #ece6db;
  box-shadow: 0 34px 80px rgb(63 49 33 / 16%);
}

.about-cube img {
  width: 72%;
  opacity: .18;
  filter: grayscale(1);
}

.about-arrow {
  position: absolute;
  right: 24px;
  top: 142px;
  width: min(430px, 46vw);
  height: 118px;
  background: linear-gradient(90deg, #f6a04f, #e56425 70%, #d84d18);
  clip-path: polygon(0 66%, 64% 66%, 64% 30%, 100% 50%, 64% 100%, 64% 74%, 0 74%);
  filter: drop-shadow(0 16px 22px rgb(172 72 28 / 28%));
  transform: rotate(-24deg);
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1060px;
  margin: 0 auto;
  padding: 10px 28px 34px;
}

.about-proof article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 178px;
  padding: 0 30px;
  text-align: center;
}

.about-proof article + article {
  border-left: 1px solid #e1ded8;
}

.about-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--orange);
}

.about-icon::before,
.about-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
}

.about-icon-cube::before {
  transform: rotate(30deg) skewY(-30deg) scaleY(.86);
}

.about-icon-cube::after {
  inset: 18px 8px auto;
  height: 2px;
  border: 0;
  background: currentColor;
}

.about-icon-award::before {
  border-radius: 50%;
}

.about-icon-award::after {
  inset: 29px 15px 0;
  border-width: 0 2px 2px;
  transform: skewX(-15deg);
}

.about-icon-people::before {
  inset: 8px 14px 22px;
  border-radius: 50%;
}

.about-icon-people::after {
  inset: 24px 7px 8px;
  border-radius: 18px 18px 0 0;
}

.about-icon-target::before,
.about-icon-target::after {
  border-radius: 50%;
}

.about-icon-target::after {
  inset: 0;
  border-width: 0;
  background:
    linear-gradient(currentColor 0 0) center / 100% 2px no-repeat,
    linear-gradient(currentColor 0 0) center / 2px 100% no-repeat;
}

.about-proof strong {
  color: #222833;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.about-proof h2 {
  margin: 8px 0 8px;
  color: #343945;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.about-proof p {
  max-width: 150px;
  margin: 0;
  color: #6f7480;
  font-size: 11px;
  line-height: 1.35;
}

.about-tagline {
  margin: 8px 20px 0;
  color: #5d626d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 8px;
  text-align: center;
  text-transform: uppercase;
}

.about-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 112px 42px 0;
}

.about-section > h2,
.about-manufacturing h2 {
  position: relative;
  width: max-content;
  margin: 0 auto 68px;
  color: #05080d;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.about-section > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 4px;
  background: var(--orange);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.story-grid img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  background: #f2f0ec;
}

.story-grid article:nth-child(3) img {
  object-fit: contain;
  padding: 8px;
}

.story-grid h3 {
  margin: 14px 0 0;
  color: #222630;
  font-size: 17px;
  text-align: center;
}

.about-story {
  max-width: 1240px;
}

.brand-story-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.brand-story-copy {
  padding-top: 6px;
}

.brand-story-lede {
  margin: 0 0 56px;
  color: #161b22;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 700;
}

.brand-story-copy article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 42px;
  border-bottom: 1px solid #dfe2e6;
}

.brand-story-copy article + article {
  padding-top: 42px;
}

.brand-story-copy article:last-child {
  border-bottom: 0;
}

.brand-story-copy span {
  color: #ff5a22;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.brand-story-copy h3 {
  margin: 0 0 13px;
  color: #141920;
  font-size: 20px;
  line-height: 1.2;
}

.brand-story-copy p:not(.brand-story-lede) {
  margin: 0;
  color: #232932;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}

.brand-story-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-story-collage img,
.brand-story-journey img {
  width: 100%;
  object-fit: cover;
  background: #f2f0ec;
}

.brand-story-collage img {
  aspect-ratio: 1.33 / 1;
  border-radius: 8px;
}

.brand-story-collage .wide {
  grid-column: 1 / -1;
  aspect-ratio: 2.55 / 1;
}

.brand-story-journey {
  margin-top: 42px;
  text-align: center;
}

.brand-story-journey h3 {
  margin: 0 0 8px;
  color: #11161d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-story-journey p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: #535963;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.brand-story-journey > div:not(.journey-dots) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.brand-story-journey img {
  aspect-ratio: 1.55 / 1;
  border-radius: 7px;
}

.journey-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.journey-dots span {
  width: 8px;
  height: 8px;
  background: #cfd2d6;
  border-radius: 50%;
}

.journey-dots span:first-child {
  background: #ff5a22;
}

.about-divider-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 56px;
}

.about-divider-title span {
  height: 2px;
  background: #a8a8a8;
}

.about-divider-title h2 {
  margin: 0;
  color: #05080d;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 54px;
}

.review-grid article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px 26px;
  min-height: 240px;
  padding: 24px 28px 22px;
  border: 2px solid #f27645;
  border-radius: 18px;
}

.review-grid img {
  grid-row: span 2;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
}

.review-grid h3 {
  margin: 36px 0 2px;
  color: #4a4d55;
  font-size: 20px;
  font-weight: 500;
}

.review-grid small {
  color: #70747c;
  font-size: 10px;
}

.review-grid p {
  grid-column: 1 / -1;
  margin: 0;
  color: #545a63;
  font-size: 13px;
  line-height: 1.25;
}

.review-grid strong {
  grid-column: 1 / -1;
  color: #050505;
  font-size: 22px;
  letter-spacing: 2px;
}

.about-awards {
  padding-top: 138px;
  padding-bottom: 92px;
}

.award-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 26px;
}

.award-strip img {
  width: 100%;
  max-height: 86px;
  object-fit: contain;
  filter: saturate(1.05);
}

.about-awards p {
  margin: 32px 0 0;
  color: #747984;
  font-size: 19px;
  text-align: center;
}

.about-manufacturing {
  max-width: 1360px;
  padding-top: 92px;
  padding-bottom: 110px;
}

.section-kicker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #1f2733;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.about-manufacturing h2 {
  margin-bottom: 58px;
  font-size: clamp(42px, 4.6vw, 58px);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.manufacturing-grid article {
  min-width: 0;
  padding: 24px 24px 26px;
  background: #fcfbf8;
  border: 1px solid #d8d5cf;
  border-radius: 9px;
}

.manufacturing-grid img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  background: #f3f2ef;
}

.manufacturing-grid h3 {
  margin: 26px 0 12px;
  color: #05080d;
  font-size: 23px;
  line-height: 1.1;
}

.manufacturing-grid p {
  margin: 0;
  color: #4f5662;
  font-size: 13px;
  line-height: 1.45;
}

.contact-body {
  background: var(--white);
}

.contact-body .site-header {
  color: #20242b;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 18px rgb(16 22 34 / 8%);
  backdrop-filter: blur(12px);
}

.contact-body .brand-logo {
  filter: none;
}

.contact-body .main-nav a:hover,
.contact-body .main-nav a[aria-current="page"] {
  color: var(--orange);
}

.contact-body .icon-button,
.contact-body .language-pill {
  color: #20242b;
  border-color: rgb(32 36 43 / 24%);
  background: rgb(32 36 43 / 4%);
}

.contact-page {
  color: #111722;
  background: var(--white);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
  max-width: 1260px;
  margin: 0 auto;
  padding: 88px 48px 72px;
}

.contact-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #07101e;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

.contact-hero-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #5e6672;
  font-size: 18px;
  line-height: 1.55;
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: #6a3219;
  background: #f6c05d;
  font-size: 14px;
  font-weight: 900;
}

.contact-quick-links a:nth-child(n + 2) {
  color: #20242b;
  background: #f4f2ee;
  border: 1px solid #dedbd4;
}

.contact-hero-image {
  position: relative;
  margin: 0;
}

.contact-hero-image::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 42%;
  height: 46%;
  background: var(--orange);
  z-index: 0;
}

.contact-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  box-shadow: 0 26px 70px rgb(16 22 34 / 14%);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto 96px;
  padding: 64px 48px 88px;
  background: #f8f6f2;
}

.contact-intro h2,
.contact-locations h2,
.contact-faq h2 {
  margin: 0;
  color: #05080d;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.contact-intro > p {
  margin: 22px 0 38px;
  color: #5e6672;
  font-size: 17px;
  line-height: 1.55;
}

.contact-intro dl {
  display: grid;
  gap: 22px;
  margin: 0;
}

.contact-intro div {
  padding-top: 18px;
  border-top: 1px solid #ddd8ce;
}

.contact-intro dt {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-intro dd {
  margin: 8px 0 0;
  color: #252b35;
  font-size: 17px;
  line-height: 1.4;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e3ded5;
  box-shadow: 0 18px 50px rgb(16 22 34 / 8%);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #252b35;
  font-size: 13px;
  font-weight: 900;
}

.form-honeypot {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: #20242b;
  background: #fbfaf7;
  border: 1px solid #dcd7cf;
  border-radius: 0;
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  min-height: 148px;
  padding-top: 14px;
  resize: vertical;
}

.contact-message,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 52px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.contact-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 48px 0;
}

.contact-services article {
  padding: 30px 28px;
  border-top: 3px solid var(--orange);
  background: #fff;
  box-shadow: 0 16px 44px rgb(16 22 34 / 8%);
}

.contact-services span {
  color: #f0a56d;
  font-size: 14px;
  font-weight: 900;
}

.contact-services h2 {
  margin: 18px 0 14px;
  color: #111722;
  font-size: 24px;
  line-height: 1.1;
}

.contact-services p,
.contact-services a {
  font-size: 14px;
  line-height: 1.5;
}

.contact-services p {
  min-height: 84px;
  margin: 0 0 22px;
  color: #5e6672;
}

.contact-services a {
  color: var(--orange);
  font-weight: 900;
}

.contact-locations {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 54px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 48px 0;
}

.contact-locations ol {
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.contact-locations li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid #ddd8ce;
}

.contact-locations strong {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-locations p {
  margin: 0;
  color: #5e6672;
  font-size: 15px;
  line-height: 1.5;
}

.contact-locations img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #f3f2ef;
}

.contact-faq {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 48px 160px;
}

.contact-faq h2 {
  margin-bottom: 34px;
}

.contact-faq > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact-faq article {
  padding-top: 22px;
  border-top: 1px solid #cfcac1;
}

.contact-faq h3 {
  margin: 0 0 14px;
  color: #111722;
  font-size: 20px;
}

.contact-faq p {
  margin: 0;
  color: #5e6672;
  font-size: 14px;
  line-height: 1.55;
}

.blog-body {
  background: #fffdfa;
}

.blog-body .site-header {
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.blog-body .site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: var(--ink);
}

.blog-body .site-header.scrolled .main-nav a,
.blog-body .site-header.scrolled .nav-item > a {
  color: var(--ink);
  opacity: 0.8;
}

.blog-body .site-header.scrolled .nav-item > a:hover,
.blog-body .site-header.scrolled .nav-item > a[aria-current="page"] {
  color: var(--orange);
  opacity: 1;
}

.blog-body .site-header.scrolled .icon-button,
.blog-body .site-header.scrolled .language-pill {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--ink);
  background: rgba(0, 0, 0, 0.05);
}

.blog-body .brand-logo {
  filter: drop-shadow(0 2px 8px rgb(0 0 0 / 45%));
}

.blog-body .main-nav a:hover,
.blog-body .main-nav a[aria-current="page"] {
  color: #ffd19c;
}

.blog-body .icon-button,
.blog-body .language-pill {
  color: var(--white);
  border-color: rgb(255 255 255 / 38%);
  background: rgb(255 255 255 / 8%);
}

.blog-page {
  --blog-ink: #24373b;
  --blog-muted: #586164;
  --blog-accent: #d76638;
  --blog-rule: #e4ded8;
  max-width: none;
  margin: 0 auto;
  color: var(--blog-ink);
  background: #fffdfa;
}

.blog-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 440px;
  margin-top: -66px;
  padding-top: 66px;
  overflow: hidden;
  background: url("../images/banners/blog/background.png") center / cover no-repeat #f5ecdf;
}

.blog-hero::before {
  content: none;
}

.blog-hero-copy {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 40px 64px;
  border-left: 2px solid #b9844a;
}

.blog-hero h1,
.blog-section-heading h2,
.article-copy h3,
.case-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.blog-hero h1 {
  font-size: clamp(54px, 6vw, 78px);
  line-height: .95;
  font-weight: 700;
}

.blog-hero p {
  max-width: 430px;
  margin: 30px 0 0;
  color: #2e4347;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  font-weight: 700;
}

.blog-section {
  padding: 80px clamp(28px, 6vw, 88px);
}

.latest-articles {
  background: #fff;
}

.case-studies {
  background:
    linear-gradient(115deg, rgb(248 239 229 / 86%), rgb(255 253 250 / 94%) 48%, rgb(244 234 223 / 86%));
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 30px;
}

.blog-section-heading h2 {
  position: relative;
  padding-bottom: 14px;
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1;
}

.blog-section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 5px;
  background: var(--blog-accent);
}

.blog-section-heading a,
.case-card a {
  color: var(--blog-accent);
  font-size: 15px;
  font-weight: 800;
}

.blog-section-heading span,
.case-card span {
  display: inline-block;
  margin-left: 10px;
}

.article-list {
  max-width: 1300px;
  margin: 0 auto;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(220px, 410px) minmax(280px, 1fr) 168px;
  gap: 38px;
  align-items: center;
  min-height: 178px;
  padding: 18px 0;
  border-bottom: 1px solid var(--blog-rule);
}

.article-row img {
  width: 100%;
  aspect-ratio: 2.45 / 1;
  object-fit: cover;
  border-radius: 4px;
  background: #eee9e2;
}

.article-row:nth-child(1) img {
  object-position: center 45%;
}

.article-row:nth-child(4) img {
  object-position: center 58%;
}

.article-copy h3 {
  max-width: 690px;
  color: #111;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.13;
  font-weight: 500;
}

.article-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #495356;
  font-size: 14px;
  line-height: 1.55;
}

.article-meta {
  display: grid;
  justify-items: start;
  gap: 17px;
  color: #4d575a;
  font-size: 14px;
}

.article-meta span:first-child::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  background:
    linear-gradient(#4d575a 0 0) 3px 5px / 8px 1px no-repeat,
    linear-gradient(#4d575a 0 0) 3px 8px / 8px 1px no-repeat,
    linear-gradient(#4d575a 0 0) 4px 1px / 1px 3px no-repeat,
    linear-gradient(#4d575a 0 0) 9px 1px / 1px 3px no-repeat;
  border: 1px solid #4d575a;
  border-radius: 2px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.case-studies .blog-section-heading {
  max-width: 1080px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 6px;
  background: #eee9e2;
}

.case-card h3 {
  margin-top: 20px;
  color: #111;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.12;
  font-weight: 500;
}

.case-card p {
  min-height: 54px;
  margin: 14px 0 18px;
  color: #495356;
  font-size: 13px;
  line-height: 1.45;
}

.case-card > a {
  margin-top: auto;
}

.detail-body,
.blog-body {
  background: var(--white);
}

.detail-body .site-header {
  color: #20242b;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 18px rgb(16 22 34 / 8%);
  backdrop-filter: blur(12px);
}

.detail-body .brand-logo {
  filter: none;
}

.detail-body .main-nav a:hover,
.detail-body .main-nav a[aria-current="page"] {
  color: var(--orange);
}

.detail-body .icon-button,
.detail-body .language-pill {
  color: #20242b;
  border-color: rgb(32 36 43 / 24%);
  background: rgb(32 36 43 / 4%);
}

.product-card,
.article-row[data-post] {
  cursor: pointer;
}

.article-row[data-post]:hover h3,
.product-card:hover h4 {
  color: var(--orange);
}

.blog-detail-page {
  --article-ink: #17201f;
  --article-muted: #66706d;
  --article-accent: #b95f38;
  --article-paper: #f6f1e9;
  padding: 136px 28px 110px;
  color: var(--article-ink);
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgb(32 43 40 / 4%) 50%, transparent 50.05%) 0 0 / 100% 100%,
    #fbfaf7;
}

.reading-progress {
  position: fixed;
  z-index: 40;
  top: 66px;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 80ms linear;
}

.article-detail-header {
  max-width: 1080px;
  margin: 0 auto 72px;
  text-align: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--article-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-detail-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--article-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.article-detail-eyebrow::before,
.article-detail-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.article-detail-header h1 {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--article-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--article-muted);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.article-detail-meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--article-accent);
  border: 0;
  border-radius: 50%;
}

.article-detail-meta span:first-child::before {
  display: none;
}

.article-detail-hero {
  position: relative;
  max-width: 1380px;
  margin: 0 auto 92px;
  padding: 0;
}

.article-detail-hero img {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
  background: #e9e4dc;
  box-shadow: 0 30px 80px rgb(31 39 36 / 14%);
}

.article-detail-hero::after {
  content: "SETINYA / JOURNAL";
  position: absolute;
  right: 24px;
  bottom: -28px;
  padding: 16px 22px;
  color: #fff;
  background: var(--article-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.article-detail-content {
  max-width: 850px;
  margin: 0 auto;
  color: var(--article-ink);
}

.article-intro-heading {
  margin: 0 0 22px;
  color: var(--article-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  line-height: 1.25;
  text-wrap: balance;
}

.article-lede {
  margin: 0 0 76px;
  padding-bottom: 48px;
  color: #2e3a37;
  border-bottom: 1px solid #cfc8bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.7;
}

.article-body section {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 28px;
}

.article-body section + section {
  margin-top: 82px;
  padding-top: 70px;
  border-top: 1px solid #d9d2c8;
}

.article-section-number {
  grid-row: 1 / span 99;
  color: var(--article-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.article-body h2 {
  margin: 0 0 12px;
  color: var(--article-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.article-section-deck {
  margin: 0 0 28px !important;
  color: var(--article-accent) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px !important;
  font-style: italic;
}

.article-body p {
  grid-column: 2;
  margin: 0 0 22px;
  color: #3b4744;
  font-size: 17px;
  line-height: 1.85;
}

.article-body ul {
  grid-column: 2;
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding: 22px 24px 22px 54px;
  background: var(--article-paper);
  border-left: 2px solid var(--article-accent);
}

.article-body li::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 24px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--article-accent);
  transform: rotate(45deg);
}

.article-body li strong,
.article-body li span {
  display: block;
}

.article-body li strong {
  margin-bottom: 7px;
  color: var(--article-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.article-body li span {
  color: #505b58;
  font-size: 15px;
  line-height: 1.7;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #d9d2c8;
}

.article-keywords span {
  padding: 9px 13px;
  color: #5d6663;
  background: #f0ece5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-cta {
  position: relative;
  max-width: 1040px;
  margin: 100px auto 0;
  padding: 58px 64px;
  overflow: hidden;
  border: 0;
  background: var(--article-ink);
}

.article-cta span {
  display: block;
  margin-bottom: 15px;
  color: #e7a17c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.article-cta h2 {
  max-width: 700px;
  margin: 0 0 30px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.article-cta::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgb(255 255 255 / 4%), 0 0 0 88px rgb(255 255 255 / 3%);
}

.article-cta a {
  position: relative;
  z-index: 1;
}

.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin: 70px auto 0;
  border-top: 1px solid #d2cbc1;
  border-bottom: 1px solid #d2cbc1;
}

.article-pagination a {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 28px 34px;
  color: var(--article-ink);
}

.article-pagination a + a {
  border-left: 1px solid #d2cbc1;
  text-align: right;
}

.article-pagination span {
  margin-bottom: 10px;
  color: var(--article-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.article-pagination strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.35;
}

.article-cta a,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.article-cta a {
  color: #17201f;
  background: #f6c05d;
}

.product-detail-page {
  background: #fff;
}

.product-detail-body:not(.product-detail-ready) .product-detail-page {
  opacity: 0;
}

.product-detail-hero {
  padding: 98px clamp(24px, 7vw, 136px) 120px;
}

.product-back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 0 18px calc((100% - min(1440px, 100%)) / 2);
  padding: 0 16px;
  color: #20242b;
  background: #f6f3ee;
  border: 1px solid #ddd8cf;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-back-button::before {
  content: "<";
  color: var(--orange);
  font-size: 16px;
  line-height: 1;
}

.product-back-button:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateX(-2px);
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 1440px;
  margin: 0 auto 24px;
  color: #9a9da2;
  font-size: 12px;
  font-weight: 800;
}

.product-breadcrumb span:last-child {
  color: #6d7178;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, .92fr);
  gap: clamp(58px, 8vw, 128px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.product-main-image {
  position: relative;
  margin: 0;
}

.product-main-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #20242b;
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(32 36 43 / 16%);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgb(16 22 34 / 10%);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.product-gallery-prev {
  left: 18px;
}

.product-gallery-next {
  right: 18px;
}

.product-gallery-nav:hover {
  color: var(--orange);
  background: #fff;
  border-color: rgb(232 114 61 / 42%);
  transform: translateY(-50%) scale(1.04);
}

.product-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.product-thumbs button {
  width: 130px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  background: #e4e4e4;
  cursor: pointer;
}

.product-thumbs button.active {
  border-color: var(--orange);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  padding-top: 6px;
}

.product-detail-copy > span {
  display: block;
  margin-bottom: 30px;
  color: #e5a66f;
  font-size: 15px;
  font-weight: 900;
}

.product-detail-copy h1 {
  max-width: none;
  margin: 0;
  color: #111;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-detail-copy > p {
  max-width: 620px;
  margin: 42px 0 58px;
  color: #20242b;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.25;
  font-weight: 900;
}

.product-facts {
  display: grid;
  gap: 25px;
  margin-bottom: 72px;
  color: #1a1d22;
  font-size: 17px;
}

.product-facts p {
  margin: 0;
}

.product-facts strong {
  display: inline-block;
  min-width: 120px;
  margin-right: 13px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
}

.primary-action {
  min-width: 220px;
  color: var(--white);
  background: var(--orange);
}

.secondary-action {
  min-width: 242px;
  color: #191d22;
  border: 1px solid #1b1f24;
  background: var(--white);
}

.product-overview-section,
.product-spec-section {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(360px, 680px);
  justify-content: center;
  gap: clamp(36px, 4vw, 72px);
  align-items: center;
  padding: 130px clamp(24px, 7vw, 136px);
}

.product-overview-section {
  border-top: 54px solid #f5f5f5;
}

.product-overview-section > *,
.product-spec-section > * {
  max-width: 680px;
}

.product-overview-section h2,
.product-spec-section h2 {
  margin: 0 0 56px;
  color: #111;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-overview-copy p {
  margin: 0 0 26px;
  color: #757a82;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.product-overview-section img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.box-structure {
  justify-self: center;
  text-align: center;
}

.box-structure img {
  max-height: 470px;
  margin: 0 auto;
  object-fit: contain;
}

.product-spec-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 20px 58px;
  margin: 0;
  color: #6b7077;
  font-size: 20px;
  line-height: 1.32;
}

.product-spec-list dt {
  color: #15191d;
  font-weight: 900;
}

.product-spec-list dd {
  margin: 0;
  font-weight: 700;
}

.customization-options-section {
  padding: 30px clamp(24px, 7vw, 136px) 120px;
  text-align: center;
}

.customization-options-section h2,
.related-packaging-section h2 {
  margin: 0;
  color: #05080d;
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.customization-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
  gap: 118px clamp(120px, 18vw, 260px);
  max-width: 1180px;
  margin: 118px auto 0;
}

.customization-options-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
}

.customization-options-grid img {
  width: min(230px, 100%);
  height: 210px;
  object-fit: contain;
}

.customization-options-grid h3 {
  margin: 46px 0 13px;
  color: #05080d;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0;
}

.customization-options-grid p {
  max-width: 360px;
  margin: 0;
  color: #535960;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.related-packaging-section {
  padding: 0 clamp(24px, 7vw, 136px) 130px;
  text-align: center;
}

.related-packaging-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1440px;
  margin: 52px auto 28px;
}

.related-packaging-card {
  display: block;
  min-width: 0;
  background: #f1f1f0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-packaging-card:hover {
  box-shadow: 0 18px 34px rgb(16 22 34 / 12%);
  transform: translateY(-3px);
}

.related-packaging-card img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
}

.related-packaging-link {
  display: inline-flex;
  color: #1d2228;
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    grid-template-columns: 1fr;
    gap: 11px;
    height: auto;
    padding: 14px 18px;
    background: var(--midnight);
  }

  body > main {
    padding-top: 150px;
  }

  body > main:has(.hero:first-child) {
    padding-top: 0;
  }

  .brand,
  .header-actions {
    justify-self: center;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero {
    height: 470px;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-slide {
    transform: translateY(12px) scale(1.05);
  }

  .home-proof {
    margin-top: 0;
    padding: 28px 22px 36px;
    background: var(--white);
  }

  .home-proof-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .proof-item {
    min-height: 220px;
    padding: 30px 24px;
  }

  .proof-item + .proof-item {
    border-left: 0;
  }

  .proof-item:nth-child(2),
  .proof-item:nth-child(4) {
    border-left: 1px solid #d9dce2;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid #d9dce2;
  }

  .feature-strip {
    height: min(520px, 56vw);
    min-height: 340px;
  }

  .feature-strip > img,
  .product-range > img {
    object-position: center bottom;
  }

  .holiday-grid {
    grid-template-columns: 1fr;
    padding: 30px clamp(24px, 8vw, 72px);
    gap: 16px;
  }

  .holiday-grid article {
    min-height: 320px;
  }

  .technique-row {
    grid-template-columns: 1fr;
  }

  .process ol,
  .promise-row,
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .process-card {
    padding: 34px 22px;
  }

  .process li:not(:last-child)::after {
    content: "";
  }

  .signup,
  .footer-email {
    justify-self: stretch;
  }

  .footer-email {
    justify-content: center;
    text-align: center;
  }

  .category-container {
    flex-direction: column;
    gap: 20px;
  }

  .search-box {
    width: 100%;
    max-width: 300px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-container {
    gap: 50px;
  }

  .solutions-hero {
    margin-top: -150px;
    min-height: 720px;
    padding-top: 190px;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 0) 34%, rgb(255 255 255 / 14%)),
      url("../images/banners/solution/background.png") center 62% / cover no-repeat;
  }

  .solutions-hero-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(92vw, 720px);
    margin-top: 22px;
    padding: 32px 28px;
    text-align: center;
  }

  .solutions-stat {
    padding-bottom: 92px;
  }

  .solution-section,
  .solution-section.compact {
    padding-bottom: 110px;
  }

  .technique-grid,
  .structure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 28px;
  }

  .solution-flow {
    padding-bottom: 48px;
  }

  .solution-flow ol {
    padding-top: 74px;
  }

  .solution-flow ol::before {
    right: 0;
    clip-path: polygon(6% 40%, 89% 40%, 89% 4%, 100% 50%, 89% 96%, 89% 60%, 6% 60%);
  }

  .solution-flow ol::after {
    width: 86px;
  }

  .solution-flow li {
    padding: 0 8px;
  }

  .solution-flow span {
    top: -69px;
  }

  .dieline-section {
    padding-bottom: 34px;
  }

  .dieline-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 12px;
  }

  .about-body .site-header {
    background: rgb(255 255 255 / 94%);
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 40px 28px 44px;
  }

  .about-hero-visual {
    min-height: 300px;
  }

  .about-cube {
    right: 18vw;
    width: min(300px, 58vw);
  }

  .about-arrow {
    right: 8vw;
    width: min(390px, 76vw);
  }

  .about-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 0;
  }

  .about-proof article:nth-child(3) {
    border-left: 0;
  }

  .about-tagline {
    letter-spacing: 4px;
    line-height: 1.8;
  }

  .about-section {
    padding-inline: 28px;
  }

  .story-grid,
  .manufacturing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
  }

  .brand-story-copy {
    padding-top: 0;
  }

  .brand-story-journey > div:not(.journey-dots) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-grid {
    gap: 24px;
  }

  .review-grid article {
    grid-template-columns: 92px 1fr;
    padding: 20px;
  }

  .review-grid img {
    width: 92px;
    height: 92px;
  }

  .review-grid h3 {
    margin-top: 20px;
  }

  .award-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-body .site-header {
    background: rgb(255 255 255 / 94%);
  }

  .contact-hero,
  .contact-panel,
  .contact-locations {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 48px 28px 58px;
  }

  .contact-hero-image img {
    aspect-ratio: 1.65 / 1;
  }

  .contact-panel {
    margin-inline: 28px;
    padding: 42px 28px;
  }

  .contact-services,
  .contact-faq > div {
    grid-template-columns: 1fr;
  }

  .contact-services {
    padding-inline: 28px;
  }

  .contact-services p {
    min-height: 0;
  }

  .contact-locations {
    padding-inline: 28px;
  }

  .contact-faq {
    padding-inline: 28px;
  }

  .blog-body .site-header {
    background: transparent;
  }

  .blog-page {
    max-width: none;
  }

  .blog-hero {
    min-height: 390px;
    margin-top: -150px;
    padding-top: 150px;
    background: url("../images/banners/blog/background.png") center / cover no-repeat #f5ecdf;
  }

  .blog-hero-copy {
    width: auto;
    margin: 0 28px;
    padding: 28px 0 28px 34px;
  }

  .blog-section {
    padding: 58px 28px;
  }

  .article-row {
    grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
    gap: 22px 28px;
  }

  .article-meta {
    grid-column: 2;
    grid-template-columns: repeat(2, max-content);
    gap: 18px;
  }

  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card p {
    min-height: 0;
  }

  .blog-detail-page {
    padding-top: 190px;
  }

  .article-detail-header {
    margin-bottom: 58px;
  }

  .article-detail-hero {
    margin-bottom: 72px;
  }

  .article-detail-content {
    max-width: 780px;
  }

  .article-body section {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 20px;
  }

  .product-detail-hero {
    padding-top: 188px;
  }

  .product-detail-grid,
  .product-overview-section,
  .product-spec-section {
    grid-template-columns: 1fr;
  }

  .product-detail-copy > p {
    margin: 28px 0 36px;
  }

  .product-facts {
    margin-bottom: 42px;
  }

  .product-overview-section,
  .product-spec-section {
    padding-block: 82px;
  }

  .product-overview-section {
    border-top-width: 34px;
  }

  .customization-options-section {
    padding-block: 76px 92px;
  }

  .customization-options-grid {
    gap: 72px clamp(42px, 10vw, 90px);
    margin-top: 76px;
  }

  .related-packaging-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-inline: 20px;
  }

  .site-footer::after {
    right: -300px;
    bottom: -62px;
    width: 920px;
    height: 230px;
  }

  .footer-arc::before {
    top: -250px;
    width: 980px;
    height: 430px;
  }

  .holiday-grid {
    padding: 20px 16px;
    gap: 12px;
  }

  .holiday-grid article {
    aspect-ratio: 4 / 3;
    min-height: 300px;
  }

  .holiday-grid article img {
    height: 100%;
    max-width: none;
  }

  .home-proof {
    padding-inline: 16px;
  }

  .home-proof-track {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 28px 18px 32px;
  }

  .proof-item:nth-child(2),
  .proof-item:nth-child(4) {
    border-left: 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid #d9dce2;
  }

  .proof-item strong {
    min-height: 0;
  }

  .signup div {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .footer-email {
    grid-template-columns: 1fr;
    row-gap: 10px;
    justify-items: center;
  }

  .footer-email span,
  .footer-email a,
  .footer-email i {
    grid-column: 1;
  }

  .footer-email i {
    grid-row: auto;
  }

  .category-buttons {
    gap: 10px;
    justify-content: center;
  }

  .category-btn {
    min-width: min(100%, 190px);
    min-height: 54px;
    padding: 0 22px;
    font-size: 17px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .solutions-hero-copy {
    width: auto;
    padding: 22px 18px;
  }

  .solutions-hero h1 {
    font-size: clamp(27px, 9vw, 38px);
  }

  .solutions-hero p,
  .solutions-hero strong {
    font-size: 14px;
  }

  .solutions-hero strong {
    white-space: normal;
  }

  .solutions-hero {
    min-height: 800px;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 16%), rgb(255 255 255 / 0) 38%, rgb(255 255 255 / 16%)),
      url("../images/banners/solution/background.png") center 66% / auto 100% no-repeat;
  }

  .solutions-logo-disc {
    width: 100px;
    height: 100px;
  }

  .solutions-logo-disc img {
    width: 82px;
  }

  .solution-title {
    margin-bottom: 44px;
  }

  .technique-grid,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .technique-grid img {
    width: min(230px, 78vw);
    height: 132px;
  }

  .structure-grid article > div {
    min-height: 0;
  }

  .solution-flow {
    padding: 0 18px 48px;
  }

  .solution-flow h2 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .solution-flow ol {
    display: block;
    padding-top: 0;
  }

  .solution-flow ol::before,
  .solution-flow ol::after {
    content: none;
  }

  .solution-flow li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    text-align: left;
    border-top: 1px solid #f2dfd4;
  }

  .solution-flow span {
    position: static;
    width: 42px;
    height: 42px;
    font-size: 15px;
    transform: none;
  }

  .solution-flow h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .solution-flow li p {
    max-width: none;
    min-height: 0;
    margin: 0;
  }

  .solution-flow li img {
    width: 82px;
    height: 68px;
    margin: 0;
  }

  .dieline-section {
    padding: 0 12px 30px;
  }

  .dieline-carousel {
    grid-template-columns: 1fr;
  }

  .dieline-nav {
    display: none;
  }

  .dieline-window {
    overflow-x: auto;
    padding: 0 8px 14px;
    scroll-snap-type: x mandatory;
  }

  .dieline-grid {
    width: max-content;
    transform: none !important;
  }

  .dieline-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .dieline-card strong {
    font-size: 14px;
  }

  .solution-project-cta {
    padding-inline: 20px;
  }

  .about-hero {
    padding: 26px 20px 36px;
    gap: 20px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 14vw, 56px);
  }

  .about-hero p {
    margin-top: 44px;
    font-size: 15px;
  }

  .about-hero-visual {
    min-height: 220px;
  }

  .about-cube {
    right: 18%;
    top: 34px;
    width: min(220px, 62vw);
  }

  .about-arrow {
    right: 2%;
    top: 98px;
    width: min(300px, 88vw);
    height: 86px;
  }

  .about-proof,
  .story-grid,
  .review-grid,
  .manufacturing-grid {
    grid-template-columns: 1fr;
  }

  .about-proof {
    gap: 0;
    padding-inline: 20px;
  }

  .about-proof article {
    min-height: 0;
    padding: 28px 20px;
    border-left: 0;
    border-top: 1px solid #e1ded8;
  }

  .about-proof article + article {
    border-left: 0;
  }

  .about-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .about-section {
    padding: 76px 20px 0;
  }

  .about-section > h2,
  .about-manufacturing h2 {
    margin-bottom: 46px;
  }

  .brand-story-lede {
    margin-bottom: 36px;
    font-size: 14px;
  }

  .brand-story-copy article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 30px;
  }

  .brand-story-copy article + article {
    padding-top: 30px;
  }

  .brand-story-collage,
  .brand-story-journey > div:not(.journey-dots) {
    grid-template-columns: 1fr;
  }

  .brand-story-collage .wide,
  .brand-story-collage img {
    aspect-ratio: 1.45 / 1;
  }

  .brand-story-journey {
    margin-top: 34px;
  }

  .about-divider-title {
    gap: 16px;
    margin-bottom: 34px;
  }

  .about-divider-title h2 {
    font-size: clamp(26px, 8vw, 36px);
    white-space: normal;
    text-align: center;
  }

  .review-grid article {
    grid-template-columns: 76px 1fr;
    min-height: 0;
  }

  .review-grid img {
    width: 76px;
    height: 76px;
  }

  .review-grid h3 {
    margin-top: 12px;
    font-size: 17px;
  }

  .award-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-awards {
    padding-bottom: 58px;
  }

  .about-awards p {
    font-size: 15px;
    line-height: 1.45;
  }

  .about-manufacturing {
    padding-bottom: 70px;
  }

  .manufacturing-grid article {
    padding: 18px;
  }

  .contact-hero {
    padding: 30px 20px 46px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .contact-hero-copy > p:not(.section-kicker) {
    font-size: 16px;
  }

  .contact-quick-links a {
    width: 100%;
    justify-content: center;
  }

  .contact-hero-image::before {
    right: -8px;
    top: -8px;
  }

  .contact-panel {
    margin-inline: 20px;
    padding: 34px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-services,
  .contact-locations,
  .contact-faq {
    padding-inline: 20px;
  }

  .contact-services {
    padding-top: 58px;
  }

  .contact-services article {
    padding: 24px 22px;
  }

  .contact-locations {
    padding-top: 64px;
    gap: 32px;
  }

  .contact-locations li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-faq {
    padding-top: 64px;
    padding-bottom: 90px;
  }

  .blog-hero {
    min-height: 350px;
    background: url("../images/banners/blog/background.png") center bottom / cover no-repeat #f5ecdf;
  }

  .blog-hero-copy {
    margin: 0 20px;
    padding: 20px 0 20px 22px;
  }

  .blog-hero p {
    margin-top: 20px;
    font-size: 17px;
  }

  .blog-section {
    padding: 44px 20px;
  }

  .blog-section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .article-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 16px;
    padding: 22px 0;
  }

  .article-row img {
    aspect-ratio: 1.75 / 1;
  }

  .article-copy p {
    margin-top: 12px;
  }

  .article-meta {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 16px;
    font-size: 13px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-card img {
    aspect-ratio: 1.55 / 1;
  }

  .case-card h3 {
    margin-top: 14px;
  }

  .blog-detail-page {
    padding: 176px 20px 62px;
    background: #fbfaf7;
  }

  .article-detail-header {
    margin-bottom: 42px;
    text-align: left;
  }

  .back-link {
    margin-bottom: 38px;
  }

  .article-detail-eyebrow {
    justify-content: flex-start;
  }

  .article-detail-eyebrow::after {
    display: none;
  }

  .article-detail-header h1 {
    font-size: clamp(34px, 11vw, 48px);
    text-wrap: pretty;
  }

  .article-detail-meta {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .article-detail-hero {
    margin-inline: -20px;
    margin-bottom: 64px;
  }

  .article-detail-hero img {
    aspect-ratio: 1.45 / 1;
    box-shadow: none;
  }

  .article-detail-hero::after {
    right: 20px;
    bottom: -24px;
    padding: 13px 16px;
  }

  .article-intro-heading {
    font-size: 25px;
  }

  .article-lede {
    margin-bottom: 58px;
    padding-bottom: 38px;
    font-size: 17px;
  }

  .article-body section {
    display: block;
  }

  .article-body section + section {
    margin-top: 58px;
    padding-top: 48px;
  }

  .article-section-number {
    display: block;
    margin-bottom: 13px;
  }

  .article-body h2 {
    font-size: 32px;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.75;
  }

  .article-body li {
    padding: 20px 18px 20px 46px;
  }

  .article-body li::before {
    left: 19px;
  }

  .article-cta {
    margin-top: 70px;
    padding: 28px 22px;
  }

  .article-pagination {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .article-pagination a {
    min-height: 120px;
    padding: 24px 8px;
  }

  .article-pagination a + a {
    border-top: 1px solid #d2cbc1;
    border-left: 0;
    text-align: left;
  }

  .product-detail-hero {
    padding: 176px 20px 70px;
  }

  .product-detail-grid {
    gap: 38px;
  }

  .product-thumbs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .product-gallery-prev {
    left: 10px;
  }

  .product-gallery-next {
    right: 10px;
  }

  .product-thumbs button {
    flex: 0 0 104px;
    width: 104px;
    height: 72px;
  }

  .product-detail-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
    white-space: normal;
  }

  .product-detail-copy > p {
    font-size: 18px;
  }

  .product-facts {
    gap: 16px;
    font-size: 15px;
  }

  .product-facts strong {
    display: block;
    min-width: 0;
    margin: 0 0 4px;
  }

  .product-actions {
    gap: 14px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .product-overview-section,
  .product-spec-section {
    padding: 58px 20px;
    gap: 36px;
  }

  .product-overview-section h2,
  .product-spec-section h2 {
    margin-bottom: 28px;
  }

  .product-overview-copy p {
    font-size: 17px;
  }

  .product-spec-list {
    grid-template-columns: 1fr;
    gap: 7px;
    font-size: 16px;
  }

  .product-spec-list dd {
    margin-bottom: 12px;
  }

  .customization-options-section,
  .related-packaging-section {
    padding-inline: 20px;
  }

  .customization-options-section {
    padding-block: 54px 76px;
  }

  .customization-options-grid,
  .related-packaging-row {
    grid-template-columns: 1fr;
  }

  .customization-options-grid {
    gap: 54px;
    margin-top: 54px;
  }

  .customization-options-grid img {
    height: 170px;
  }

  .customization-options-grid h3 {
    margin-top: 24px;
    font-size: 25px;
  }

  .customization-options-grid p {
    font-size: 17px;
  }

  .related-packaging-section {
    padding-bottom: 82px;
  }

  .related-packaging-row {
    margin-top: 34px;
  }
}

/* Blog detail: clean editorial layout */
.blog-detail-page {
  padding: 120px 28px 96px;
  background: #fff;
}

.article-detail-header {
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: left;
}

.article-detail-header .back-link {
  margin-bottom: 22px;
}

.article-detail-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.article-detail-meta {
  justify-content: flex-start;
  margin-top: 22px;
  text-transform: none;
}

.article-detail-hero {
  max-width: 1320px;
  margin: 0 auto 64px;
  padding: 0;
  border: 0;
}

.article-detail-hero::after {
  content: none;
}

.article-detail-hero img {
  aspect-ratio: 2.2 / 1;
  border-radius: 8px;
  box-shadow: none;
}

.article-detail-content {
  max-width: 760px;
}

.article-intro-heading {
  margin: 0 0 12px;
  color: #17201f;
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.article-lede {
  margin: 0 0 34px;
  padding: 0;
  color: #3b4744;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.75;
}

.article-body section {
  display: block;
}

.article-body section + section {
  margin-top: 28px;
  padding-top: 0;
  border: 0;
}

.article-body h2 {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
}

.article-body .article-section-deck {
  margin: -4px 0 12px !important;
  color: #68716f !important;
  font-family: inherit;
  font-size: 14px !important;
  font-style: normal;
}

.article-body p {
  margin: 0 0 14px;
  color: #3b4744;
  font-size: 15px;
  line-height: 1.75;
}

.article-body p strong {
  color: #17201f;
  font-weight: 800;
}

.article-inline-image {
  margin: 32px 0 40px;
}

.article-inline-image img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  background: #f6f3ee;
}

.case-card[data-post] {
  cursor: pointer;
}

.case-card[data-post]:hover h3 {
  color: var(--blog-accent);
}

.article-cta {
  max-width: 760px;
  margin: 58px auto 0;
  padding: 30px 34px;
  overflow: visible;
  background: #fffaf7;
  border: 1px solid #f1ddd0;
}

.article-cta::after {
  content: none;
}

.article-cta span {
  color: #b45e35;
}

.article-cta h2 {
  max-width: none;
  margin-bottom: 22px;
  color: #0d1716;
  font-family: inherit;
  font-size: clamp(22px, 2.4vw, 32px);
}

@media (max-width: 760px) {
  .blog-detail-page {
    padding: 168px 20px 62px;
  }

  .article-detail-header {
    margin-bottom: 40px;
  }

  .article-detail-header h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .article-detail-hero {
    margin: 0 -20px 42px;
  }

  .article-detail-hero img {
    aspect-ratio: 1.5 / 1;
    border-radius: 0;
  }

  .article-intro-heading,
  .article-body h2 {
    font-size: 17px;
  }

  .article-lede,
  .article-body p {
    font-size: 15px;
  }

  .article-inline-image {
    margin: 26px 0 32px;
  }

  .article-cta {
    margin-top: 44px;
    padding: 26px 22px;
  }
}

@media (max-width: 1100px) {
  .home-body .hero {
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
    min-height: max(520px, calc(100vh - 192px));
    padding-inline: 34px;
  }

  .home-body .hero-slides {
    left: 34%;
  }
}

@media (max-width: 900px) {
  .home-body .hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 720px;
    height: auto;
    padding: 190px 28px 36px;
  }

  .home-body .hero-copy {
    max-width: 620px;
  }

  .home-body .hero-slides {
    inset: 35% 0 0 0;
  }

  .home-body .hero-slide {
    object-position: 54% 50%;
  }

  .home-body .home-proof {
    padding: 0 22px 28px;
    background: #081426;
  }

  .home-body .home-proof-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-body .proof-item {
    min-height: 150px;
  }

  .home-body .proof-item:nth-child(2),
  .home-body .proof-item:nth-child(4) {
    border-left: 1px solid rgb(218 186 133 / 20%);
  }

  .home-body .proof-item:nth-child(n + 3) {
    border-top: 1px solid rgb(218 186 133 / 20%);
  }
}

@media (max-width: 560px) {
  .home-body .hero {
    min-height: 650px;
    padding: 188px 20px 28px;
  }

  .home-body .hero-copy h1 {
    font-size: clamp(50px, 18vw, 72px);
  }

  .home-body .hero-copy p {
    font-size: clamp(22px, 8vw, 31px);
    white-space: normal;
  }

  .home-body .hero-copy small {
    max-width: 280px;
  }

  .home-body .button-row {
    flex-wrap: wrap;
  }

  .home-body .hero-slides {
    inset: 42% -20% 0 8%;
  }

  .home-body .home-proof {
    padding: 0 16px 24px;
  }

  .home-body .home-proof-track {
    grid-template-columns: 1fr;
  }

  .home-body .proof-item,
  .home-body .proof-item:nth-child(2),
  .home-body .proof-item:nth-child(4) {
    border-left: 0;
  }

  .home-body .proof-item + .proof-item {
    border-top: 1px solid rgb(218 186 133 / 20%);
  }
}
