:root {
  --ink: #172126;
  --muted: #647176;
  --line: #dde5e8;
  --soft: #f6f9f9;
  --panel: #ffffff;
  --accent: #9b7b54;
  --accent-strong: #725438;
  --blue: #dfeef3;
  --green: #e5efe9;
  --shadow: 0 24px 70px rgba(23, 33, 38, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1540px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 229, 232, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.logo span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: #34444a;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  padding: 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(23, 33, 38, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #34444a;
  line-height: 1.25;
}

.submenu a:hover {
  background: var(--soft);
  color: var(--accent-strong);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--accent-strong);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button {
  color: #fff;
  background: var(--ink);
}

.button:hover {
  background: #2b393e;
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-outline:hover {
  border-color: var(--accent);
}

.hero {
  min-height: min(700px, calc(100vh - 74px));
  display: grid;
  align-items: start;
  padding: clamp(54px, 6vh, 74px) 0 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.7) 56%, rgba(255, 255, 255, 0.14) 80%),
    image-set(url("assets/images/hero-glass-packaging.webp") type("image/webp"), url("assets/images/hero-glass-packaging.png") type("image/png"));
  background-size: cover;
  background-position: 66% center;
}

.hero-content {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 4.25vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 600px;
}

.hero p,
.page-hero p {
  max-width: 540px;
  margin: 20px 0 0;
  color: #4e5c61;
  font-size: 16px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0;
  max-width: 620px;
  margin-top: 36px;
  border: 1px solid rgba(221, 229, 232, 0.72);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(23, 33, 38, 0.06);
  backdrop-filter: blur(14px);
}

.metric {
  min-height: 84px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.66);
}

.metric + .metric {
  border-left: 1px solid rgba(221, 229, 232, 0.72);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.about-main-hero {
  position: relative;
  overflow: hidden;
  height: clamp(620px, 62.9747vw, 995px);
  min-height: 0;
  padding: 0;
  background-color: #f8f1e8;
  background-image: url("assets/images/about-hero-background-v2.png");
  background-image: image-set(
    url("assets/images/about-hero-background-v2.webp") type("image/webp"),
    url("assets/images/about-hero-background-v2.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-main-hero__inner {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  display: block;
}

.about-main-hero__content {
  position: absolute;
  z-index: 2;
  top: 16.4%;
  left: clamp(48px, 4.75vw, 75px);
  max-width: min(760px, 48vw);
}

.about-main-hero .eyebrow {
  margin-bottom: clamp(22px, 1.8vw, 28px);
}

.about-main-hero h1 {
  max-width: min(760px, 48vw);
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.about-main-hero__content > p {
  max-width: min(610px, 39vw);
  margin: 26px 0 0;
  color: #5d6a70;
  font-size: 18px;
  line-height: 1.5;
}

.about-main-hero__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: min(680px, 43.5vw);
  margin-top: clamp(58px, 5.6vw, 88px);
}

.about-main-hero__cards article {
  min-height: 160px;
  padding: 0 24px 0 0;
  color: #7c5c39;
}

.about-main-hero__cards article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(124, 92, 57, 0.2);
}

.about-main-hero__cards svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-main-hero__cards h2 {
  margin: 22px 0 12px;
  color: #7c5c39;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-main-hero__cards p {
  margin: 0;
  color: #5f6970;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 78px 0;
}

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

.section-blue {
  background: linear-gradient(180deg, #f8fbfc 0%, var(--blue) 100%);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.split h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

.about-sustainability-section .split h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.08;
}

.split p {
  color: var(--muted);
}

.about-overview-section .button,
.about-sustainability-section .button {
  margin-top: 18px;
}

.about-overview-section .media-frame img,
.about-sustainability-section .media-frame img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.about-sustainability-split .media-frame {
  grid-column: 1;
  grid-row: 1;
}

.about-sustainability-split > div:first-child {
  grid-column: 2;
  grid-row: 1;
}

.about-manufacturing-section .section-header-centered,
.about-quality-section .section-header-centered {
  margin-bottom: 42px;
}

.about-manufacturing-section .section-header-centered,
.about-quality-section .section-header-centered {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100%;
  max-width: none;
  text-align: center;
}

.about-manufacturing-section .section-header-centered h2,
.about-quality-section .section-header-centered h2 {
  justify-self: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.about-manufacturing-section .section-header-centered p,
.about-quality-section .section-header-centered p {
  justify-self: center;
  width: 100%;
}

.about-manufacturing-section .section-header-centered p,
.about-quality-section .section-header-centered p {
  max-width: 720px;
}

.about-feature-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 60%;
  margin: 0 auto;
  gap: 28px;
}

.about-feature-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(23, 33, 38, 0.05);
}

.about-feature-row picture {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: #edf3f4;
}

.about-feature-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-feature-row div {
  padding: 22px 8px 4px;
}

.about-feature-row h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.1;
}

.about-feature-row p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.about-quality-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 33, 38, 0.05);
}

.about-quality-grid picture,
.media-frame picture {
  display: block;
}

.about-quality-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  display: block;
}

.about-quality-grid h3,
.about-quality-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.about-quality-grid h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.about-quality-grid p {
  margin-top: 0;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.about-sustainability-section .media-frame img {
  object-position: center;
}

#decoration {
  padding: 46px 0;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-carousel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.image-carousel picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18%);
  animation: carouselSlide 15s infinite;
}

.image-carousel picture:nth-child(2) {
  animation-delay: 5s;
}

.image-carousel picture:nth-child(3) {
  animation-delay: 10s;
}

.image-carousel picture:nth-child(4) {
  animation-delay: 15s;
}

.image-carousel picture:nth-child(5) {
  animation-delay: 20s;
}

.image-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-decoration-carousel picture {
  animation-duration: 25s;
}

.service-decoration-carousel {
  width: 80%;
  justify-self: end;
  margin-right: 13%;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.service-decoration-carousel img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

@keyframes carouselSlide {
  0% {
    opacity: 0;
    transform: translateX(18%);
  }
  8%,
  28% {
    opacity: 1;
    transform: translateX(0);
  }
  36%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }
}

.advantage-list,
.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.advantage-list li,
.process-list li {
  min-height: 64px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-grid,
.product-grid,
.media-grid,
.service-grid,
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.product-card,
.media-card,
.service-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.info-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.info-card {
  display: block;
  padding: 20px;
}

.image-info-card {
  padding: 0;
  box-shadow: 0 16px 38px rgba(23, 33, 38, 0.045);
}

.image-info-card picture {
  display: block;
}

.image-info-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.image-info-card .eyebrow,
.image-info-card h3,
.image-info-card p {
  margin-left: 20px;
  margin-right: 20px;
}

.image-info-card .eyebrow {
  margin-top: 18px;
}

.image-info-card p {
  margin-bottom: 20px;
}

.info-card h3,
.service-card h3,
.media-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.image-info-card h3 {
  margin: 0 24px 10px;
}

.image-info-card p {
  margin: 0 24px 24px;
}

.category-card {
  display: block;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(114, 84, 56, 0.2);
  box-shadow: 0 18px 42px rgba(23, 33, 38, 0.075);
}

.category-card__image,
.product-card__image {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  background: var(--soft);
}

.home-products-section .category-card__image {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.category-card span,
.category-card p,
.product-card__body,
.media-card,
.service-card {
  padding: 18px;
}

.category-card span {
  display: block;
  padding-bottom: 5px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.22;
}

.category-card p,
.product-card p,
.media-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  cursor: zoom-in;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.mini-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0;
}

.mini-specs div,
.modal-specs div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 700;
}

.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font-weight: 800;
  cursor: pointer;
}

.read-more-link {
  display: inline-flex;
  margin-top: 14px;
}

.service-hero-reference {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(620px, calc(100vh - 74px));
  overflow: hidden;
  background: #f7f3ee;
}

.service-hero-reference::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 38%, rgba(255, 255, 255, 0.18) 72%);
}

.service-hero-reference--right::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.14) 76%);
}

.service-main-hero::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.1) 76%);
}

.service-hero-reference__media,
.service-intro-overlay__media {
  position: absolute;
  inset: 0;
}

.service-hero-reference__media img,
.service-intro-overlay__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-main-hero .service-hero-reference__media img {
  object-position: right center;
}

.decoration-reference-banner {
  position: relative;
  min-height: min(950px, calc(100vh - 74px));
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 32%, rgba(255, 255, 255, 0.96) 0%, rgba(247, 242, 238, 0.9) 34%, rgba(231, 225, 219, 0.82) 100%),
    linear-gradient(90deg, #ffffff 0%, #f7f5f2 52%, #ece6df 100%);
}

.decoration-reference-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 36%, rgba(255, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.decoration-reference-banner__media {
  position: absolute;
  right: 18px;
  bottom: 145px;
  z-index: 0;
  width: min(50vw, 1000px);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 5%, #000 18%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 22%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 5%, #000 18%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 22%);
  mask-composite: intersect;
}

.decoration-reference-banner__media img {
  display: block;
  width: 100%;
  height: auto;
}

.decoration-reference-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding: 140px clamp(56px, 5.8vw, 118px) 220px;
}

.decoration-reference-banner__content h1 {
  max-width: 1040px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 3.4vw, 70px);
  line-height: 1.12;
  letter-spacing: 0;
}

.decoration-reference-banner__content p {
  max-width: 720px;
  margin: 38px 0 0;
  color: #657178;
  font-size: clamp(20px, 1.25vw, 25px);
  line-height: 1.6;
}

.decoration-reference-banner__highlights {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: clamp(34px, 4.8vw, 86px);
  align-items: center;
  margin-top: 42px;
}

.decoration-reference-banner__highlights article {
  display: grid;
  grid-template-columns: 42px max-content;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.38;
}

.decoration-reference-banner svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.decoration-reference-banner__process {
  position: absolute;
  left: clamp(56px, 5.6vw, 114px);
  right: clamp(56px, 5.6vw, 114px);
  bottom: 56px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 78px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 232, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(23, 33, 38, 0.08);
  backdrop-filter: blur(10px);
}

.decoration-reference-banner__process article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  white-space: nowrap;
}

.decoration-reference-banner__process article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(221, 229, 232, 0.86);
}

.decoration-reference-banner__process svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.decoration-banner-hero {
  min-height: min(760px, calc(100vh - 74px));
  background: #f7f4f1;
}

.decoration-banner-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 25%, rgba(255, 255, 255, 0.46) 52%, rgba(255, 255, 255, 0.08) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(168, 164, 154, 0.24) 100%);
}

.decoration-banner-hero .service-hero-reference__media img {
  object-position: center 42%;
}

.decoration-banner-hero .service-hero-reference__content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 128px clamp(32px, 2.8vw, 58px) 120px;
}

.decoration-banner-hero .service-hero-reference__content h1 {
  max-width: 850px;
  font-size: clamp(58px, 4.7vw, 88px);
  line-height: 1.03;
}

.decoration-banner-hero .service-hero-reference__content p {
  max-width: 760px;
  margin-top: 34px;
  color: #4d5a5f;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.45;
}

.sample-mold-reference-banner {
  min-height: clamp(620px, 49.3vw, 940px);
  background: #f7f9f9;
}

.sample-mold-reference-banner::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 46%, rgba(255, 255, 255, 0.88) 52%, rgba(255, 255, 255, 0.18) 65%, rgba(255, 255, 255, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(240, 246, 247, 0.12) 100%);
}

.sample-mold-reference-banner .service-hero-reference__media img {
  object-position: center center;
}

.sample-mold-reference-banner .service-hero-reference__content {
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(142px, 12.3vw, 230px) clamp(72px, 8vw, 164px) clamp(130px, 11vw, 210px);
}

.sample-mold-reference-banner .eyebrow {
  color: var(--accent-strong);
  font-size: clamp(14px, 0.8vw, 17px);
}

.sample-mold-reference-banner .service-hero-reference__content h1 {
  max-width: min(48vw, 830px);
  margin-top: 36px;
  font-size: clamp(52px, 3.4vw, 70px);
  line-height: 1.12;
  letter-spacing: 0;
}

.sample-mold-reference-banner .service-hero-reference__content p {
  max-width: min(43vw, 740px);
  margin-top: 38px;
  color: #647279;
  font-size: clamp(20px, 1.38vw, 27px);
  line-height: 1.6;
}

.delivery-reference-banner {
  min-height: clamp(620px, 47.45vw, 900px);
  background: #f8f4ee;
}

.delivery-reference-banner::after {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.86) 0%, rgba(250, 246, 239, 0.72) 28%, rgba(244, 235, 224, 0.54) 52%, transparent 68%),
    linear-gradient(90deg, #fbf7f0 0%, #faf5ee 42%, rgba(249, 242, 232, 0.74) 49%, rgba(249, 242, 232, 0.22) 57%, transparent 67%),
    linear-gradient(180deg, rgba(241, 228, 212, 0.1), rgba(255, 255, 255, 0.04));
}

.delivery-reference-banner .service-hero-reference__media img {
  object-position: center center;
}

.delivery-reference-banner .service-hero-reference__content {
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(145px, 11.7vw, 214px) clamp(72px, 7.7vw, 142px) clamp(120px, 9vw, 170px);
}

.delivery-reference-banner .eyebrow {
  color: var(--accent-strong);
  font-size: clamp(15px, 0.9vw, 21px);
}

.delivery-reference-banner .service-hero-reference__content h1 {
  max-width: min(41vw, 690px);
  margin-top: 36px;
  font-size: clamp(52px, 3.4vw, 70px);
  line-height: 1.12;
  letter-spacing: 0;
}

.delivery-reference-banner .service-hero-reference__content h1::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 44px;
  background: var(--accent-strong);
}

.delivery-reference-banner .service-hero-reference__content p {
  max-width: min(41vw, 720px);
  margin-top: 34px;
  color: #374247;
  font-size: clamp(20px, 1.32vw, 25px);
  line-height: 1.6;
}

.service-main-hero .service-hero-reference__content h1 {
  max-width: 820px;
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.04;
}

.service-main-hero .service-hero-reference__content p {
  max-width: 760px;
  font-size: 18px;
}

.service-hero-reference__content {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.service-hero-reference__content h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
}

.after-sales-reference-banner .service-hero-reference__content h1 {
  font-size: clamp(52px, 3.4vw, 70px);
  line-height: 1.12;
}

.service-hero-reference__content p {
  max-width: 580px;
  margin: 22px 0 0;
  color: #47555a;
  font-size: 18px;
}

.service-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 780px;
  margin-top: 36px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.service-hero-mini-grid a {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: 0;
  background: transparent;
}

.service-hero-mini-grid__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-main-hero-image {
  overflow: hidden;
  background: #f7f3ee;
}

.service-main-hero-image picture,
.service-main-hero-image img {
  display: block;
  width: 100%;
}

.service-main-hero-image img {
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f7f3ee;
}

.service-hero-mini-grid span {
  color: var(--accent-strong);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
  font-size: 12px;
}

.service-hero-mini-grid small {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.service-intro-overlay {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #ece7df;
}

.service-intro-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 38, 0.64), rgba(23, 33, 38, 0.2));
}

.service-intro-overlay--center::after {
  background: rgba(23, 33, 38, 0.34);
}

.service-intro-overlay__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 72px 0;
}

.service-intro-overlay--center .service-intro-overlay__content {
  text-align: center;
  max-width: 850px;
}

.service-intro-overlay__content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.service-intro-overlay--center .service-intro-overlay__content h2 {
  margin-left: auto;
  margin-right: auto;
}

.service-intro-overlay__content p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.service-intro-overlay--center .service-intro-overlay__content p {
  margin-left: auto;
  margin-right: auto;
}

.sample-making-intro-overlay::after {
  background:
    linear-gradient(90deg, rgba(177, 165, 150, 0.18), rgba(146, 136, 122, 0.14)),
    rgba(255, 255, 255, 0.08);
}

.after-sales-intro-overlay::after {
  display: none;
}

.after-sales-intro-overlay .service-intro-overlay__content {
  color: var(--ink);
}

.after-sales-intro-overlay .service-intro-overlay__content h2 {
  font-size: clamp(46px, 3vw, 62px);
  line-height: 1.12;
}

.after-sales-intro-overlay .service-intro-overlay__content p {
  color: #3f4d52;
}

.sample-making-intro-overlay .service-intro-overlay__content {
  text-shadow: 0 2px 16px rgba(48, 42, 36, 0.22);
}

.decoration-intro-overlay {
  background: #f5f1eb;
}

.decoration-intro-overlay::after {
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.94) 0%, rgba(247, 243, 237, 0.84) 46%, rgba(238, 232, 224, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(228, 220, 210, 0.2));
}

.decoration-intro-overlay .service-intro-overlay__media img {
  filter: saturate(0.9) contrast(0.96);
}

.decoration-intro-overlay .service-intro-overlay__content {
  color: var(--ink);
  text-align: center;
}

.decoration-intro-overlay .service-intro-overlay__content p {
  color: #58666b;
  margin-left: auto;
  margin-right: auto;
}

.decoration-intro-overlay .service-intro-overlay__content h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 680;
  letter-spacing: 0;
}

.decoration-intro-overlay .service-step-strip {
  margin-left: auto;
  margin-right: auto;
  border-color: rgba(190, 178, 162, 0.32);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 48px rgba(86, 72, 58, 0.08);
  backdrop-filter: blur(8px);
}

.decoration-intro-overlay .service-step-strip span {
  background: rgba(255, 255, 255, 0.34);
  color: #283238;
  font-weight: 680;
}

.service-step-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1080px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.service-step-strip span {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.feature-stack {
  display: grid;
  gap: 34px;
}

.alternating-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(23, 33, 38, 0.07);
}

.alternating-feature.is-reversed picture {
  order: 2;
}

.alternating-feature picture {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.alternating-feature img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.alternating-feature h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
}

.alternating-feature p {
  max-width: 650px;
  color: var(--muted);
}

.decoration-process-stack {
  gap: 26px;
}

.decoration-process-stack .alternating-feature {
  width: 90%;
  margin-inline: auto;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 32px;
  padding: 20px;
}

.decoration-process-stack .alternating-feature picture {
  width: 90%;
  justify-self: start;
}

.decoration-process-stack .alternating-feature.is-reversed picture {
  justify-self: end;
}

.decoration-process-stack .alternating-feature h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.decoration-process-stack .alternating-feature p {
  max-width: 620px;
}

.section-header-centered {
  display: block;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-centered p {
  margin: 14px auto 0;
}

.expanded-card-grid,
.packing-card-grid,
.support-grid,
.document-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.expanded-card,
.packing-card-grid article,
.support-grid article,
.document-icon-grid article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.expanded-card {
  min-height: 360px;
  padding: 24px;
}

.expanded-card h3,
.packing-card-grid h3,
.support-grid h3,
.document-icon-grid h3,
.faq-list h3 {
  margin: 0 0 12px;
  line-height: 1.18;
}

.expanded-card p,
.packing-card-grid p,
.support-grid p,
.faq-list p {
  color: var(--muted);
}

.delivery-packing-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #dde6e8;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #fff8ef 100%);
  box-shadow: 0 18px 44px rgba(48, 64, 64, 0.07);
}

.delivery-packing-header {
  max-width: 860px;
  margin-bottom: 34px;
}

.delivery-packing-header h2,
.delivery-packing-header p {
  margin-left: auto;
  margin-right: auto;
}

.delivery-packing-header h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.delivery-packing-header p {
  max-width: 650px;
  margin-top: 16px;
}

.delivery-packing-flow article {
  position: relative;
  min-height: 258px;
  padding: 30px 28px 28px;
  border-right: 1px solid #e4ecee;
}

.delivery-packing-flow article:last-child {
  border-right: 0;
}

.delivery-packing-flow article::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -15px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-top: 1px solid #d6e0e2;
  border-right: 1px solid #d6e0e2;
  background: #fffbf5;
  transform: rotate(45deg);
}

.delivery-packing-flow article:last-child::after {
  display: none;
}

.delivery-packing-flow__step {
  display: block;
  margin-bottom: 18px;
  color: #9b7a57;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-packing-flow__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border: 1px solid #ead9c3;
  border-radius: 50%;
  background: #fff3e4;
  color: var(--ink);
}

.delivery-packing-flow__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-packing-flow h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.16;
}

.delivery-packing-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.sample-development-support .section-header {
  text-align: center;
}

.sample-development-support .section-header h2,
.sample-development-support .section-header p {
  margin-left: auto;
  margin-right: auto;
}

.sample-development-support .expanded-card {
  min-height: 0;
}

.sample-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.92) 0%, rgba(249, 244, 237, 0.76) 44%, rgba(238, 228, 216, 0.84) 100%),
    linear-gradient(180deg, #fbf7f0 0%, #f3eadf 100%);
}

.sample-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 74%, rgba(255, 255, 255, 0.58), transparent 25%),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.5), transparent 28%);
  pointer-events: none;
}

.sample-process-section .container {
  position: relative;
  z-index: 1;
}

.sample-process-header {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 20px;
  max-width: 1120px;
  margin-bottom: 78px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sample-process-header h2 {
  max-width: none;
  font-family: inherit;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.sample-process-header span {
  width: 82px;
  height: 2px;
  background: rgba(166, 134, 96, 0.46);
}

.sample-process-header p {
  max-width: 920px;
  font-size: 18px;
}

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

.sample-process-flow article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--ink);
}

.sample-process-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 118px;
  right: -36px;
  width: 56px;
  height: 18px;
  background: currentColor;
  color: rgba(157, 126, 88, 0.72);
  clip-path: polygon(0 43%, 82% 43%, 82% 16%, 100% 50%, 82% 84%, 82% 57%, 0 57%);
}

.sample-process-icon {
  display: grid;
  place-items: center;
  width: clamp(150px, 11.2vw, 210px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow:
    inset 0 0 0 1px rgba(210, 198, 181, 0.2),
    0 12px 28px rgba(99, 82, 63, 0.12);
}

.sample-process-icon svg {
  width: 48%;
  height: 48%;
  fill: none;
  stroke: #a28663;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sample-process-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #eee4d7, #d5c5b2);
  color: #5f4b35;
  font-size: 24px;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(93, 75, 55, 0.12);
}

.sample-process-number::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  width: 2px;
  height: 46px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, rgba(157, 126, 88, 0.72) 0 3px, transparent 3px 10px);
}

.sample-process-flow h3 {
  margin: 26px 0 0;
  font-size: clamp(20px, 1.6vw, 29px);
  font-weight: 500;
  line-height: 1.25;
}

.sample-process-flow i {
  width: 34px;
  height: 2px;
  margin-top: 28px;
  background: rgba(166, 134, 96, 0.48);
}

.sample-process-flow p {
  max-width: 270px;
  margin: 28px 0 0;
  color: #5f696d;
  font-size: 17px;
  line-height: 1.55;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.process-timeline article {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-timeline span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.process-timeline h3 {
  margin: 0 0 10px;
}

.process-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.round-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
}

.round-card-grid article {
  display: grid;
  align-content: center;
  min-height: 270px;
  padding: 42px;
  border: 1px solid #e5d8c8;
  border-radius: 50%;
  background: linear-gradient(145deg, #fffdf8, #f1e5d7);
  text-align: center;
}

.round-card-grid h3 {
  margin: 0 0 12px;
}

.round-card-grid p {
  margin: 0;
  color: var(--muted);
}

.delivery-planning-section {
  padding: 54px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(255, 247, 235, 0.88), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #fbf1e7 100%);
}

.delivery-planning-header {
  max-width: 1080px;
  margin: 0 auto 26px;
  text-align: center;
}

.delivery-planning-header h2 {
  margin: 0;
  color: #05080a;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: 0;
}

.delivery-planning-header p {
  max-width: 820px;
  margin: 14px auto 0;
  color: #05080a;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.35;
}

.delivery-planning-list {
  display: grid;
  gap: 12px;
  max-width: 944px;
  margin: 0 auto;
}

.delivery-planning-list article {
  display: grid;
  grid-template-columns: 80px 1px 95px minmax(0, 1fr);
  align-items: center;
  gap: 29px;
  min-height: 112px;
  padding: 17px 41px;
  border: 1px solid rgba(229, 216, 200, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(92, 70, 48, 0.06);
}

.delivery-planning-number {
  display: grid;
  place-items: center;
  width: 61px;
  height: 61px;
  border-radius: 9px;
  background: linear-gradient(145deg, #fbf2e8, #eadfD2);
  color: #05080a;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.delivery-planning-list i {
  display: block;
  width: 1px;
  height: 63px;
  background: rgba(228, 213, 196, 0.95);
}

.delivery-planning-list svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #05080a;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-planning-list h3 {
  margin: 0;
  color: #05080a;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.1;
}

.delivery-planning-list p {
  max-width: 600px;
  margin: 8px 0 0;
  color: #05080a;
  font-size: clamp(15px, 1.12vw, 20px);
  line-height: 1.35;
}

.delivery-support-band {
  padding: 78px 0;
  background: #f4eee7;
}

.delivery-support-band {
  padding: 48px 0;
}

.delivery-support-band .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.delivery-support-band .container {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 34px;
}

.delivery-support-band picture {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.delivery-support-band img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.delivery-support-band img {
  aspect-ratio: 4 / 3;
}

.delivery-support-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.delivery-support-band h2 {
  max-width: 940px;
  font-size: clamp(28px, 3vw, 38px);
}

.delivery-support-band p {
  color: var(--muted);
  font-size: 17px;
}

.delivery-support-band p {
  max-width: 920px;
}

.long-term-panel {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: clamp(76px, 7vw, 118px) 0;
  background:
    image-set(url("assets/images/after-sales-long-term-reference.webp") type("image/webp"), url("assets/images/after-sales-long-term-reference.png") type("image/png"));
  background-size: cover;
  background-position: center;
}

.long-term-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 58%, rgba(255, 255, 255, 0.86) 66%, rgba(255, 255, 255, 0.18) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.long-term-panel .container {
  position: relative;
  z-index: 1;
}

.long-term-panel__content {
  width: min(760px, 58vw);
}

.long-term-panel__eyebrow {
  display: inline-grid;
  gap: 20px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.long-term-panel__eyebrow::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent-strong);
}

.long-term-panel h2 {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: 0;
}

.long-term-panel__content > p {
  max-width: 690px;
  margin: 26px 0 0;
  color: #38454a;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.58;
}

.long-term-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(760px, 100%);
  margin-top: 48px;
}

.long-term-panel__cards article {
  display: grid;
  justify-items: center;
  min-height: 292px;
  padding: 34px 22px 28px;
  border: 1px solid rgba(222, 214, 204, 0.84);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(86, 72, 58, 0.06);
  text-align: center;
}

.long-term-panel__cards span {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #8a623f;
}

.long-term-panel__cards svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.long-term-panel__cards i {
  display: block;
  width: 34px;
  height: 2px;
  margin: 22px 0 20px;
  background: #8a623f;
}

.long-term-panel__cards h3 {
  margin: 0;
  color: #6f4e31;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.24;
}

.long-term-panel__cards p {
  margin: 16px 0 0;
  color: #38454a;
  font-size: 15px;
  line-height: 1.48;
}

.packing-card-grid article,
.support-grid article {
  min-height: 190px;
  padding: 22px;
}

.document-icon-grid article {
  display: grid;
  position: relative;
  gap: 14px;
  min-height: 218px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 14px 34px rgba(48, 64, 64, 0.05);
}

.document-icon-grid__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.document-icon-grid__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid #ead9c3;
  border-radius: 50%;
  background: #fff3e4;
  color: var(--ink);
}

.document-icon-grid__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.document-icon-grid h3 {
  margin: 4px 0 0;
}

.document-icon-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.after-sales-includes-section {
  background: #fff;
}

.after-sales-includes-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.7fr);
  gap: clamp(42px, 3.4vw, 58px);
  align-items: center;
  padding: clamp(54px, 4.5vw, 68px) clamp(48px, 4.7vw, 72px);
  border: 1px solid rgba(222, 214, 204, 0.86);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #fbf7f0 0%, #f7f1e8 50%, #faf7f2 100%);
  box-shadow: 0 16px 42px rgba(86, 72, 58, 0.05);
}

.after-sales-includes-copy {
  align-self: center;
}

.after-sales-includes-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.after-sales-includes-label::before {
  content: "";
  width: 64px;
  height: 1px;
  background: currentColor;
}

.after-sales-includes-copy h2 {
  max-width: 470px;
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: 0;
}

.after-sales-includes-copy p {
  max-width: 460px;
  margin: 34px 0 0;
  color: #4d585d;
  font-size: 18px;
  line-height: 1.68;
}

.after-sales-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.after-sales-includes-grid article {
  display: grid;
  align-content: start;
  min-height: 338px;
  padding: 38px 42px 34px;
  border: 1px solid rgba(222, 214, 204, 0.86);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
}

.after-sales-includes-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  color: #8a623f;
}

.after-sales-includes-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.after-sales-includes-grid h3 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 1.7vw, 26px);
  line-height: 1.15;
}

.after-sales-includes-grid p {
  margin: 0;
  color: #4d585d;
  font-size: 17px;
  line-height: 1.55;
}

.after-sales-includes-grid i {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 28px;
  background: #8a623f;
}

.after-sales-process-section {
  overflow: hidden;
  padding: clamp(46px, 4.8vw, 70px) 0 clamp(64px, 6vw, 92px);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, #fbf7f0 0%, #f7f1e8 48%, #fbf7f1 100%);
}

.after-sales-process-header {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.after-sales-process-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: 0;
}

.after-sales-process-header p {
  max-width: 880px;
  margin: 24px auto 0;
  color: #4d585d;
  font-size: 18px;
  line-height: 1.55;
}

.after-sales-process-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
  position: relative;
  margin-top: clamp(50px, 5.2vw, 78px);
  padding: 0 10px;
}

.after-sales-process-line {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  overflow: visible;
  color: #9c7650;
  pointer-events: none;
}

.after-sales-process-line-path,
.after-sales-process-line-head {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.after-sales-process-line-head {
  stroke-width: 1.4;
}

.after-sales-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  min-height: 372px;
  padding: 64px 28px 38px;
  border: 1px solid rgba(222, 214, 204, 0.94);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(86, 72, 58, 0.05);
  text-align: center;
}

.after-sales-process-step:nth-of-type(1) {
  margin-top: 168px;
}

.after-sales-process-step:nth-of-type(2) {
  margin-top: 108px;
}

.after-sales-process-step:nth-of-type(3) {
  margin-top: 58px;
}

.after-sales-process-step:nth-of-type(4) {
  margin-top: 12px;
}

.after-sales-process-step:nth-of-type(5) {
  margin-top: -38px;
}

.after-sales-process-number {
  position: absolute;
  top: -18px;
  left: calc(50% - 18px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #9c7650;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.after-sales-process-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: #8a623f;
}

.after-sales-process-icon svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.after-sales-process-step h3 {
  max-width: 230px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.25;
}

.after-sales-process-step i {
  display: block;
  width: 30px;
  height: 2px;
  margin: 24px 0 0;
  background: #8a623f;
}

.after-sales-process-step p {
  max-width: 220px;
  margin: 26px 0 0;
  color: #4d585d;
  font-size: 16px;
  line-height: 1.56;
}

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

.faq-list article {
  padding: 22px;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.support-points span {
  padding: 10px 12px;
  border: 1px solid rgba(114, 84, 56, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  font-size: 13px;
}

.service-contact .process-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
}

.home-about-stats li {
  display: grid;
  gap: 8px;
}

.home-about-stats strong {
  font-size: 26px;
  line-height: 1;
}

.home-about-stats span {
  color: var(--muted);
  font-size: 13px;
}

.home-about-section {
  padding-top: 82px;
}

.home-about-section .image-info-card picture {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  padding: clamp(26px, 2.6vw, 38px);
  background: #f7f3ee;
  border-bottom: 1px solid rgba(221, 229, 232, 0.82);
  box-sizing: border-box;
}

.home-about-section .image-info-card img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(221, 229, 232, 0.72);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(23, 33, 38, 0.055);
}

.home-about-section .info-card-grid {
  gap: 28px;
}

.home-about-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.home-about-split h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.4vw, 42px);
}

.home-about-split p {
  max-width: 600px;
}

.home-about-section .media-frame {
  box-shadow: 0 22px 60px rgba(23, 33, 38, 0.09);
}

.home-products-section .section-header,
.home-services-section .section-header,
.home-news-section .section-header {
  margin-bottom: 28px;
}

.home-products-section {
  border-top: 1px solid rgba(221, 229, 232, 0.7);
  border-bottom: 1px solid rgba(221, 229, 232, 0.7);
}

.home-services-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.home-service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.home-service-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: 78%;
  margin-inline: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 232, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 28px rgba(23, 33, 38, 0.025);
}

.home-service-item.is-reversed picture {
  order: 2;
}

.home-service-item.is-reversed > div {
  order: 1;
}

.home-service-item picture {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.home-service-item img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--soft);
}

.home-service-item > div {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 42px);
}

.home-service-item h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.14;
}

.home-service-item p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.home-news-section {
  padding-top: 70px;
}

.featured-news {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 232, 0.82);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 33, 38, 0.045);
}

.featured-news picture {
  overflow: hidden;
  border-right: 1px solid rgba(221, 229, 232, 0.82);
}

.featured-news img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.featured-news .media-card {
  border: 0;
  padding: 32px;
}

.featured-news .media-card h3 {
  max-width: 620px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.14;
}

.service-main-split h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

.service-main-split {
  gap: 36px;
}

.wide-separator-image {
  display: block;
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.wide-separator-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#sample-making-mold-development .wide-separator-image {
  width: 75%;
  margin: 0 auto 24px;
}

#sample-making-mold-development .section-header {
  margin-bottom: 24px;
}

.service-delivery-showcase {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  align-items: stretch;
  background: #f4eee7;
}

.service-delivery-showcase__media {
  position: absolute;
  inset: 0;
}

.service-delivery-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-delivery-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18));
}

.service-delivery-showcase__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 84px 0;
}

.service-delivery-showcase__content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.service-delivery-showcase__content p {
  max-width: 620px;
  color: #4e5c61;
  font-size: 17px;
}

.service-delivery-showcase__content > .button {
  justify-self: start;
  width: auto;
  min-width: 220px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 33, 38, 0.08);
}

.delivery-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.delivery-mini-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(221, 229, 232, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.delivery-mini-grid h3,
.delivery-mini-grid p {
  margin: 0;
  font-size: 15px;
}

.delivery-mini-grid h3 {
  margin-bottom: 10px;
  font-weight: 900;
}

.page-hero {
  padding: 92px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f9 100%);
}

.page-hero.compact {
  padding-bottom: 32px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

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

.filter-count {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 23, 27, 0.42);
}

.modal-panel {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100vh - 34px);
  margin: 17px auto;
  overflow: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 34px;
  padding: 34px;
  clear: both;
}

.modal-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
}

.modal-hero__image {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.thumb.is-active {
  border-color: var(--accent);
}

.thumb__image {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.modal-copy p {
  color: var(--muted);
}

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

.two-lists ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  color: var(--accent-strong);
  font-weight: 800;
}

.contact-band {
  padding: 74px 0;
  background: var(--ink);
  color: #fff;
}

.contact-band .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-band p,
.contact-band .field label {
  color: rgba(255, 255, 255, 0.72);
}

.contact-band .inquiry-form {
  margin: 0;
  background: #fff;
  color: var(--ink);
}

.social-panel {
  margin-top: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

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

  .site-nav a,
  .nav-link {
    width: 100%;
    padding: 13px 0;
  }

  .nav-item {
    width: 100%;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 13px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 42px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.64) 100%),
      image-set(url("assets/images/hero-glass-packaging.webp") type("image/webp"), url("assets/images/hero-glass-packaging.png") type("image/png"));
    background-size: cover;
    background-position: center bottom;
  }

  .hero-content {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .about-main-hero {
    height: auto;
    min-height: 620px;
    padding: 54px 0 42px;
    background-position: 62% center;
  }

  .about-main-hero__inner {
    height: auto;
    min-height: 0;
    display: block;
  }

  .about-main-hero__content {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
  }

  .about-main-hero h1 {
    max-width: 760px;
  }

  .about-main-hero__content > p {
    max-width: 610px;
  }

  .about-main-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 34px;
    border: 1px solid rgba(124, 92, 57, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.48);
  }

  .about-main-hero__cards article,
  .about-main-hero__cards article + article {
    min-height: 0;
    padding: 20px;
    border-left: 0;
  }

  .about-main-hero__cards article:nth-child(even) {
    border-left: 1px solid rgba(124, 92, 57, 0.18);
  }

  .about-main-hero__cards article:nth-child(n + 3) {
    border-top: 1px solid rgba(124, 92, 57, 0.18);
  }

  .about-feature-stack {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-quality-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .category-grid,
  .product-grid,
  .media-grid,
  .service-grid,
  .info-card-grid,
  .service-hero-mini-grid,
  .delivery-mini-grid,
  .expanded-card-grid,
  .packing-card-grid,
  .support-grid,
  .document-icon-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .delivery-packing-flow article:nth-child(2) {
    border-right: 0;
  }

  .delivery-packing-flow article:nth-child(2)::after {
    display: none;
  }

  .split,
  .contact-band .container,
  .modal-content,
  .alternating-feature,
  .home-service-item,
  .featured-news,
  .delivery-support-band .container {
    grid-template-columns: 1fr;
  }

  .long-term-panel {
    min-height: 0;
    background-position: 62% center;
  }

  .long-term-panel::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 54%, rgba(255, 255, 255, 0.42) 100%);
  }

  .long-term-panel__content {
    width: min(760px, 100%);
  }

  .after-sales-includes-panel {
    grid-template-columns: 1fr;
  }

  .after-sales-includes-copy h2,
  .after-sales-includes-copy p {
    max-width: none;
  }

  .after-sales-process-section {
    padding: 72px 0;
  }

  .after-sales-process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 46px;
    padding: 0;
  }

  .after-sales-process-step,
  .after-sales-process-step:nth-child(n) {
    min-height: 0;
    margin-top: 0;
  }

  .after-sales-process-step {
    padding: 50px 24px 32px;
  }

  .after-sales-process-arrow {
    display: none;
  }

  .about-sustainability-split .media-frame,
  .about-sustainability-split > div:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .delivery-support-band {
    padding: 42px 0;
  }

  .delivery-planning-list article {
    grid-template-columns: 66px 1px 72px minmax(0, 1fr);
    gap: 20px;
    padding: 15px 24px;
  }

  .delivery-planning-number {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .delivery-planning-list svg {
    width: 56px;
    height: 56px;
  }

  .delivery-planning-section {
    padding: 46px 0;
  }

  .home-about-split {
    gap: 34px;
  }

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

  .home-service-item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 90%;
  }

  .alternating-feature.is-reversed picture {
    order: 0;
  }

  .decoration-process-stack .alternating-feature {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .decoration-process-stack .alternating-feature picture,
  .decoration-process-stack .alternating-feature.is-reversed picture {
    width: 100%;
    justify-self: stretch;
  }

  .home-service-item.is-reversed picture {
    order: 2;
  }

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

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

  .sample-process-flow article:not(:last-child)::after {
    display: none;
  }

  .sample-process-header {
    margin-bottom: 56px;
  }

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

  .decoration-banner-hero .service-hero-reference__content h1 {
    max-width: 720px;
    font-size: clamp(48px, 7vw, 68px);
  }

  .sample-mold-reference-banner {
    min-height: 720px;
  }

  .sample-mold-reference-banner::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.28) 100%);
  }

  .sample-mold-reference-banner .service-hero-reference__media img {
    object-position: 62% center;
  }

  .sample-mold-reference-banner .service-hero-reference__content {
    width: min(100% - 48px, 1540px);
    padding: 92px 0 300px;
  }

  .sample-mold-reference-banner .service-hero-reference__content h1 {
    max-width: 680px;
    font-size: clamp(46px, 6.8vw, 66px);
  }

  .sample-mold-reference-banner .service-hero-reference__content p {
    max-width: 640px;
    font-size: 19px;
  }

  .delivery-reference-banner {
    min-height: 720px;
  }

  .delivery-reference-banner::after {
    background:
      radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.88) 0%, rgba(250, 246, 239, 0.72) 38%, transparent 68%),
      linear-gradient(180deg, rgba(251, 247, 240, 0.94) 0%, rgba(250, 245, 238, 0.84) 45%, rgba(249, 242, 232, 0.28) 100%);
  }

  .delivery-reference-banner .service-hero-reference__media img {
    object-position: 64% center;
  }

  .delivery-reference-banner .service-hero-reference__content {
    width: min(100% - 48px, 1540px);
    padding: 92px 0 300px;
  }

  .delivery-reference-banner .service-hero-reference__content h1 {
    max-width: 620px;
    font-size: clamp(48px, 7vw, 68px);
  }

  .delivery-reference-banner .service-hero-reference__content p {
    max-width: 640px;
    font-size: 19px;
  }

  .decoration-reference-banner {
    min-height: 760px;
  }

  .decoration-reference-banner__media {
    right: -40px;
    bottom: 150px;
    width: min(64vw, 640px);
  }

  .decoration-reference-banner__content {
    padding: 96px 34px 270px;
  }

  .decoration-reference-banner__content h1 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 68px);
  }

  .after-sales-reference-banner .service-hero-reference__content h1 {
    font-size: clamp(48px, 7vw, 68px);
  }

  .decoration-reference-banner__process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 34px;
    right: 34px;
    bottom: 42px;
  }

  .decoration-reference-banner__process article:nth-child(4)::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1540px);
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.58) 100%),
      image-set(url("assets/images/hero-glass-packaging.webp") type("image/webp"), url("assets/images/hero-glass-packaging.png") type("image/png"));
    background-size: cover;
    background-position: center bottom;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
  }

  .about-main-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .about-main-hero__content > p {
    font-size: 16px;
  }

  .about-main-hero__cards {
    grid-template-columns: 1fr;
  }

  .about-main-hero__cards article:nth-child(even) {
    border-left: 0;
  }

  .about-main-hero__cards article + article {
    border-top: 1px solid rgba(124, 92, 57, 0.18);
  }

  .about-feature-row {
    gap: 0;
    padding: 12px;
  }

  .about-feature-row div {
    padding: 18px 4px 4px;
  }

  .about-feature-row h3 {
    font-size: 24px;
  }

  .about-feature-row p,
  .about-quality-grid p {
    font-size: 15px;
  }

  .hero-metrics,
  .category-grid,
  .product-grid,
  .media-grid,
  .service-grid,
  .info-card-grid,
  .service-hero-mini-grid,
  .delivery-mini-grid,
  .expanded-card-grid,
  .packing-card-grid,
  .support-grid,
  .document-icon-grid,
  .faq-list,
  .service-step-strip,
  .process-timeline,
  .sample-process-flow,
  .round-card-grid,
  .advantage-list,
  .process-list,
  .filters,
  .inquiry-form,
  .two-lists {
    grid-template-columns: 1fr;
  }

  .delivery-packing-flow {
    grid-template-columns: 1fr;
  }

  .after-sales-includes-panel {
    gap: 30px;
    padding: 30px 18px;
  }

  .after-sales-includes-grid {
    grid-template-columns: 1fr;
  }

  .after-sales-includes-copy h2 {
    margin-top: 24px;
    font-size: 34px;
  }

  .after-sales-includes-copy p {
    margin-top: 20px;
    font-size: 15px;
  }

  .after-sales-includes-grid article {
    min-height: 0;
    padding: 26px 24px;
  }

  .after-sales-includes-grid h3 {
    margin-top: 22px;
    font-size: 21px;
  }

  .after-sales-includes-grid p {
    font-size: 15px;
  }

  .long-term-panel {
    padding: 50px 0;
    background-position: 66% center;
  }

  .long-term-panel__content > p {
    font-size: 15px;
  }

  .long-term-panel__cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .long-term-panel__cards article {
    min-height: 0;
    padding: 24px 20px;
  }

  .after-sales-process-header h2 {
    font-size: 34px;
  }

  .after-sales-process-header p {
    font-size: 15px;
  }

  .after-sales-process-flow {
    grid-template-columns: 1fr;
  }

  .after-sales-process-step {
    padding: 46px 22px 28px;
  }

  .after-sales-process-icon {
    width: 66px;
    height: 66px;
  }

  .after-sales-process-icon svg {
    width: 62px;
    height: 62px;
  }

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

  .after-sales-process-step p {
    font-size: 15px;
  }

  .delivery-packing-flow article,
  .delivery-packing-flow article:nth-child(2) {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid #e4ecee;
  }

  .delivery-packing-flow article:last-child {
    border-bottom: 0;
  }

  .delivery-packing-flow article::after,
  .delivery-packing-flow article:nth-child(2)::after {
    top: auto;
    right: auto;
    bottom: -15px;
    left: 42px;
    display: block;
    background: #fffbf5;
  }

  .delivery-packing-flow article:last-child::after {
    display: none;
  }

  .delivery-packing-flow__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .delivery-packing-flow h3 {
    font-size: 19px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 28px;
  }

  .metric {
    min-height: 82px;
    padding: 16px;
  }

  .metric + .metric {
    border-left: 0;
  }

  .metric:nth-child(even) {
    border-left: 1px solid rgba(221, 229, 232, 0.72);
  }

  .metric:nth-child(n + 3) {
    border-top: 1px solid rgba(221, 229, 232, 0.72);
  }

  .service-hero-reference {
    min-height: 520px;
  }

  .service-hero-reference::after,
  .service-hero-reference--right::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 62%, rgba(255, 255, 255, 0.38) 100%);
  }

  .service-hero-reference__content {
    padding: 64px 0;
  }

  .service-hero-reference__content h1 {
    font-size: 38px;
  }

  .decoration-banner-hero {
    min-height: 560px;
  }

  .decoration-banner-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.5) 100%);
  }

  .decoration-banner-hero .service-hero-reference__media img {
    object-position: 58% center;
  }

  .decoration-banner-hero .service-hero-reference__content {
    padding: 72px 20px 64px;
  }

  .decoration-banner-hero .service-hero-reference__content h1 {
    max-width: 360px;
    font-size: 38px;
    line-height: 1.08;
  }

  .decoration-banner-hero .service-hero-reference__content p {
    max-width: 350px;
    margin-top: 22px;
    font-size: 16px;
  }

  .sample-mold-reference-banner {
    min-height: 620px;
  }

  .sample-mold-reference-banner .service-hero-reference__media img {
    object-position: 67% center;
  }

  .sample-mold-reference-banner .service-hero-reference__content {
    width: min(100% - 40px, 1540px);
    padding: 72px 0 280px;
  }

  .sample-mold-reference-banner .eyebrow {
    font-size: 12px;
  }

  .sample-mold-reference-banner .service-hero-reference__content h1 {
    max-width: 350px;
    margin-top: 24px;
    font-size: 38px;
    line-height: 1.08;
  }

  .sample-mold-reference-banner .service-hero-reference__content p {
    max-width: 345px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .delivery-reference-banner {
    min-height: 640px;
  }

  .delivery-reference-banner .service-hero-reference__media img {
    object-position: 69% center;
  }

  .delivery-reference-banner .service-hero-reference__content {
    width: min(100% - 40px, 1540px);
    padding: 72px 0 280px;
  }

  .delivery-reference-banner .eyebrow {
    font-size: 12px;
  }

  .delivery-reference-banner .service-hero-reference__content h1 {
    max-width: 350px;
    margin-top: 24px;
    font-size: 38px;
    line-height: 1.08;
  }

  .delivery-reference-banner .service-hero-reference__content h1::after {
    width: 42px;
    margin-top: 28px;
  }

  .delivery-reference-banner .service-hero-reference__content p {
    max-width: 345px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .decoration-reference-banner {
    min-height: 740px;
  }

  .decoration-reference-banner::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.34) 100%);
  }

  .decoration-reference-banner__media {
    right: -112px;
    bottom: 188px;
    width: 620px;
    opacity: 0.74;
  }

  .decoration-reference-banner__content {
    padding: 62px 20px 260px;
  }

  .decoration-reference-banner__content h1 {
    max-width: 350px;
    margin-top: 26px;
    font-size: 38px;
    line-height: 1.08;
  }

  .after-sales-reference-banner .service-hero-reference__content h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .decoration-reference-banner__content p {
    max-width: 350px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .decoration-reference-banner__highlights {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .decoration-reference-banner__highlights article {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    font-size: 13px;
  }

  .decoration-reference-banner svg {
    width: 30px;
    height: 30px;
  }

  .decoration-reference-banner__process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 14px;
    right: 14px;
    bottom: 28px;
    min-height: 168px;
  }

  .decoration-reference-banner__process article {
    gap: 10px;
    padding: 12px 8px;
    font-size: 13px;
    white-space: normal;
  }

  .decoration-reference-banner__process article::before {
    display: none;
  }

  .decoration-reference-banner__process svg {
    width: 24px;
    height: 24px;
  }

  .service-main-hero .service-hero-reference__content h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .service-main-hero .service-hero-reference__content p {
    font-size: 16px;
  }

  .service-main-hero-image img {
    height: auto;
  }

  .service-intro-overlay {
    min-height: 420px;
  }

  .image-carousel {
    min-height: 280px;
  }

  .service-main-hero .service-hero-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    margin-top: 28px;
  }

  .service-main-hero .service-hero-mini-grid a {
    min-height: 0;
  }

  .service-main-hero .service-hero-mini-grid__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .service-main-hero .service-hero-mini-grid span {
    font-size: 11px;
    line-height: 1.18;
  }

  .service-main-hero .service-hero-mini-grid small {
    display: none;
  }

  .service-step-strip span {
    min-height: 58px;
  }

  .delivery-planning-header {
    margin-bottom: 22px;
  }

  .delivery-planning-section {
    padding: 38px 0;
  }

  .delivery-planning-header h2 {
    font-size: 28px;
  }

  .delivery-planning-header p {
    font-size: 16px;
  }

  .delivery-planning-list article {
    grid-template-columns: 50px 1fr;
    gap: 14px 16px;
    padding: 15px;
  }

  .delivery-planning-number {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .delivery-planning-list i {
    display: none;
  }

  .delivery-planning-list svg {
    grid-column: 1;
    width: 46px;
    height: 46px;
  }

  .delivery-planning-list article > div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .delivery-planning-list h3 {
    font-size: 19px;
  }

  .delivery-planning-list p {
    font-size: 14px;
  }

  .sample-process-header {
    display: grid;
    justify-content: center;
    justify-items: center;
    max-width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
    margin-bottom: 42px;
    text-align: center;
  }

  .sample-process-header p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .sample-process-icon {
    width: 168px;
  }

  .sample-process-number {
    margin-top: 48px;
  }

  .alternating-feature,
  .home-service-item,
  .expanded-card,
  .round-card-grid article {
    padding: 20px;
  }

  .home-service-item {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .home-service-item img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-service-item.is-reversed picture,
  .home-service-item.is-reversed > div {
    order: 0;
  }

  .home-service-item > div,
  .featured-news .media-card {
    padding: 22px;
  }

  #sample-making-mold-development .wide-separator-image {
    width: 100%;
    margin-bottom: 18px;
  }

  .home-about-split h2 {
    font-size: 34px;
  }

  .home-about-section .info-card-grid {
    gap: 18px;
  }

  .home-about-section .image-info-card picture {
    aspect-ratio: 3 / 4;
  }

  .home-about-section .image-info-card .eyebrow,
  .home-about-section .image-info-card h3,
  .home-about-section .image-info-card p {
    margin-left: 16px;
    margin-right: 16px;
  }

  .home-about-section .image-info-card .eyebrow {
    margin-top: 14px;
  }

  .home-about-section .image-info-card p {
    margin-bottom: 16px;
  }

  .featured-news picture {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 229, 232, 0.82);
  }

  .featured-news img {
    min-height: 0;
    aspect-ratio: 1.5 / 1;
  }

  .service-delivery-showcase {
    min-height: 660px;
  }

  .service-delivery-showcase__content {
    padding: 60px 0;
  }

  .round-card-grid article {
    min-height: 220px;
    border-radius: 120px;
  }

  .process-timeline article {
    min-height: 0;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 12px;
  }

  .modal-panel {
    width: calc(100% - 14px);
    max-height: calc(100vh - 14px);
    margin: 7px auto;
  }

  .modal-content {
    padding: 22px 16px 24px;
  }

  .footer .container {
    display: block;
  }
}
