@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Varela+Round&display=swap");

:root {
  --ink: #2a1012;
  --muted: #735b58;
  --line: #ead9c3;
  --paper: #ffffff;
  --soft: #fbf6ee;
  --brand: #dbac6a;
  --brand-dark: #b17e4d;
  --accent: #3e1317;
  --steel: #000000;
  --maroon: #3f1317;
  --cream: #f3d3ab;
  --danger: #b42318;
  --shadow: 0 16px 40px rgba(63, 19, 23, 0.16);
  --font-heading: "Varela Round", "Arial Rounded MT Bold", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  --font-ui: "Montserrat", "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Montserrat", "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf4;
  font-family: var(--font-body);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  background: linear-gradient(90deg, #000, #2a0d10);
  color: var(--cream);
  font-size: 13px;
  font-family: var(--font-ui);
}

.top-strip .wrap,
.site-header .wrap,
.section,
.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 10px 0;
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(234, 217, 195, 0.82);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 12px 32px rgba(63, 19, 23, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 6px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 0;
  transition: transform 160ms ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 34px;
  height: 36px;
  object-fit: contain;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, #d7a965 18%, #f3d3ab 50%, #b17e4d 82%, transparent);
  opacity: 0.9;
}

.logo-text {
  display: inline-block;
  color: #f3d3ab;
  font-family: var(--font-ui);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 18px rgba(0, 0, 0, 0.2);
}

.logo-image {
  width: 218px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2a1012;
  font-size: 14px;
  font-family: var(--font-ui);
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 10px 2px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3d3ab, #b17e4d);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: #7a4c25;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fffaf4;
  font-family: var(--font-ui);
  font-weight: 500;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(243, 211, 171, 0.82);
  color: #2a1012;
  background: linear-gradient(135deg, #f3d3ab, #dbac6a 48%, #b17e4d);
  box-shadow: 0 10px 24px rgba(177, 126, 77, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, #dbac6a, #b17e4d);
  color: #fff;
}

.button.accent {
  border-color: var(--maroon);
  color: var(--cream);
  background: var(--maroon);
}

.button.ghost {
  background: transparent;
  border-color: rgba(177, 126, 77, 0.3);
}

.site-header .button.ghost {
  color: var(--ink);
}

.mobile-toggle {
  display: none;
  width: 40px;
  padding: 0;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--maroon);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 8, 10, 0.94), rgba(63, 19, 23, 0.72), rgba(63, 19, 23, 0.28)),
    url("https://images.unsplash.com/photo-1752614672115-adcf3e2596af?auto=format&fit=crop&fm=jpg&q=70&w=2200") center / cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: 42px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 148px 0 44px;
}

.hero-copy {
  max-width: 720px;
}

.global-card {
  position: relative;
  overflow: hidden;
  align-self: center;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(243, 211, 171, 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 28%, rgba(243, 211, 171, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(63, 19, 23, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 46px rgba(18, 5, 7, 0.24);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.globe-wrap {
  display: grid;
  place-items: center;
  min-height: 300px;
}

.earth-svg {
  width: min(330px, 78vw);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.24));
}

.earth-ocean {
  fill: rgba(63, 19, 23, 0.48);
  stroke: rgba(243, 211, 171, 0.42);
  stroke-width: 1.4;
}

.earth-grid ellipse,
.earth-grid path {
  fill: none;
  stroke: rgba(243, 211, 171, 0.2);
  stroke-width: 1;
}

.continent-belt {
  animation: earthDrift 18s linear infinite;
}

.continent-belt path {
  fill: rgba(219, 172, 106, 0.5);
  stroke: rgba(243, 211, 171, 0.42);
  stroke-width: 0.8;
}

.earth-shade {
  fill: url("#earthShade");
  pointer-events: none;
}

.earth-routes path {
  fill: none;
  stroke: url("#routeGold");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: routePulse 2.7s linear infinite;
}

.earth-pins circle {
  r: 6;
  fill: #dbac6a;
  stroke: #fff8ee;
  stroke-width: 2;
  animation: pinPulse 1.9s ease-in-out infinite;
}

.earth-pins text {
  fill: #fff8ee;
  paint-order: stroke;
  stroke: rgba(34, 9, 12, 0.72);
  stroke-width: 4;
  font-family: var(--font-ui);
  font-size: 13px;
}

@keyframes earthDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-262px);
  }
}

@keyframes routePulse {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes pinPulse {
  0%,
  100% {
    r: 5.5;
  }
  50% {
    r: 8;
  }
}

@keyframes drawLine {
  0%,
  100% {
    clip-path: inset(0 100% 0 0);
  }
  45%,
  75% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(42px);
  }
}

@keyframes checkPop {
  0%,
  100% {
    transform: rotate(-45deg) scale(0.82);
    opacity: 0.55;
  }
  50% {
    transform: rotate(-45deg) scale(1);
    opacity: 1;
  }
}

@keyframes batchRise {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes measureSlide {
  0%,
  100% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(12px);
  }
}

@keyframes conveyorMove {
  to {
    background-position-x: 22px;
  }
}

.global-copy {
  border-top: 1px solid rgba(243, 211, 171, 0.22);
  padding-top: 20px;
}

.global-copy h2 {
  margin-bottom: 10px;
  color: #fff8ee;
  font-size: clamp(24px, 3vw, 32px);
}

.global-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: #f3d3ab;
  line-height: 1.55;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-ui);
}

.hero .eyebrow {
  color: var(--cream);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 500;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  font-family: var(--font-heading);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}

p,
li,
input,
select,
textarea {
  font-family: var(--font-body);
}

strong {
  font-weight: 500;
}

.lead {
  color: #f8e7d0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

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

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stat {
  padding: 18px;
  background: rgba(28, 6, 8, 0.62);
}

.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
}

.hero-stat span {
  color: #f3d3ab;
  font-size: 13px;
}

.landing-hero {
  min-height: calc(100vh - 118px);
  align-items: center;
}

.landing-hero::before {
  background:
    linear-gradient(90deg, rgba(25, 6, 8, 0.96), rgba(63, 19, 23, 0.74) 48%, rgba(32, 22, 28, 0.38)),
    url("https://images.unsplash.com/photo-1752614672115-adcf3e2596af?auto=format&fit=crop&fm=jpg&q=74&w=2200") center / cover;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, #fffaf4);
  pointer-events: none;
}

.landing-hero .hero-inner {
  align-items: center;
  padding: 112px 0 34px;
}

.landing-hero h1 {
  max-width: 790px;
  margin-bottom: 18px;
  color: #fffaf4;
  font-size: clamp(42px, 6.8vw, 84px);
  line-height: 0.96;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 211, 171, 0.22);
  border-radius: 999px;
  color: #fff8ee;
  background: rgba(34, 9, 12, 0.46);
  font-family: var(--font-ui);
  font-size: 13px;
  backdrop-filter: blur(14px);
}

.trust-row svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.quote-preview {
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(243, 211, 171, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.97), rgba(255, 246, 234, 0.9)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(18, 5, 7, 0.34);
  color: var(--ink);
}

.quote-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(177, 126, 77, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(177, 126, 77, 0.08) 1px, transparent 1px) 0 0 / 28px 28px;
  pointer-events: none;
}

.quote-preview > * {
  position: relative;
}

.quote-preview-head,
.quote-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-ui);
}

.quote-preview-head {
  margin-bottom: 18px;
  color: #5f3430;
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2fb36d;
  box-shadow: 0 0 0 7px rgba(47, 179, 109, 0.12);
}

.upload-card {
  display: grid;
  place-items: center;
  min-height: 184px;
  padding: 22px;
  border: 1px dashed rgba(177, 126, 77, 0.62);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(60, 120, 165, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.78);
  text-align: center;
}

.upload-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.upload-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.upload-card span {
  color: var(--muted);
  font-size: 14px;
}

.quote-process-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.quote-process-list div {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(234, 217, 195, 0.88);
  border-radius: 10px;
  background: #fff;
}

.quote-process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: #3f1317;
  font-family: var(--font-ui);
  font-size: 12px;
}

.quote-process-list small {
  color: var(--muted);
}

.quote-preview-foot {
  padding: 16px;
  border-radius: 12px;
  color: #fff8ee;
  background: linear-gradient(135deg, #3f1317, #1e2832);
}

.quote-preview-foot strong {
  color: var(--cream);
  font-size: 24px;
}

.proof-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(234, 217, 195, 0.82);
  background: #fff;
}

.proof-track {
  display: flex;
  width: max-content;
  animation: proofMarquee 28s linear infinite;
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 34px;
  color: #3d2522;
  font-family: var(--font-ui);
  font-size: 14px;
  white-space: nowrap;
}

.proof-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: #2f7f92;
}

@keyframes proofMarquee {
  to {
    transform: translateX(-50%);
  }
}

.service-showcase {
  padding-top: 66px;
}

.process-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.8fr));
  gap: 18px;
}

.process-feature {
  position: relative;
  overflow: hidden;
  min-height: 332px;
  padding: 22px;
  border: 1px solid rgba(234, 217, 195, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(63, 19, 23, 0.07);
}

.process-feature-large {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 22px;
  min-height: 682px;
  color: #fff8ee;
  border-color: rgba(63, 19, 23, 0.28);
  background: linear-gradient(135deg, #3f1317, #1f2f38);
}

.process-feature-large .eyebrow,
.process-feature-large p,
.process-feature-large li {
  color: #f3d3ab;
}

.process-feature-large h3 {
  color: #fffaf4;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}

.process-photo {
  width: 100%;
  height: 208px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3eee6;
  box-shadow: 0 10px 24px rgba(34, 9, 12, 0.12);
}

.process-feature-large .process-photo {
  height: 390px;
  margin-bottom: 0;
  border: 1px solid rgba(243, 211, 171, 0.2);
}

.process-feature:not(.process-feature-large) h3 {
  font-size: 24px;
}

.process-feature:not(.process-feature-large) p {
  color: var(--muted);
  line-height: 1.62;
}

.process-media {
  position: relative;
  min-height: 198px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    #3f1317;
}

.process-feature-large .process-media {
  min-height: 430px;
  margin-bottom: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(243, 211, 171, 0.18), transparent 34%),
    linear-gradient(160deg, #5a1b20, #263f48);
}

.process-media span {
  position: absolute;
  display: block;
}

.resin-media span:nth-child(1) {
  left: 50%;
  bottom: 70px;
  width: 146px;
  height: 146px;
  border: 22px solid #f3d3ab;
  border-radius: 28px 28px 42px 42px;
  transform: translateX(-50%) rotate(-12deg) skew(-8deg);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.65);
}

.resin-media span:nth-child(2) {
  left: 24%;
  right: 24%;
  bottom: 48px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.32);
}

.resin-media span:nth-child(3) {
  left: 22%;
  top: 52px;
  width: 56%;
  height: 3px;
  border-radius: 999px;
  background: #dbac6a;
  box-shadow: 0 0 22px rgba(219, 172, 106, 0.72);
  animation: scanSweep 2.8s ease-in-out infinite;
}

.powder-media {
  background: linear-gradient(135deg, #1f2f38, #e7d2b2);
}

.powder-media span {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff8ee, #b17e4d);
  box-shadow: 0 18px 26px rgba(31, 47, 56, 0.18);
}

.powder-media span:nth-child(1) { left: 28%; top: 52px; }
.powder-media span:nth-child(2) { left: 48%; top: 78px; opacity: 0.72; }
.powder-media span:nth-child(3) { left: 38%; top: 110px; opacity: 0.46; }

.filament-media {
  background: linear-gradient(135deg, #3f1317, #2f7f92);
}

.filament-media span:nth-child(1) {
  left: 22%;
  top: 42px;
  width: 134px;
  height: 78px;
  border: 10px solid #f3d3ab;
  border-radius: 42px;
}

.filament-media span:nth-child(2) {
  left: 42%;
  top: 76px;
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: #fff8ee;
}

.filament-media span:nth-child(3) {
  left: 54%;
  top: 86px;
  width: 12px;
  height: 72px;
  border-radius: 999px;
  background: #dbac6a;
}

.work-band {
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(235, 244, 245, 0.92)),
    var(--soft);
}

.timeline-steps .step {
  min-height: 252px;
  border-left: 0;
  border-top: 3px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(63, 19, 23, 0.07);
}

.timeline-steps .step::before {
  margin-bottom: 14px;
}

.timeline-steps .step svg {
  position: absolute;
  right: 24px;
  top: 28px;
  width: 34px;
  height: 34px;
  color: rgba(63, 19, 23, 0.46);
}

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

.industry-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: #1f1715;
  box-shadow: 0 16px 34px rgba(63, 19, 23, 0.12);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(20, 8, 10, 0.02) 14%, rgba(20, 8, 10, 0.44) 55%, rgba(20, 8, 10, 0.88)),
    linear-gradient(90deg, rgba(20, 8, 10, 0.42), transparent 68%);
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.industry-card:hover img {
  transform: scale(1.07);
}

.ev-card { background: linear-gradient(135deg, #3f1317, #6a5526); }
.aero-card { background: linear-gradient(135deg, #1f2f38, #2f7f92); }
.med-card { background: linear-gradient(135deg, #512442, #8e6a98); }
.robot-card { background: linear-gradient(135deg, #272727, #b17e4d); }

.industry-card span,
.industry-card strong {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.industry-card span {
  margin-bottom: 8px;
  color: #f3d3ab;
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
}

.industry-card strong {
  font-size: 20px;
  line-height: 1.24;
}

.industry-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.landing-faq details {
  min-height: 138px;
  box-shadow: 0 10px 26px rgba(63, 19, 23, 0.06);
}

.client-marquee-section {
  overflow: hidden;
  color: #fff8ee;
  background:
    linear-gradient(135deg, rgba(34, 9, 12, 0.98), rgba(31, 47, 56, 0.94)),
    #22090c;
}

.client-section-inner {
  padding-bottom: 46px;
}

.client-marquee-section h2 {
  color: #fffaf4;
}

.client-marquee-section .section-head {
  margin-bottom: 18px;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(243, 211, 171, 0.16);
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(16vw, 180px);
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #22090c, transparent);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #22090c, transparent);
}

.client-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  padding: 22px 0;
  animation: clientMarquee 34s linear infinite;
}

.client-track img {
  width: 178px;
  height: 86px;
  padding: 15px 18px;
  border: 1px solid rgba(243, 211, 171, 0.18);
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes clientMarquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 74px 0;
}

.section.tight {
  padding: 44px 0;
}

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

.section-head p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

.lifecycle-section {
  position: relative;
}

.lifecycle-head {
  align-items: start;
}

.lifecycle-shell {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(177, 126, 77, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 211, 171, 0.34), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(63, 19, 23, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(251, 246, 238, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 50px rgba(63, 19, 23, 0.1);
}

.lifecycle-shell::before {
  content: "";
  position: absolute;
  left: 52px;
  right: 52px;
  top: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 126, 77, 0.38), transparent);
}

.lifecycle-meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #7a4c25;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meter-track {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(177, 126, 77, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.meter-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f3d3ab, #dbac6a 44%, #b17e4d 72%, #3f1317);
}

.lifecycle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.life-card {
  position: relative;
  overflow: hidden;
  min-height: 338px;
  padding: 14px;
  border: 1px solid rgba(234, 217, 195, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(63, 19, 23, 0.07);
  backdrop-filter: blur(10px);
}

.life-image {
  display: block;
  width: 100%;
  height: 104px;
  margin: -4px auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(63, 19, 23, 0.12));
  transition: transform 220ms ease;
}

.life-card:hover .life-image {
  transform: translateY(-5px);
}

.life-visual {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 88px;
  height: 64px;
  opacity: 0.9;
  pointer-events: none;
}

.life-visual span {
  position: absolute;
  display: block;
}

.visual-design {
  border: 1px solid rgba(177, 126, 77, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(177, 126, 77, 0.12) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(0deg, rgba(177, 126, 77, 0.12) 1px, transparent 1px) 0 0 / 14px 14px,
    rgba(255, 250, 244, 0.7);
}

.visual-design span:nth-child(1) {
  left: 14px;
  top: 32px;
  width: 58px;
  height: 2px;
  background: #b17e4d;
  transform: rotate(-24deg);
  animation: drawLine 2.8s ease-in-out infinite;
}

.visual-design span:nth-child(2) {
  left: 22px;
  top: 18px;
  width: 32px;
  height: 32px;
  border: 2px solid #3f1317;
  border-radius: 50%;
}

.visual-design span:nth-child(3) {
  left: 60px;
  top: 12px;
  width: 12px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(#f3d3ab, #b17e4d);
  transform: rotate(28deg);
}

.visual-scan span:nth-child(1) {
  left: 16px;
  top: 18px;
  width: 54px;
  height: 34px;
  border: 2px solid rgba(63, 19, 23, 0.58);
  border-radius: 44% 56% 48% 52%;
}

.visual-scan span:nth-child(2) {
  left: 6px;
  top: 8px;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: #dbac6a;
  box-shadow: 0 0 16px rgba(219, 172, 106, 0.5);
  animation: scanSweep 2.2s ease-in-out infinite;
}

.visual-scan span:nth-child(3) {
  inset: 5px;
  border: 1px dashed rgba(177, 126, 77, 0.42);
  border-radius: 12px;
}

.visual-prototype span:nth-child(1),
.visual-prototype span:nth-child(2),
.visual-prototype span:nth-child(3) {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(243, 211, 171, 0.5);
  background: linear-gradient(135deg, #f3d3ab, #b17e4d);
  transform: rotateX(55deg) rotateZ(45deg);
}

.visual-prototype span:nth-child(1) {
  left: 20px;
  top: 8px;
}

.visual-prototype span:nth-child(2) {
  left: 20px;
  top: 22px;
  opacity: 0.62;
}

.visual-prototype span:nth-child(3) {
  left: 20px;
  top: 36px;
  opacity: 0.34;
}

.visual-validate span:nth-child(1) {
  left: 10px;
  top: 10px;
  width: 52px;
  height: 42px;
  border: 2px solid rgba(63, 19, 23, 0.54);
  border-radius: 14px;
}

.visual-validate span:nth-child(2) {
  left: 25px;
  top: 26px;
  width: 34px;
  height: 17px;
  border-left: 4px solid #b17e4d;
  border-bottom: 4px solid #b17e4d;
  transform: rotate(-45deg);
  animation: checkPop 2.4s ease-in-out infinite;
}

.visual-validate span:nth-child(3) {
  right: 5px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(219, 172, 106, 0.32);
}

.visual-batch span {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f3d3ab, #b17e4d);
  animation: batchRise 2.6s ease-in-out infinite;
}

.visual-batch span:nth-child(1) { left: 10px; top: 28px; }
.visual-batch span:nth-child(2) { left: 34px; top: 18px; animation-delay: 0.12s; }
.visual-batch span:nth-child(3) { left: 58px; top: 28px; animation-delay: 0.24s; }
.visual-batch span:nth-child(4) { left: 22px; top: 42px; opacity: 0.56; animation-delay: 0.36s; }

.visual-inspect span:nth-child(1) {
  left: 16px;
  top: 8px;
  width: 48px;
  height: 48px;
  border: 3px solid #3f1317;
  border-right-color: transparent;
  border-radius: 50%;
}

.visual-inspect span:nth-child(2) {
  left: 54px;
  top: 42px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #3f1317;
  transform: rotate(38deg);
}

.visual-inspect span:nth-child(3) {
  left: 28px;
  top: 30px;
  width: 38px;
  height: 2px;
  background: #dbac6a;
  animation: measureSlide 2.3s ease-in-out infinite;
}

.visual-factory {
  width: 150px;
  height: 82px;
}

.visual-factory span:nth-child(1) {
  left: 6px;
  bottom: 8px;
  width: 118px;
  height: 34px;
  border-radius: 10px 10px 4px 4px;
  background: rgba(243, 211, 171, 0.2);
  border: 1px solid rgba(243, 211, 171, 0.35);
}

.visual-factory span:nth-child(2) {
  left: 20px;
  bottom: 42px;
  width: 28px;
  height: 26px;
  background: linear-gradient(135deg, #f3d3ab, #b17e4d);
  clip-path: polygon(0 100%, 0 35%, 42% 62%, 42% 35%, 100% 70%, 100% 100%);
}

.visual-factory span:nth-child(3) {
  left: 12px;
  bottom: 15px;
  width: 96px;
  height: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #f3d3ab 0 12px, rgba(243, 211, 171, 0.24) 12px 22px);
  animation: conveyorMove 1.2s linear infinite;
}

.visual-factory span:nth-child(4) {
  right: 10px;
  bottom: 16px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #dbac6a;
  animation: batchRise 2.6s ease-in-out infinite;
}

.life-card:nth-child(even) {
  transform: none;
}

.life-card-wide {
  grid-column: auto;
  min-height: 210px;
  color: #fff8ee;
  border-color: rgba(243, 211, 171, 0.36);
  background:
    linear-gradient(135deg, rgba(63, 19, 23, 0.96), rgba(63, 19, 23, 0.74)),
    radial-gradient(circle at 80% 20%, rgba(243, 211, 171, 0.2), transparent 32%);
}

.life-card > span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #b17e4d;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.life-card-wide > span,
.life-card-wide p {
  color: #f3d3ab;
}

.life-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border: 1px solid rgba(177, 126, 77, 0.28);
  border-radius: 14px;
  color: #3f1317;
  background: linear-gradient(135deg, #fffaf4, #f3d3ab);
}

.life-card-wide .life-icon {
  color: #2a1012;
}

.life-card h3 {
  margin-bottom: 10px;
  color: #3f1317;
  font-size: 16px;
}

.life-card-wide h3 {
  color: #fffaf4;
}

.life-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.life-card-wide p {
  color: #f3d3ab;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.tab {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  color: #3d2522;
  font-weight: 500;
  cursor: pointer;
}

.tab.active {
  color: #2a1012;
  border-color: var(--brand);
  background: var(--brand);
}

.service-grid,
.materials-grid,
.news-grid,
.support-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.material-card,
.news-card,
.support-card,
.value-card,
.quote-panel,
.detail-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(63, 19, 23, 0.06);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.service-visual {
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 211, 171, 0.5), transparent 34%),
    linear-gradient(135deg, #fffaf4, #f0e4d4 48%, #d7e6e8);
}

.service-visual img {
  width: min(220px, 92%);
  height: 138px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(63, 19, 23, 0.16));
  transition: transform 220ms ease;
}

.service-card:hover .service-visual img {
  transform: translateY(-5px) scale(1.03);
}

.part-shape {
  width: 108px;
  height: 82px;
  border: 13px solid var(--brand);
  border-radius: 20px 20px 28px 28px;
  position: relative;
  transform: skew(-8deg);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.72);
}

.part-shape::before,
.part-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.part-shape::before {
  width: 24px;
  height: 24px;
  left: 16px;
  top: 18px;
}

.part-shape::after {
  width: 16px;
  height: 16px;
  right: 18px;
  bottom: 15px;
}

.service-body,
.material-card,
.news-card,
.support-card,
.value-card {
  padding: 20px;
}

.services-page .service-catalog-section {
  padding-top: 58px;
}

.services-page .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.services-page .service-card {
  min-height: 100%;
}

.services-page .service-body {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 18px;
}

.services-page .service-body h3 {
  font-size: 19px;
}

.services-page .service-body p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.55;
}

.services-page .spec-list {
  gap: 6px;
  margin: 14px 0;
  font-size: 13px;
}

.services-page .price-row {
  margin-top: auto;
  color: #5d4643;
  font-size: 13px;
}

.services-page .inline-actions {
  margin-top: 14px;
}

.service-body p,
.material-card p,
.news-card p,
.support-card p,
.value-card p,
.detail-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: #3d2522;
}

.spec-list li {
  display: flex;
  gap: 8px;
}

.spec-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px;
  border-left: 3px solid var(--brand);
  background: #fff;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: #2a1012;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.photo-panel {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 32, 47, 0.06), rgba(18, 32, 47, 0.18)),
    url("https://images.unsplash.com/photo-1752614672115-adcf3e2596af?auto=format&fit=crop&fm=jpg&q=70&w=1400") center / cover;
}

.gallery-list {
  display: grid;
  gap: 12px;
}

.mini-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mini-part span {
  color: var(--muted);
}

.quote-layout,
.two-col {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: start;
}

.quote-panel,
.detail-panel,
.contact-panel {
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 7px;
  color: #3d2522;
  font-size: 14px;
  font-weight: 500;
}

.field.full {
  grid-column: 1 / -1;
}

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

textarea {
  min-height: 110px;
  resize: vertical;
}

.dropzone {
  display: grid;
  place-items: center;
  min-height: 168px;
  border: 2px dashed #d7a965;
  border-radius: 8px;
  background: #fff7ee;
  text-align: center;
}

.estimate-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.estimate-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.estimate-total {
  color: var(--brand-dark);
  font-size: 30px;
  font-weight: 500;
}

.page-hero {
  background: linear-gradient(135deg, #3f1317 0%, #4d171c 48%, #f3d3ab 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .section {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 36px;
  align-items: center;
}

.page-hero p {
  color: #f8e7d0;
  font-size: 18px;
  line-height: 1.7;
}

.page-hero h1,
.page-hero .eyebrow {
  color: #fffaf4;
}

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

.metric {
  padding: 18px;
  border: 1px solid rgba(243, 211, 171, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.88);
}

.metric strong {
  display: block;
  font-size: 26px;
  font-weight: 500;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.table th,
.table td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  color: #fff;
  background: var(--maroon);
}

.table tr:last-child td {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff1df;
  color: #7a4c25;
  font-size: 13px;
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: #fff8ee;
  background:
    radial-gradient(circle at 20% 12%, rgba(243, 211, 171, 0.18), transparent 32%),
    linear-gradient(135deg, #22090c 0%, #3f1317 48%, #5a1b20 100%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 42px;
  padding: 78px 0 72px;
  border-bottom: 1px solid rgba(243, 211, 171, 0.2);
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 28px;
  filter: none;
}

.site-footer h4 {
  margin: 0 0 24px;
  color: rgba(243, 211, 171, 0.68);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #fff8ee;
  line-height: 1.55;
}

.site-footer p {
  max-width: 300px;
  margin-bottom: 14px;
  font-size: 17px;
}

.site-footer a {
  margin-bottom: 16px;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 74px;
}

.copyright {
  max-width: 240px;
  color: rgba(243, 211, 171, 0.7);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  margin-bottom: 0;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 0;
  transform: translateX(-36%);
  color: rgba(243, 211, 171, 0.08);
  font-family: var(--font-heading);
  font-size: clamp(72px, 16vw, 190px);
  font-weight: 800;
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.seekmake-section {
  background: #fff;
}

#seekmake-quote-container {
  min-height: 100vh;
}

.shop-hero .section {
  grid-template-columns: 1fr 0.72fr;
}

.shop-page .shop-hero {
  background:
    linear-gradient(90deg, rgba(34, 9, 12, 0.96), rgba(63, 19, 23, 0.82)),
    url("assets/brand-deck-page.png") center / cover;
}

.shop-page .shop-hero h1 {
  max-width: 760px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

.shop-page .shop-hero .eyebrow {
  color: var(--cream);
}

.shop-page .shop-hero p {
  max-width: 680px;
  color: #f8e7d0;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 500;
}

.shop-page .shop-hero .button:not(.primary) {
  color: var(--cream);
  border-color: rgba(243, 211, 171, 0.42);
  background: rgba(34, 9, 12, 0.22);
}

.shop-preview-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(243, 211, 171, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 28%, rgba(243, 211, 171, 0.28), transparent 34%),
    rgba(255, 250, 244, 0.14);
  box-shadow: 0 18px 42px rgba(34, 9, 12, 0.18);
}

.shop-preview-object {
  width: min(260px, 74%);
  aspect-ratio: 1;
  margin: 12px auto 24px;
  border: 22px solid rgba(243, 211, 171, 0.86);
  border-radius: 42px;
  transform: rotate(-14deg);
  box-shadow:
    inset 0 0 0 22px rgba(255, 250, 244, 0.2),
    0 28px 42px rgba(34, 9, 12, 0.22);
}

.shop-preview-panel strong,
.shop-preview-panel span {
  display: block;
  text-align: center;
}

.shop-preview-panel strong {
  color: #fffaf4;
  font-size: 24px;
}

.shop-preview-panel span {
  max-width: 330px;
  margin: 8px auto 0;
  color: #f3d3ab;
  line-height: 1.55;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.shop-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px;
}

.shop-panel,
.product-placeholder,
.notify-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(63, 19, 23, 0.06);
}

.shop-panel {
  padding: 18px;
}

.shop-filter {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: default;
}

.shop-filter.active,
.shop-filter:hover {
  border-color: rgba(177, 126, 77, 0.32);
  background: #fff4e5;
}

.cart-empty {
  display: grid;
  gap: 8px;
  justify-items: start;
  color: var(--muted);
  line-height: 1.5;
}

.cart-empty svg {
  color: var(--brand-dark);
}

.cart-empty strong {
  color: var(--ink);
}

.shop-main {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.shop-toolbar h2 {
  margin-bottom: 0;
}

.shop-sort {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
}

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

.product-placeholder {
  min-height: 300px;
  padding: 18px;
}

.product-placeholder span {
  display: block;
  height: 172px;
  margin-bottom: 18px;
  border: 1px dashed rgba(177, 126, 77, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(219, 172, 106, 0.22), transparent 34%),
    linear-gradient(135deg, #fffaf4, #f2e6d6);
}

.product-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.product-placeholder p {
  color: var(--muted);
  line-height: 1.55;
}

.notify-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(63, 19, 23, 0.96), rgba(63, 19, 23, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(243, 211, 171, 0.24), transparent 34%);
}

.notify-band h3 {
  margin-bottom: 0;
  color: #fffaf4;
}

.notify-band .eyebrow {
  color: var(--cream);
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
      rgba(63, 19, 23, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    color: #f3d3ab;
  }

  .main-nav.open {
    display: flex;
  }

  .actions .button:not(.primary) {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 118px;
  }

  .global-card {
    min-height: auto;
  }

  .landing-hero .hero-inner {
    padding-top: 92px;
  }

  .landing-hero h1 {
    font-size: clamp(38px, 11vw, 68px);
  }

  .quote-preview {
    width: min(560px, 100%);
  }

  .process-feature-large {
    min-height: auto;
  }

  .process-feature-large .process-media,
  .process-feature-large .process-photo {
    min-height: 320px;
    height: 320px;
  }

  .industry-card {
    min-height: 230px;
  }

  .globe-wrap {
    min-height: 260px;
  }

  .earth-svg {
    width: min(260px, 74vw);
  }

  .hero-stats,
  .service-grid,
  .materials-grid,
  .news-grid,
  .support-grid,
  .values-grid,
  .steps,
  .gallery,
  .process-showcase-grid,
  .process-feature-large,
  .industry-grid,
  .industry-list,
  .landing-faq,
  .quote-layout,
  .two-col,
  .page-hero .section,
  .shop-hero .section,
  .shop-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

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

  .footer-grid {
    gap: 26px;
    padding: 54px 0 44px;
  }

  .footer-bottom {
    display: block;
    padding-bottom: 54px;
  }

  .footer-legal {
    margin-top: 18px;
  }

  .footer-watermark {
    left: 16px;
    right: 16px;
    bottom: 18px;
    transform: none;
    font-size: clamp(56px, 20vw, 120px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .lifecycle-shell {
    overflow-x: auto;
    padding: 22px;
  }

  .lifecycle-shell::before {
    display: none;
  }

  .lifecycle-grid {
    grid-template-columns: repeat(7, 190px);
  }

  .life-card:nth-child(even) {
    transform: none;
  }

  .life-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .top-strip .wrap {
    display: block;
  }

  .logo {
    gap: 9px;
    padding: 8px 10px;
  }

  .logo-image {
    width: 168px;
    max-width: 52vw;
  }

  .logo-icon {
    width: 30px;
    height: 32px;
  }

  .logo-divider {
    height: 28px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 84px;
  }

  .global-card {
    padding: 18px;
  }

  .globe-wrap {
    min-height: 230px;
  }

  .earth-svg {
    width: min(230px, 78vw);
  }

  .hero-stat {
    padding: 14px;
  }

  .landing-hero .hero-inner {
    padding-top: 76px;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .quote-process-list div {
    grid-template-columns: 48px 1fr;
  }

  .quote-process-list small {
    grid-column: 2;
  }

  .proof-track span {
    min-height: 50px;
    padding: 0 22px;
  }

  .process-feature {
    min-height: auto;
    padding: 18px;
  }

  .process-feature-large .process-media,
  .process-media {
    min-height: 240px;
  }

  .process-feature-large .process-photo,
  .process-photo {
    height: 220px;
    min-height: 0;
  }

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

  .client-track {
    gap: 12px;
    padding: 16px 0;
  }

  .client-track img {
    width: 142px;
    height: 72px;
    padding: 12px 14px;
  }

  .mini-part {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-toolbar,
  .notify-band {
    display: block;
  }

  .shop-sort,
  .notify-band .button {
    margin-top: 14px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat strong {
    font-size: 22px;
  }

  .section {
    padding: 54px 0;
  }

  .lifecycle-shell {
    padding: 16px;
    border-radius: 18px;
  }

  .lifecycle-meter {
    gap: 10px;
    margin-bottom: 18px;
  }

  .lifecycle-grid {
    grid-template-columns: repeat(7, 178px);
  }

  .life-card-wide {
    grid-column: auto;
  }

  .life-card {
    min-height: 330px;
    padding: 14px;
  }
}
