:root {
  --warm-white: #fbfaf7;
  --paper: #f4efe6;
  --sand: #e7ddcf;
  --deep-gray: #292d2b;
  --medium-gray: #666c68;
  --deep-green: #21463b;
  --forest-green: #14372e;
  --sage: #dfe9e2;
  --gold: #b79a63;
  --silver: #c8cbc6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(41, 45, 43, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--deep-gray);
  background: var(--warm-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(41, 45, 43, 0.08);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-gray);
  font-size: 1.14rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183, 154, 99, 0.16);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--deep-green);
  color: var(--white);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--medium-gray);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--deep-green);
}

.nav-inquiry {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--deep-green);
  border-radius: 999px;
  color: var(--deep-green);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-inquiry:hover {
  transform: translateY(-1px);
  background: var(--deep-green);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(41, 45, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-gray);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  background: var(--warm-white);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 112px 0 112px;
}

.hero-placeholder,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  background-image: url("../assets/images/hero-workshop-team.jpg");
  background-position: center right;
  background-size: cover;
}

.hero-placeholder:not(.has-photo) {
  background:
    linear-gradient(115deg, rgba(37, 72, 61, 0.72), rgba(45, 48, 46, 0.2)),
    linear-gradient(135deg, #d9d0c4 0%, #f1e7d8 42%, #b8c3bb 100%);
}

.hero-placeholder::after {
  content: "Replace with real workshop team photo";
  position: absolute;
  right: 8%;
  bottom: 9%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(29, 34, 31, 0.18), rgba(29, 34, 31, 0.02) 42%, rgba(29, 34, 31, 0)),
    linear-gradient(90deg, rgba(23, 56, 47, 0.16), rgba(23, 56, 47, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100% - 1120px) / 2));
  color: var(--white);
  text-shadow:
    0 1px 2px rgba(29, 34, 31, 0.95),
    0 6px 24px rgba(29, 34, 31, 0.62);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.65rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 16px;
  color: var(--deep-gray);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--deep-gray);
  font-size: 1.08rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.55;
  text-shadow:
    0 1px 2px rgba(29, 34, 31, 0.96),
    0 5px 18px rgba(29, 34, 31, 0.68);
}

.hero-actions,
.contact-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(41, 45, 43, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-green), var(--forest-green));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(33, 70, 59, 0.2);
}

.btn-outline {
  background: transparent;
  border-color: rgba(33, 70, 59, 0.34);
  color: var(--deep-green);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-green);
}

.hero-intro {
  position: relative;
  z-index: 2;
  margin-top: -132px;
  padding-bottom: 18px;
}

.hero-intro-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 0;
}

.hero-intro .eyebrow {
  color: var(--white);
  font-size: 0.96rem;
  text-shadow:
    0 1px 2px rgba(29, 34, 31, 0.96),
    0 5px 16px rgba(29, 34, 31, 0.64);
}

.section {
  padding: 108px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, #f3eadf, #fbfaf7);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(183, 154, 99, 0.72);
}

.section-heading p:not(.eyebrow) {
  color: var(--medium-gray);
  font-size: 1.05rem;
}

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

.image-card,
.simple-card,
.contact-form {
  overflow: hidden;
  border: 1px solid rgba(41, 45, 43, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(41, 45, 43, 0.07);
}

.image-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.people-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.card-image {
  min-height: 260px;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33, 70, 59, 0.16), rgba(200, 203, 198, 0.12)),
    linear-gradient(135deg, #e4dace, #f7f2ea 48%, #c7d1ca);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.image-placeholder::after {
  content: "Collection preview";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: rgba(41, 45, 43, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-placeholder.image-placeholder {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero-workshop-team.jpg");
  background-position: center right;
  background-size: cover;
}

.has-photo {
  background-position: center;
  background-size: cover;
}

.has-photo::before,
.has-photo::after {
  display: none;
}

.people-1.has-photo {
  background-image: url("../assets/images/people-working-together.jpg");
}

.people-2.has-photo {
  background-image: url("../assets/images/skilled-hands.jpg");
}

.people-3.has-photo {
  background-image: url("../assets/images/quality-inspection.jpg");
}

.people-4.has-photo {
  background-image: url("../assets/images/team-photo.jpg");
}

.product-1.has-photo {
  background-image: url("../assets/images/product-stainless-steel.jpg");
}

.cooperation-2.has-photo {
  background-image: url("../assets/images/cooperation-HongKong Exhibition2.jpg");
}

.cooperation-3.has-photo {
  background-image: url("../assets/images/cooperation-HongKong Exhibition.jpg");
}

.card-body {
  padding: 22px;
}

.card-body p,
.simple-card p,
.capability-card p,
.contact-info p,
.footer-content p {
  color: var(--medium-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(251, 250, 247, 0.95));
}

a.product-card {
  color: inherit;
}

a.product-card:focus-visible {
  outline-offset: 4px;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold), rgba(33, 70, 59, 0.72));
  opacity: 0.82;
}

.product-card .card-image {
  min-height: 220px;
}

.product-card .card-body {
  position: relative;
  display: flex;
  min-height: 112px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 28px;
  text-align: center;
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--deep-gray);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.15;
}

.product-2 {
  background:
    radial-gradient(circle at 72% 22%, rgba(183, 154, 99, 0.28), transparent 28%),
    linear-gradient(135deg, #efe4d6, #f9f4ec 48%, #cbd7d0);
}

.product-3 {
  background:
    radial-gradient(circle at 22% 28%, rgba(200, 203, 198, 0.55), transparent 32%),
    linear-gradient(135deg, #e8dfd3, #fbfaf7 50%, #dce7e0);
}

.product-4 {
  background:
    radial-gradient(circle at 50% 35%, rgba(33, 70, 59, 0.2), transparent 30%),
    linear-gradient(135deg, #e6ded3, #f7f1e8 48%, #c9d4ce);
}

.product-5 {
  background:
    radial-gradient(circle at 30% 26%, rgba(183, 154, 99, 0.24), transparent 28%),
    linear-gradient(135deg, #ddd4c9, #f8f2e9 45%, #dce5df);
}

.products-page {
  background: var(--warm-white);
}

.catalog-hero {
  padding: calc(var(--header-height) + 56px) 0 78px;
  background:
    linear-gradient(135deg, rgba(244, 239, 230, 0.94), rgba(251, 250, 247, 0.96) 54%, rgba(223, 233, 226, 0.68));
}

.catalog-hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.catalog-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--deep-gray);
  font-size: clamp(2.65rem, 5vw, 4.7rem);
  text-shadow: none;
}

.catalog-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--medium-gray);
  font-size: 1.13rem;
  font-weight: 650;
}

.catalog-hero-image {
  min-height: 520px;
  border: 1px solid rgba(41, 45, 43, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(41, 45, 43, 0.14);
}

.catalog-nav-section {
  position: sticky;
  top: var(--header-height);
  z-index: 10;
  padding: 16px 0;
  border-top: 1px solid rgba(41, 45, 43, 0.06);
  border-bottom: 1px solid rgba(41, 45, 43, 0.08);
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(16px);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(33, 70, 59, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-green);
  font-weight: 850;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tabs a:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 70, 59, 0.34);
  box-shadow: 0 12px 26px rgba(41, 45, 43, 0.09);
}

.category-tabs a.is-current {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(33, 70, 59, 0.18);
}

.catalog-section {
  padding: 86px 0;
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(41, 45, 43, 0.1);
}

.catalog-heading h2 {
  margin-bottom: 0;
}

.catalog-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--medium-gray);
  font-weight: 650;
  text-align: right;
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid rgba(41, 45, 43, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(41, 45, 43, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-thumb {
  min-height: 260px;
}

.catalog-card h3 {
  margin: 0;
  padding: 22px 18px 24px;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-strip span {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(33, 70, 59, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 230, 0.76));
  color: var(--deep-gray);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 30px rgba(41, 45, 43, 0.06);
}

.catalog-cta {
  padding: 90px 0;
  background:
    linear-gradient(135deg, var(--deep-green), var(--forest-green));
  color: var(--white);
}

.catalog-cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.catalog-cta .eyebrow,
.catalog-cta h2,
.catalog-cta p {
  color: var(--white);
}

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

.catalog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.catalog-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

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

.factory-layout {
  display: block;
}

.factory-heading {
  margin-bottom: 34px;
}

.factory-video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(183, 154, 99, 0.16)),
    var(--forest-green);
  box-shadow: 0 30px 80px rgba(20, 55, 46, 0.25);
}

.factory-video-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, rgba(183, 154, 99, 0.22), transparent 38%, rgba(33, 70, 59, 0.2));
  pointer-events: none;
}

.factory-video-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.video-caption {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: min(420px, calc(100% - 52px));
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(20, 55, 46, 0.64);
  color: var(--white);
}

.video-caption span {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: 1rem;
  line-height: 1.25;
}

.factory-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--forest-green);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.capability-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(33, 70, 59, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(41, 45, 43, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--gold);
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(41, 45, 43, 0.11);
}

.capability-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--deep-green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(33, 70, 59, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 233, 226, 0.34)),
    rgba(255, 255, 255, 0.42);
}

.simple-card {
  position: relative;
  display: flex;
  min-height: 128px;
  align-items: center;
  padding: 22px;
  border-color: rgba(33, 70, 59, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 230, 0.74));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.simple-card::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 20px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(33, 70, 59, 0.68));
}

.simple-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(33, 70, 59, 0.68));
}

.simple-card h3 {
  max-width: 220px;
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--deep-gray);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.12;
}

.simple-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wide-image-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 16px;
  margin-top: 34px;
}

.wide-image {
  min-height: 230px;
  border-radius: var(--radius);
}

.cooperation-photo-card {
  overflow: hidden;
  border: 1px solid rgba(41, 45, 43, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(41, 45, 43, 0.07);
}

.cooperation-photo-card .wide-image {
  border-radius: var(--radius) var(--radius) 0 0;
}

.image-caption {
  display: grid;
  gap: 4px;
  min-height: 104px;
  padding: 16px 18px 18px;
  border-top: 3px solid rgba(183, 154, 99, 0.78);
  background: var(--white);
  color: var(--deep-gray);
}

.image-caption span {
  color: var(--deep-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.image-caption strong {
  color: var(--deep-gray);
  font-size: 0.96rem;
  line-height: 1.32;
}

.contact-section {
  background:
    linear-gradient(90deg, var(--warm-white), #f4ecdf);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.contact-list {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.68);
}

.contact-list p {
  margin-bottom: 10px;
}

.contact-list p:last-child {
  margin-bottom: 0;
}

.contact-list a {
  color: var(--deep-green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 30px;
}

.contact-form label {
  color: var(--deep-gray);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(41, 45, 43, 0.16);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--deep-gray);
  background: var(--warm-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(33, 70, 59, 0.24);
  border-color: var(--deep-green);
}

.site-footer {
  padding: 56px 0 34px;
  background:
    linear-gradient(135deg, var(--deep-gray), #1f2422);
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.footer-brand h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand p {
  max-width: 260px;
  margin-bottom: 0;
}

.footer-contact h3,
.social-links h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-contact p {
  margin-bottom: 9px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  padding-top: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.42);
}

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

.copyright {
  grid-column: 1 / -1;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .catalog-hero-layout,
  .catalog-cta-layout {
    grid-template-columns: 1fr;
  }

  .catalog-hero-image {
    min-height: 420px;
  }

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

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

  .catalog-cta-actions {
    justify-content: flex-start;
  }

  .card-grid,
  .product-grid,
  .people-grid,
  .cooperation-grid,
  .contact-layout,
  .wide-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-list {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .navbar {
    width: min(100% - 28px, 1120px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--warm-white);
    box-shadow: var(--shadow);
    transition: max-height 0.25s ease;
  }

  .nav-menu.is-open {
    max-height: 380px;
    border: 1px solid rgba(41, 45, 43, 0.08);
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(41, 45, 43, 0.08);
  }

  .nav-menu li:last-child {
    border-bottom: 0;
  }

  .nav-menu a {
    display: block;
    padding: 15px 18px;
  }

  .hero-section {
    padding: 0;
  }

  .hero {
    min-height: 78vh;
    padding: calc(var(--header-height) + 28px) 0 80px;
  }

  .hero-content {
    width: min(100% - 28px, 640px);
    margin: 0 auto;
  }

  .hero-intro {
    margin-top: 0;
    padding: 24px 0 6px;
  }

  .hero-intro-layout {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .section {
    padding: 76px 0;
  }

  .catalog-hero {
    padding: calc(var(--header-height) + 34px) 0 56px;
  }

  .catalog-hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .catalog-hero-image {
    min-height: 330px;
  }

  .catalog-nav-section {
    position: static;
  }

  .catalog-section {
    padding: 68px 0;
  }

  .catalog-heading {
    display: block;
  }

  .category-tabs a {
    flex: 1 1 180px;
  }

  .catalog-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .product-thumb {
    min-height: 300px;
  }

  .catalog-cta {
    padding: 72px 0;
  }

  .card-grid,
  .product-grid,
  .people-grid,
  .cooperation-grid,
  .contact-layout,
  .wide-image-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .factory-video-wrap {
    padding: 6px;
  }

  .factory-video-wrap::after {
    inset: 6px;
  }

  .video-caption {
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    padding: 9px 11px;
  }

  .video-caption strong {
    font-size: 0.9rem;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .social-links {
    width: 100%;
  }

  .social-link {
    max-width: 320px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 12px 14px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(1.84rem, 10.5vw, 2.35rem);
  }

  h2 {
    font-size: 2rem;
  }

  .card-body,
  .capability-card,
  .simple-card,
  .contact-form {
    padding: 20px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    justify-content: center;
    padding: 0;
  }
}

/* Experience refinements */
.simple-card {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.simple-card h3 {
  margin-bottom: 10px;
}

.simple-card p {
  max-width: 240px;
  margin: 0;
  padding-left: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-kicker {
  margin: 0;
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-help {
  margin: -3px 0 10px;
  color: var(--medium-gray);
  font-size: 0.92rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--deep-green);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(183, 154, 99, 0.9);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .navbar {
    gap: 14px;
  }

  .nav-menu {
    gap: 16px;
  }

}

@media (max-width: 760px) {
  .nav-inquiry {
    display: none;
  }

  .catalog-heading p {
    margin-top: 10px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Live product library entry */
.catalog-portal {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(33, 70, 59, 0.16);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(41, 45, 43, 0.1);
}

.catalog-portal-intro {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px;
  background:
    radial-gradient(circle at 10% 18%, rgba(183, 154, 99, 0.24), transparent 25%),
    linear-gradient(145deg, var(--forest-green), var(--deep-green));
  color: var(--white);
}

.catalog-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-portal-intro h3 {
  max-width: 420px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.catalog-portal-intro > p:not(.catalog-label) {
  max-width: 480px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.catalog-portal-intro .btn-primary {
  background: var(--white);
  color: var(--deep-green);
  box-shadow: none;
}

.catalog-steps {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 28px 46px;
  list-style: none;
}

.catalog-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(33, 70, 59, 0.12);
}

.catalog-steps li:last-child {
  border-bottom: 0;
}

.catalog-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--deep-green);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep-gray);
  font-size: 1.05rem;
}

.catalog-steps p {
  margin: 0;
  color: var(--medium-gray);
  font-size: 0.94rem;
}

.catalog-transfer-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 154, 99, 0.16), transparent 24%),
    linear-gradient(145deg, var(--warm-white), var(--sage));
}

.catalog-transfer {
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: calc(var(--header-height) + 64px) 0 72px;
}

.catalog-transfer-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid rgba(33, 70, 59, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(41, 45, 43, 0.12);
  text-align: center;
}

.catalog-transfer-card .eyebrow {
  display: inline-block;
}

.catalog-transfer-card h1 {
  max-width: none;
  color: var(--deep-gray);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-shadow: none;
}

.catalog-transfer-card > p:not(.eyebrow):not(.catalog-transfer-note) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--medium-gray);
  font-size: 1.08rem;
}

.catalog-transfer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.catalog-transfer-note {
  margin: 24px 0 0;
  color: var(--medium-gray);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .catalog-portal {
    grid-template-columns: 1fr;
  }

  .catalog-portal-intro {
    min-height: 0;
    padding: 38px 28px;
  }

  .catalog-steps {
    padding: 14px 28px;
  }

  .catalog-transfer {
    padding-top: calc(var(--header-height) + 26px);
  }

  .catalog-transfer-card {
    padding: 42px 26px;
  }
}
