:root {
  --ink: #111214;
  --muted: #6f737b;
  --line: #d9dde3;
  --paper: #f7f7f4;
  --white: #ffffff;
  --charcoal: #1d1f23;
  --red: #a51f2f;
  --green: #607468;
  --silver: #b7bdc3;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.95);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  max-width: 1280px;
  min-height: 96px;
  margin: 0 auto;
  padding: 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: 0;
}

.brand img {
  width: 132px;
  height: auto;
  filter: invert(1) contrast(2.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.88) 0%, rgba(8, 9, 11, 0.72) 35%, rgba(8, 9, 11, 0.18) 74%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.56), rgba(8, 9, 11, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 1280px;
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(52px, 6.6vw, 104px);
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101114;
  color: var(--white);
}

.proof-item {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-size: 20px;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.section {
  padding: 96px 24px;
}

.section.dark {
  background: #111214;
  color: var(--white);
}

.section.dark.dark-section-bg-factory,
.section.dark.dark-section-bg-craft {
  position: relative;
  overflow: hidden;
  background-color: #111214;
  background-image: var(--dark-section-image);
  background-position: center;
  background-size: cover;
}

.section.dark.dark-section-bg-factory {
  --dark-section-image: url("assets/home-workshop-floor.jpg");
}

.section.dark.dark-section-bg-craft {
  --dark-section-image: url("assets/home-embroidery-machine-array.jpg");
}

.section.dark.dark-section-bg-factory::before,
.section.dark.dark-section-bg-craft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.76), rgba(7, 8, 10, 0.82)),
    linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.48), rgba(7, 8, 10, 0.88));
}

.section.dark.dark-section-bg-factory .section-inner,
.section.dark.dark-section-bg-craft .section-inner {
  position: relative;
  z-index: 1;
}

.section.green {
  background: #d9ded8;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.craft {
  grid-template-columns: repeat(3, 1fr);
}

.item {
  background: var(--white);
  border: 1px solid rgba(17, 18, 20, 0.09);
}

.dark .item {
  background: #1a1c20;
  border-color: rgba(255, 255, 255, 0.08);
}

.item img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  background: #ececea;
}

.grid.shells .item img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #eff1f0;
}

.item-body {
  min-height: 156px;
  padding: 20px;
}

.item-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.dark .item-body p {
  color: rgba(255, 255, 255, 0.62);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.step {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

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

.feature-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.case-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
  background: #101114;
  color: var(--white);
}

.case-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  align-self: center;
  padding: 56px;
}

.case-content p {
  color: rgba(255, 255, 255, 0.72);
}

.downloads {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

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

.cta {
  background: #111214;
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

.cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  background: #090a0c;
  color: rgba(255, 255, 255, 0.6);
  padding: 78px 32px 26px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: 58px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-inner h3 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-inner a,
.footer-inner span {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-inner a:hover {
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  margin: 0 0 26px;
}

.footer-brand img {
  width: 132px;
  filter: invert(1) contrast(2.4);
}

.footer-brand-block p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.75;
}

.footer-contact-line {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-contact-line svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-line span {
  margin-top: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 64px auto 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  text-align: center;
}

.page-hero {
  padding: 112px 24px 64px;
  background: #111214;
  color: var(--white);
}

.image-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 480px;
  overflow: hidden;
  padding: 0 24px;
  background-color: #111214;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.66), rgba(7, 8, 10, 0.3) 54%, rgba(7, 8, 10, 0.64)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.34), rgba(7, 8, 10, 0.08));
}

.image-hero .page-hero-inner,
.contact-hero.image-hero .contact-hero-inner {
  position: relative;
  z-index: 1;
}

.image-hero .page-hero-inner {
  width: 100%;
  padding: 86px 0 76px;
  text-align: center;
}

.image-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.image-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-bg-factory {
  --hero-image: url("assets/home-workshop-floor.jpg");
}

.hero-bg-craft {
  --hero-image: url("assets/home-embroidery-machine-array.jpg");
}

.hero-bg-products {
  --hero-image: url("assets/hero-dark-craft.png");
}

.hero-bg-resources {
  --hero-image: url("assets/bg-resources-craft-planning.jpg");
}

.page-hero.hero-bg-factory,
.contact-hero.hero-bg-factory {
  --hero-image: url("assets/home-workshop-floor.jpg");
}

.page-hero.hero-bg-craft {
  --hero-image: url("assets/home-embroidery-machine-array.jpg");
}

.page-hero.hero-bg-products {
  --hero-image: url("assets/hero-dark-craft.png");
}

.page-hero.hero-bg-resources {
  --hero-image: url("assets/bg-resources-craft-planning.jpg");
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.content-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
}

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

.text-block {
  padding: 26px;
  border: 1px solid rgba(17, 18, 20, 0.11);
  background: var(--white);
}

.text-block p,
.text-block li {
  color: var(--muted);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
}

.nav-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-icons a:hover,
.nav-icons a:focus-visible {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-icons svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-hero {
  padding: 72px 24px 48px;
  background: var(--white);
  color: var(--ink);
}

.products-hero.image-hero {
  padding: 0 24px;
  color: var(--white);
}

.products-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
}

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

.products-hero.image-hero p {
  color: rgba(255, 255, 255, 0.8);
}

.products-hero h1 {
  font-size: clamp(44px, 5.8vw, 76px);
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px 12px;
}

.filter-button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: #22252a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-grid-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 24px 96px;
}

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

.product-card {
  min-width: 0;
}

.product-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: #eff1f0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
  transition: transform 180ms ease;
}

.product-card-image:hover img {
  transform: none;
}

.product-title {
  display: -webkit-box;
  min-height: 48px;
  margin-top: 22px;
  overflow: hidden;
  color: #27292f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 800;
}

.product-card .product-link {
  display: flex;
  justify-content: center;
}

.product-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 28px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(300px, 0.9fr) 294px;
  gap: 44px;
  align-items: start;
}

.product-gallery {
  position: relative;
}

.gallery-zoom {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 24px;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: contain;
  background: var(--white);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.thumb {
  aspect-ratio: 1 / 0.78;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.thumb.active {
  border-color: #008ca0;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-summary h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
}

.dark-button {
  background: #242424;
  color: var(--white);
}

.inquiry-link {
  display: block;
  margin: 18px 0 24px;
  color: #4f535b;
  font-size: 14px;
}

.product-info {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  color: #4f535b;
  font-size: 15px;
}

.info-row span {
  color: #555963;
}

.info-row strong {
  color: #23262b;
  font-weight: 500;
}

.side-box {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}

.side-box + .side-box {
  margin-top: 20px;
}

.side-box h2 {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.side-box a,
.side-box p {
  display: block;
  margin-top: 16px;
  color: #3d4048;
}

.product-lower {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--max);
  margin: 44px auto 0;
  padding: 0 24px 96px;
}

.product-detail-section {
  border-top: 3px solid #008ca0;
  background: var(--white);
  padding: 28px;
}

.product-detail-section h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.product-detail-section p {
  color: var(--muted);
}

.product-page {
  max-width: 1280px;
  padding-top: 48px;
}

.product-layout {
  grid-template-columns: minmax(460px, 1.12fr) minmax(320px, 0.82fr) 260px;
  gap: 36px;
}

.product-main-image {
  aspect-ratio: 1 / 1;
  background: #eff1f0;
}

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

.thumb {
  background: #eff1f0;
}

.product-summary h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.product-info {
  max-width: 430px;
  gap: 10px;
  margin-top: 4px;
}

.info-row {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  font-size: 14px;
}

.info-row strong {
  line-height: 1.42;
}

.product-detail-tabs-wrap,
.recommended-products {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 0 24px;
}

.product-tabs {
  border-top: 3px solid #008ca0;
  background: var(--white);
}

.tabs-head {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #4d525b;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-button.active {
  background: #111214;
  color: var(--white);
}

.tab-panel {
  display: none;
  padding: 30px;
}

.tab-panel.active {
  display: block;
}

.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding-left: 20px;
  color: #5f6570;
}

.tab-panel li {
  line-height: 1.55;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  min-height: 56px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-table span {
  color: #616772;
  font-weight: 700;
}

.spec-table strong {
  color: #23262b;
  font-weight: 600;
}

.recommended-products {
  padding-bottom: 96px;
}

.recommended-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.recommended-head h2 {
  font-size: clamp(30px, 4vw, 48px);
}

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

.recommend-card {
  min-width: 0;
}

.recommend-preview {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #25282e;
  text-align: left;
  cursor: pointer;
}

.recommend-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #eff1f0;
}

.recommend-preview span {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recommend-card.active .recommend-preview img {
  outline: 3px solid #008ca0;
  outline-offset: -3px;
}

.recommend-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 800;
}

body.product-theme-dark {
  background: #0f1012;
  color: #f7f4ee;
}

.product-theme-dark main {
  background:
    radial-gradient(circle at 16% 4%, rgba(165, 31, 47, 0.18), transparent 30%),
    linear-gradient(180deg, #111214 0%, #0f1012 38%, #141519 100%);
}

.product-theme-dark .products-hero.image-hero {
  min-height: 430px;
  background-image: url("assets/hero-dark-craft.png");
  background-position: center;
}

.product-theme-dark .products-hero.image-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.7), rgba(7, 8, 10, 0.32) 48%, rgba(7, 8, 10, 0.62)),
    linear-gradient(0deg, rgba(7, 8, 10, 0.38), rgba(7, 8, 10, 0.08));
}

.product-theme-dark .products-hero .page-hero-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  align-items: center;
  max-width: 1280px;
}

.product-theme-dark .products-hero h1 {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(46px, 4.2vw, 64px);
  line-height: 1.05;
  text-align: left;
  white-space: nowrap;
}

.product-theme-dark .products-hero .eyebrow {
  text-align: left;
}

.product-theme-dark .products-hero p {
  max-width: 520px;
  margin-right: 0;
  text-align: left;
}

.product-theme-dark .product-toolbar {
  max-width: 1280px;
  padding-top: 34px;
  padding-bottom: 20px;
  background: transparent;
}

.product-theme-dark .filter-button {
  min-height: 44px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #e7e8e4;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.product-theme-dark .filter-button.active,
.product-theme-dark .filter-button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.product-theme-dark .product-grid-section {
  max-width: 1280px;
  padding-top: 28px;
  padding-bottom: 110px;
}

.product-theme-dark .product-grid {
  gap: 34px;
}

.product-theme-dark .product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 14px 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    #17191d;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-theme-dark .product-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.product-theme-dark .product-card[hidden] {
  display: none;
}

.product-theme-dark .product-card-image {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.92), rgba(241, 242, 239, 0.98) 58%, #e4e5e1 100%);
}

.product-theme-dark .product-card-image img {
  transition: transform 220ms ease;
}

.product-theme-dark .product-card-image:hover img,
.product-theme-dark .product-card:hover .product-card-image img {
  transform: scale(1.035);
}

.product-theme-dark .product-title {
  min-height: 58px;
  margin-top: 20px;
  color: #f7f4ee;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.28;
}

.product-theme-dark .product-meta {
  color: #aeb4bd;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.product-theme-dark .product-link {
  color: #c92b40;
  letter-spacing: 0.01em;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.product-theme-dark .product-link:hover {
  color: #f1485d;
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(-1px);
}

.product-theme-dark .product-page {
  max-width: 1280px;
  color: #f7f4ee;
}

.product-theme-dark .product-layout {
  grid-template-columns: minmax(500px, 0.92fr) minmax(430px, 1fr) 260px;
  gap: 34px;
}

.product-theme-dark .product-gallery {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #17191d;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.product-theme-dark .gallery-zoom {
  top: 22px;
  right: 22px;
  background: rgba(15, 16, 18, 0.78);
  color: #f7f4ee;
}

.product-theme-dark .product-main-image,
.product-theme-dark .thumb,
.product-theme-dark .recommend-preview img {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.94), rgba(241, 242, 239, 0.98) 60%, #e1e3df 100%);
}

.product-theme-dark .thumb {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-theme-dark .thumb.active,
.product-theme-dark .recommend-card.active .recommend-preview img {
  border-color: var(--red);
  outline-color: var(--red);
}

.product-theme-dark .product-summary .eyebrow,
.product-theme-dark .recommended-head .eyebrow {
  color: #aeb4bd;
}

.product-theme-dark .product-summary h1,
.product-theme-dark .recommended-head h2 {
  color: #f7f4ee;
  font-weight: 900;
  letter-spacing: 0;
}

.product-theme-dark .product-summary h1 {
  max-width: 660px;
  font-size: clamp(34px, 3.15vw, 48px);
  line-height: 1.12;
}

.product-theme-dark .dark-button {
  background: var(--red);
  color: var(--white);
}

.product-theme-dark .inquiry-link {
  color: #c6cbd2;
}

.product-theme-dark .info-row {
  color: #aeb4bd;
}

.product-theme-dark .info-row span {
  color: #8f969f;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-theme-dark .info-row strong {
  color: #f2f0ea;
}

.product-theme-dark .side-box,
.product-theme-dark .product-tabs {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #17191d;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.product-theme-dark .side-box h2,
.product-theme-dark .tabs-head {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-theme-dark .side-box h2 {
  color: #f7f4ee;
}

.product-theme-dark .side-box a,
.product-theme-dark .side-box p {
  color: #c6cbd2;
}

.product-theme-dark .side-contact-list a {
  color: #f1485d;
}

.product-theme-dark .side-box .button.light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #f7f4ee;
}

.product-theme-dark .product-detail-tabs-wrap,
.product-theme-dark .recommended-products {
  color: #f7f4ee;
}

.product-theme-dark .product-tabs {
  border-top-color: var(--red);
}

.product-theme-dark .tab-button {
  border-color: rgba(255, 255, 255, 0.12);
  color: #aeb4bd;
}

.product-theme-dark .tab-button.active {
  background: #f7f4ee;
  color: #111214;
}

.product-theme-dark .tab-panel ul,
.product-theme-dark .tab-panel li {
  color: #c6cbd2;
}

.product-theme-dark .spec-table {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-theme-dark .spec-table div {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-theme-dark .spec-table span {
  color: #aeb4bd;
}

.product-theme-dark .spec-table strong {
  color: #f2f0ea;
}

.product-theme-dark .recommend-preview {
  color: #f7f4ee;
}

.product-theme-dark .recommend-preview span {
  color: #f7f4ee;
}

.product-theme-dark .recommend-card a {
  color: #c92b40;
}

.side-contact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.side-contact-list a {
  margin-top: 0;
  color: var(--red);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-hero {
  background: #111214;
  color: var(--white);
}

.contact-hero.image-hero {
  display: block;
  min-height: auto;
  padding: 0;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: center;
  max-width: var(--max);
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 24px;
}

.contact-hero.image-hero .contact-hero-inner {
  min-height: 620px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quote-panel {
  display: grid;
  gap: 14px;
  padding: 32px;
  background: var(--white);
  color: var(--ink);
}

.quote-panel h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.contact-line {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-line span {
  color: #6a7078;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.inquiry-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  padding: 38px;
  border-top: 3px solid #008ca0;
  background: var(--white);
}

.inquiry-card h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.inquiry-card p:not(.eyebrow) {
  color: var(--muted);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #555b64;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8f8f6;
  color: var(--ink);
  font: inherit;
}

.inquiry-form input,
.inquiry-form select {
  min-height: 46px;
  padding: 0 13px;
}

.inquiry-form textarea {
  resize: vertical;
  padding: 13px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.floating-contact {
  position: fixed;
  right: 28px;
  bottom: 34px;
  z-index: 30;
  display: grid;
  gap: 16px;
  justify-items: end;
}

.floating-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  color: var(--white);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-link:hover,
.floating-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.floating-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-link span {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  max-width: 180px;
  padding: 8px 10px;
  background: rgba(7, 8, 10, 0.9);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-link:hover span,
.floating-link:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-whatsapp {
  background: #18bf55;
}

.floating-email {
  background: #087f92;
  color: var(--white);
}

.simple-page-hero {
  min-height: 320px;
}

.simple-page-hero h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.about-enterprise {
  background: #f2f3f0;
}

.about-enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.25fr);
  gap: 64px;
  align-items: start;
}

.about-story {
  max-width: 620px;
}

.about-story h2 {
  font-size: clamp(38px, 4.6vw, 66px);
}

.about-story p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #4f545c;
  font-size: 16px;
  line-height: 1.85;
}

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

.about-feature-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  min-height: 260px;
  background: var(--white);
  border: 1px solid rgba(17, 18, 20, 0.08);
}

.about-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.about-feature-card div {
  padding: 36px 34px;
}

.about-feature-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-scale-band {
  padding: 0 24px;
  background: #f2f3f0;
}

.about-scale-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  background: #08090b;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-scale-inner div {
  min-height: 142px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-scale-inner div:last-child {
  border-right: 0;
}

.about-scale-inner strong {
  display: block;
  font-size: clamp(23px, 2.3vw, 32px);
  line-height: 1.05;
}

.about-scale-inner span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-capability {
  background: #f7f7f4;
}

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

.about-capability-grid article {
  background: var(--white);
  border: 1px solid rgba(17, 18, 20, 0.1);
}

.about-capability-grid img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.about-capability-grid h3 {
  padding: 24px 26px 0;
}

.about-capability-grid p {
  margin: 0;
  padding: 14px 26px 28px;
  color: var(--muted);
  line-height: 1.75;
}

.about-values {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.78), rgba(8, 9, 11, 0.88)),
    url("assets/home-workshop-floor.jpg") center/cover;
}

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

.about-process-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.about-process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #ff4b5f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-process-grid p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.home-hero-carousel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #08090b;
  color: var(--white);
}

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

.home-hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

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

.home-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.home-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.84) 0%, rgba(5, 6, 8, 0.56) 42%, rgba(5, 6, 8, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.24) 0%, rgba(5, 6, 8, 0.58) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.home-hero-content h1,
.home-hero-content h2 {
  max-width: 1000px;
  color: var(--white);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero-content h2 {
  max-width: 780px;
  font-size: clamp(48px, 4.8vw, 78px);
}

.home-hero-content p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.home-hero-content.compact {
  max-width: 1220px;
  padding-left: 7vw;
}

.home-hero-controls {
  position: absolute;
  right: 32px;
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-hero-controls button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(6, 7, 9, 0.42);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.home-hero-dots {
  display: flex;
  gap: 8px;
}

.home-hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
}

.home-hero-dots button.active {
  width: 26px;
  background: var(--red);
}

.home-metrics {
  position: relative;
  z-index: 2;
  margin-top: -58px;
  padding: 0 24px;
  color: var(--white);
}

.home-metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  background: #07080a;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-metric {
  min-height: 150px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.home-metric:last-child {
  border-right: 0;
}

.home-metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(23px, 2.35vw, 32px);
  line-height: 1.04;
}

.home-metric span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.home-make-section {
  padding-top: 130px;
}

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

.home-make-grid article {
  padding: 28px;
  border: 1px solid rgba(17, 18, 20, 0.1);
  background: #f5f5f2;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-make-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(165, 31, 47, 0.28);
  box-shadow: 0 24px 60px rgba(17, 18, 20, 0.1);
}

.home-make-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f1f2ef;
}

.home-make-grid h3 {
  margin-top: 22px;
  font-size: 23px;
  line-height: 1.12;
}

.home-make-grid p {
  min-height: 108px;
  margin: 12px 0 18px;
  color: var(--muted);
}

.home-make-grid a {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-capability-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid rgba(17, 18, 20, 0.09);
}

.home-capability-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.home-capability-card div {
  padding: 22px;
}

.home-capability-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.home-buyer-section {
  background: #eceeea;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(17, 18, 20, 0.12);
}

.buyer-grid article {
  min-height: 240px;
  padding: 30px 26px;
  background: var(--white);
}

.buyer-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.buyer-grid h3 {
  font-size: 21px;
}

.buyer-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.home-service-you {
  background: #f7f7f4;
}

.home-service-you-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
}

.home-service-you h2 {
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 1.02;
}

.service-check-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 36px;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  padding-left: 46px;
  color: #25282d;
  font-size: 19px;
  font-weight: 700;
}

.service-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid #17203a;
  border-radius: 999px;
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.home-service-carousel {
  position: relative;
  min-height: 540px;
}

.home-service-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 12px solid var(--white);
  box-shadow: 0 28px 80px rgba(17, 18, 20, 0.18);
}

.home-service-media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 360ms ease, transform 700ms ease;
}

.home-service-media-frame img.active {
  opacity: 1;
  transform: scale(1);
}

.home-service-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 14px;
}

.home-service-controls button {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #111214;
  font-size: 24px;
  cursor: pointer;
}

.home-service-controls button:hover {
  background: var(--red);
  color: var(--white);
}

.home-service-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.home-service-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.decorated-dark-section {
  position: relative;
  overflow: hidden;
  background-color: #111214;
  background-image: var(--decor-image);
  background-position: center;
  background-size: cover;
}

.decorated-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.74), rgba(7, 8, 10, 0.68)),
    linear-gradient(90deg, rgba(7, 8, 10, 0.86), rgba(7, 8, 10, 0.38), rgba(7, 8, 10, 0.84));
}

.decorated-dark-section .section-inner {
  position: relative;
  z-index: 1;
}

.decorated-dark-section.hero-bg-craft {
  --decor-image: url("assets/home-workshop-floor.jpg");
}

.home-service-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.4fr) minmax(220px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.home-service-card,
.home-service-main {
  min-width: 0;
}

.home-service-card img,
.home-service-main img {
  width: 100%;
  object-fit: cover;
  background: #1a1c20;
}

.home-service-card img {
  aspect-ratio: 1 / 1;
}

.home-service-packaging img {
  object-position: center;
}

.home-service-main img {
  aspect-ratio: 1.55 / 1;
}

.home-service-card h3,
.home-service-main h3 {
  margin-top: 18px;
}

.home-service-card p,
.home-service-main p {
  color: rgba(255, 255, 255, 0.66);
}

.home-service-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.home-promise {
  text-align: center;
}

.home-promise .section-inner {
  max-width: 1280px;
}

.home-promise .eyebrow {
  color: var(--red);
}

.home-promise h2 {
  max-width: 860px;
  margin: 0 auto;
}

.home-promise-copy {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.home-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  text-align: left;
}

.workflow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  padding: 22px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: var(--white);
}

.workflow-step span {
  grid-row: span 2;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.workflow-step strong {
  font-size: 18px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
}

.home-product-entry-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.home-product-entry p:not(.eyebrow) {
  color: #4f5650;
}

.home-product-entry .button {
  margin-top: 20px;
}

.home-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.58);
}

.home-testimonials {
  overflow: hidden;
  background: var(--white);
}

.home-testimonials-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 56px;
  text-align: center;
}

.home-testimonials-title span {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 104px;
  line-height: 1;
}

.home-testimonials-title h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 500;
}

.home-testimonials-title h2 strong {
  font-weight: 900;
}

.home-testimonial-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
}

.home-testimonial-media {
  position: relative;
  min-height: 620px;
  background: #f1f3f0;
}

.home-testimonial-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.home-testimonial-media img.active {
  opacity: 1;
}

.home-testimonial-card {
  position: relative;
  min-height: 330px;
  margin-left: -70px;
  padding: 82px 88px;
  border-radius: 0 0 96px 0;
  background: var(--white);
  box-shadow: 0 24px 84px rgba(17, 18, 20, 0.12);
}

.home-testimonial-card article {
  display: none;
}

.home-testimonial-card article.active {
  display: block;
}

.home-testimonial-card p {
  max-width: 720px;
  color: #25282d;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.64;
}

.home-testimonial-card span {
  display: block;
  margin-top: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonial-quote {
  position: absolute;
  right: 72px;
  bottom: 42px;
  color: #e7e7e4;
  font-family: Georgia, serif;
  font-size: 124px;
  line-height: 1;
}

.home-testimonial-controls {
  display: flex;
  gap: 12px;
  max-width: 1420px;
  margin: -34px auto 0;
  padding-left: calc(44% + 18px);
}

.home-testimonial-controls button {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(17, 18, 20, 0.15);
  background: var(--white);
  color: #111214;
  font-size: 24px;
  cursor: pointer;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lead-popup.open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.88fr);
  width: min(1180px, 100%);
  min-height: 620px;
  overflow: hidden;
  background: #07080a;
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #07080a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-media {
  min-height: 100%;
  background: #151619;
}

.lead-popup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-popup-content {
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding: 54px;
}

.lead-popup-kicker {
  margin: 0 0 18px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.lead-popup-content h2 {
  max-width: 500px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(34px, 4vw, 58px);
  text-align: center;
}

.lead-popup-content > p:not(.lead-popup-kicker) {
  max-width: 540px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.42;
  text-align: center;
}

.lead-popup-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.lead-popup-form label {
  display: grid;
  gap: 8px;
}

.lead-popup-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-popup-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.lead-popup-form input:focus {
  outline-color: #2c7dff;
}

.lead-popup-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.lead-popup-error {
  min-height: 20px;
  margin: 0;
  color: #ffb8b8;
  font-size: 14px;
  text-align: center;
}

.lead-popup-no-thanks {
  justify-self: center;
  margin-top: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 940px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 10, 12, 0.98);
    box-shadow: 0 18px 42px rgba(17, 18, 20, 0.14);
  }

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

  .nav-icons {
    display: none;
  }

  .proof-inner,
  .home-metrics-inner,
  .about-scale-inner,
  .grid.shells,
  .grid.craft,
  .process,
  .content-grid,
  .buyer-grid,
  .home-make-grid,
  .home-factory-grid,
  .home-workflow,
  .about-capability-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .split,
  .about-enterprise-grid,
  .case-band,
  .downloads,
  .cta-inner,
  .home-service-you-grid,
  .home-testimonial-stage,
  .home-service-board,
  .home-product-entry-inner,
  .footer-inner,
  .products-hero .page-hero-inner,
  .product-layout,
  .product-lower,
  .recommended-head {
    grid-template-columns: 1fr;
  }

  .contact-hero-inner,
  .inquiry-card {
    grid-template-columns: 1fr;
  }

  .home-service-carousel {
    min-height: 460px;
  }

  .home-testimonial-card {
    margin: -56px 32px 0;
  }

  .home-testimonial-controls {
    margin-top: 22px;
    padding-left: 32px;
  }

  .contact-proof-grid {
    grid-template-columns: 1fr;
  }

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

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

  .tab-panel ul,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 28px;
  }

  .lead-popup-panel {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .lead-popup-media {
    min-height: 260px;
  }

  .lead-popup-content {
    padding: 38px 28px;
  }

  .product-theme-dark .products-hero .page-hero-inner {
    gap: 24px;
  }

  .product-theme-dark .products-hero h1 {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 82px;
    padding: 0 16px;
  }

  .brand img {
    width: 108px;
  }

  .nav-links {
    top: 82px;
    right: 14px;
    left: 14px;
  }

  .hero-content {
    padding: 54px 18px 82px;
  }

  .home-hero-carousel {
    min-height: 620px;
  }

  .home-hero-content {
    min-height: 620px;
    padding: 58px 18px 106px;
  }

  .home-hero-content h1,
  .home-hero-content h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .home-hero-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .home-hero-controls {
    right: 18px;
    bottom: 22px;
  }

  .proof-strip {
    margin-top: 0;
  }

  .home-metrics {
    margin-top: 0;
  }

  .proof-inner,
  .home-metrics-inner,
  .about-scale-inner,
  .grid.shells,
  .grid.craft,
    .process,
    .content-grid,
    .feature-list,
    .buyer-grid,
    .home-make-grid,
    .product-grid,
    .home-factory-grid,
    .home-workflow,
    .about-capability-grid,
    .about-process-grid {
    grid-template-columns: 1fr;
  }

  .home-metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-scale-inner div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .about-feature-card img {
    min-height: 220px;
  }

  .home-service-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .home-make-section {
    padding-top: 74px;
  }

  .home-make-grid p {
    min-height: 0;
  }

  .home-service-carousel {
    min-height: 340px;
  }

  .home-service-media-frame {
    border-width: 8px;
  }

  .home-service-controls {
    right: 18px;
    bottom: 18px;
  }

  .home-service-controls button {
    width: 48px;
    height: 48px;
  }

  .home-testimonials-title {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 34px;
  }

  .home-testimonials-title span {
    width: 62px;
    height: 62px;
    font-size: 64px;
  }

  .home-testimonial-media {
    min-height: 430px;
  }

  .home-testimonial-card {
    min-height: auto;
    margin: -42px 18px 0;
    padding: 38px 28px 58px;
    border-radius: 0 0 54px 0;
  }

  .home-testimonial-card p {
    font-size: 18px;
  }

  .home-testimonial-quote {
    right: 26px;
    bottom: 18px;
    font-size: 78px;
  }

  .home-testimonial-controls {
    margin: 20px 18px 0;
    padding-left: 0;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

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

  .product-toolbar,
  .product-grid-section,
  .product-page,
  .product-detail-tabs-wrap,
  .recommended-products {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-theme-dark .products-hero.image-hero {
    min-height: 360px;
  }

  .product-theme-dark .products-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .product-theme-dark .products-hero p {
    max-width: none;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .tabs-head {
    flex-wrap: wrap;
  }

  .tab-button {
    flex: 1 1 auto;
    min-width: 33%;
    padding: 0 14px;
  }

  .tab-panel {
    padding: 24px 20px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .contact-hero-inner {
    min-height: auto;
    padding: 56px 18px;
  }

  .quote-panel,
  .inquiry-card {
    padding: 24px;
  }

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

  .floating-contact {
    right: 14px;
    bottom: 18px;
    gap: 12px;
  }

  .floating-link {
    width: 46px;
    height: 46px;
  }

  .floating-link svg {
    width: 21px;
    height: 21px;
  }

  .floating-link span {
    display: none;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 72px 18px;
  }

  .case-content {
    padding: 34px 24px;
  }

  .lead-popup {
    padding: 14px;
  }

  .lead-popup-panel {
    min-height: 0;
  }

  .lead-popup-media {
    min-height: 190px;
  }

  .lead-popup-content {
    padding: 28px 18px;
  }

  .lead-popup-content h2 {
    font-size: 30px;
  }

  .lead-popup-content > p:not(.lead-popup-kicker) {
    font-size: 16px;
  }

  .lead-popup-form input,
  .lead-popup-form button {
    min-height: 52px;
  }
}
