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

:root {
  --ink: #222222;
  --muted: #6f6258;
  --line: #d9d3cc;
  --paper: #f7f3ee;
  --panel: #ffffff;
  --field: #f7f3ee;
  --logo: #7a5230;
  --accent: #8b6b4a;
  --cta: #a36f42;
  --accent-dark: #6a4d35;
  --clay: #8b6b4a;
  --steel: #8f8378;
  --forest: #7a5230;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(34, 34, 34, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
.brand strong,
.btn,
.header-cta,
summary,
dt {
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
}

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

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 4vw, 54px) 12px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(139, 107, 74, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: 168px;
  object-fit: contain;
}

.brand-logo-coffee {
  width: 157px;
  height: 54px;
  max-width: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.nav-shell::after {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(1040px, calc(100vw - 36px));
  height: 26px;
  content: "";
  transform: translateX(-50%);
}

.language-switcher {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  z-index: 4;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translateX(-50%);
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--accent-dark));
  border: 1px solid rgba(217, 211, 204, 0.46);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.16);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  list-style: none;
  white-space: nowrap;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  margin-left: 7px;
  content: "v";
  color: var(--cta);
  font-size: 10px;
}

.language-switcher[open] summary::after {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  display: grid;
  min-width: 172px;
  padding: 8px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 243, 238, 0.76)
    ),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 211, 204, 0.72);
  border-radius: 14px;
  box-shadow: 0 22px 55px rgba(34, 34, 34, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.language-menu a {
  padding: 10px 12px;
  color: #302a24;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  color: #fff;
  background: var(--cta);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(217, 211, 204, 0.72);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(34, 34, 34, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  font-size: 14px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #3a3028;
  border-radius: 999px;
  font-weight: 800;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: var(--cta);
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 0.75fr));
  gap: 18px;
  width: min(1040px, calc(100vw - 36px));
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(163, 111, 66, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 243, 238, 0.72)
    ),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow:
    0 32px 90px rgba(34, 34, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.nav-shell:hover .mega-menu,
.nav-shell:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu::before {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  transform: translateX(-50%) rotate(45deg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.mega-feature,
.mega-column {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 211, 204, 0.68);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.mega-feature {
  background:
    linear-gradient(
      135deg,
      rgba(139, 107, 74, 0.14),
      rgba(255, 255, 255, 0.58)
    ),
    rgba(255, 255, 255, 0.58);
}

.mega-feature h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.mega-feature p {
  margin-bottom: 18px;
  font-size: 14px;
}

.mega-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.mega-stats span {
  padding: 8px 10px;
  color: var(--accent);
  background: rgba(247, 243, 238, 0.78);
  border: 1px solid rgba(217, 211, 204, 0.8);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mega-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--cta);
  border-radius: var(--radius);
  font-weight: 900;
}

.mega-cta:hover,
.mega-cta:focus-visible {
  background: var(--accent-dark);
}

.mega-column span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  margin: 2px 0;
  padding: 10px 10px;
  color: #302a24;
  border-bottom: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.mega-column a:last-child {
  border-bottom: 0;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--cta);
  background: rgba(163, 111, 66, 0.1);
  transform: translateX(2px);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--cta);
  border-color: var(--cta);
  box-shadow: none;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 238, 0.95),
      rgba(255, 255, 255, 0.78)
    ),
    linear-gradient(135deg, rgba(139, 107, 74, 0.12), transparent 46%);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 700px;
  font-size: 18px;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 740px;
  margin: 34px 0 0;
}

.proof-strip div {
  min-height: 86px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-strip dt {
  font-size: 24px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.founder-section {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(
      135deg,
      rgba(34, 34, 34, 0.96),
      rgba(51, 43, 37, 0.94) 48%,
      rgba(139, 107, 74, 0.86)
    ),
    var(--ink);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.founder-portrait {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #07111f;
  border: 1px solid rgba(217, 211, 204, 0.28);
  border-radius: 50%;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36);
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.founder-copy p {
  max-width: 780px;
  color: rgba(247, 243, 238, 0.82);
  font-size: 17px;
}

.founder-copy blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--cta);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.founder-points span {
  padding: 10px 12px;
  color: #fff;
  background: rgba(163, 111, 66, 0.22);
  border: 1px solid rgba(217, 211, 204, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: var(--logo);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual video,
.hero-visual img,
.factory-media video,
.factory-media img,
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 270px;
  padding: 16px;
  color: #fff;
  background: rgba(34, 34, 34, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.video-note span,
.video-note strong {
  display: block;
}

.section,
.split-section,
.quote-section {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 72px);
}

.intro-answer {
  padding-top: 0;
}

.intro-answer p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px;
  color: #2f2924;
  font-size: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.brand-keywords li {
  padding: 9px 12px;
  color: var(--logo);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.brand-story {
  background:
    linear-gradient(135deg, rgba(139, 107, 74, 0.12), transparent 48%),
    var(--paper);
}

.story-card {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-card img {
  display: block;
  width: min(100%, 340px);
  margin: 0 auto 24px;
}

.story-card h3 {
  margin: 0;
  font-size: 26px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-head h2,
.split-section h2,
.quote-section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

.product-grid,
.quality-grid,
.application-grid,
.blog-list,
.entry-grid,
.why-grid,
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.quality-grid article,
.application-grid article,
.blog-list article,
.entry-grid article,
.icon-card,
.cert-grid article,
.sample-card,
.spec-panel,
.lead-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  display: grid;
  gap: 20px;
  padding: 18px;
}

.product-card.featured {
  grid-column: span 1;
}

.product-card h3,
.quality-grid h3,
.application-grid h3,
.blog-list h3,
.entry-grid h3,
.icon-card h3,
.cert-grid h3,
.process h3 {
  margin: 0;
  font-size: 22px;
}

.product-card a,
.contact-links a,
.footer-links a {
  color: var(--accent);
  font-weight: 900;
}

.product-art {
  min-height: 250px;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 107, 74, 0.22);
  background-color: var(--paper);
  background-image:
    radial-gradient(
      circle at 24% 24%,
      rgba(139, 107, 74, 0.36) 0 8%,
      transparent 9%
    ),
    linear-gradient(135deg, rgba(122, 82, 48, 0.92), rgba(139, 107, 74, 0.78)),
    linear-gradient(
      45deg,
      transparent 42%,
      rgba(255, 255, 255, 0.35) 43% 45%,
      transparent 46%
    );
}

.women-bag {
  background-image:
    radial-gradient(
      ellipse at 50% 18%,
      transparent 0 21%,
      rgba(122, 82, 48, 0.9) 22% 26%,
      transparent 27%
    ),
    radial-gradient(ellipse at 50% 66%, #7a5230 0 34%, transparent 35%),
    linear-gradient(135deg, #ffffff, #f7f3ee 48%, #8b6b4a);
}

.outdoor-bag {
  background-image:
    linear-gradient(
      100deg,
      transparent 20%,
      rgba(139, 107, 74, 0.62) 21% 30%,
      transparent 31%
    ),
    radial-gradient(ellipse at 48% 60%, #7a5230 0 32%, transparent 33%),
    linear-gradient(135deg, #d9d3cc, #6a4d35);
}

.eco-bag {
  background-image:
    radial-gradient(
      circle at 76% 26%,
      rgba(139, 107, 74, 0.62) 0 10%,
      transparent 11%
    ),
    radial-gradient(ellipse at 50% 62%, #8b6b4a 0 32%, transparent 33%),
    linear-gradient(135deg, #ffffff, #f7f3ee);
}

.split-section,
.quote-section,
.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.spec-panel,
.sample-card,
.lead-form,
.quality-grid article,
.application-grid article,
.blog-list article,
.entry-grid article,
.icon-card,
.cert-grid article {
  padding: 24px;
}

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

.icon-card span,
.cert-grid span {
  display: inline-grid;
  min-width: 52px;
  height: 42px;
  margin-bottom: 18px;
  padding: 0 10px;
  place-items: center;
  color: #fff;
  background: var(--cta);
  border-radius: var(--radius);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.category-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #3a3028;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

th {
  width: 32%;
}

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

.dark-band p,
.dark-band .eyebrow {
  color: #f7f3ee;
}

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

.process article {
  min-height: 250px;
  padding: 20px;
  color: #fff;
  background: #6a4d35;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

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

.factory-media {
  overflow: hidden;
  height: 470px;
  background: var(--logo);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.page-visual {
  overflow: hidden;
  min-height: 520px;
  background: var(--logo);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 13px 14px;
  color: var(--logo);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

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

.capability-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-grid h3 {
  margin-top: 0;
}

.trust-center,
.customization-section,
.quality-checkpoints,
.buyer-growth,
.solutions-section,
.marketing-engine,
.conversion-hub,
.factory-proof,
.buyer-cases,
.team-section {
  position: relative;
}

.trust-center {
  background:
    linear-gradient(
      135deg,
      rgba(139, 107, 74, 0.1),
      rgba(255, 255, 255, 0.86) 52%,
      rgba(217, 211, 204, 0.22)
    ),
    #ffffff;
}

.capability-grid article,
.checkpoint-grid article,
.growth-grid article,
.solution-grid article {
  position: relative;
  overflow: hidden;
}

.capability-grid article::before,
.checkpoint-grid article::before,
.growth-grid article::before,
.solution-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cta), rgba(163, 111, 66, 0));
}

.capability-grid article span,
.solution-grid article span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  background: var(--cta);
  border-radius: 50%;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.solutions-section {
  background:
    linear-gradient(
      180deg,
      rgba(247, 243, 238, 0.72),
      rgba(255, 255, 255, 0.96)
    ),
    var(--paper);
}

.solution-grid,
.checkpoint-grid,
.growth-grid,
.roadmap-grid,
.conversion-grid,
.case-grid,
.team-grid,
.why-detail-grid,
.category-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-grid article,
.checkpoint-grid article,
.growth-grid article,
.roadmap-grid article,
.conversion-grid article,
.case-grid article,
.team-grid article,
.why-detail-grid article,
.category-detail-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(34, 34, 34, 0.06);
}

.solution-grid article:first-child {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.98), rgba(106, 77, 53, 0.94)),
    var(--ink);
}

.solution-grid article:first-child p,
.solution-grid article:first-child a {
  color: rgba(247, 243, 238, 0.86);
}

.solution-grid article:first-child span {
  color: var(--ink);
  background: var(--cream);
}

.solution-grid h3,
.checkpoint-grid strong,
.growth-grid h3 {
  display: block;
  margin: 0 0 10px;
  color: inherit;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.18;
}

.solution-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 900;
}

.customization-section {
  background:
    linear-gradient(135deg, rgba(163, 111, 66, 0.1), transparent 42%), #ffffff;
}

.customization-section .comparison-table {
  box-shadow: 0 20px 70px rgba(34, 34, 34, 0.08);
}

.quality-checkpoints {
  background: var(--paper);
}

.checkpoint-grid article strong {
  color: var(--ink);
}

.buyer-growth {
  background:
    linear-gradient(
      135deg,
      rgba(217, 211, 204, 0.24),
      rgba(255, 255, 255, 0.96)
    ),
    #ffffff;
}

.marketing-engine {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(34, 34, 34, 0.98),
      rgba(51, 43, 37, 0.96) 58%,
      rgba(139, 107, 74, 0.9)
    ),
    var(--ink);
}

.marketing-engine .section-head p,
.marketing-engine .eyebrow {
  color: rgba(247, 243, 238, 0.82);
}

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

.roadmap-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 243, 238, 0.18);
  box-shadow: none;
}

.roadmap-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-grid h3 {
  margin: 0 0 10px;
  color: #fff;
}

.roadmap-grid p {
  color: rgba(247, 243, 238, 0.78);
}

.conversion-hub {
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.04), rgba(163, 111, 66, 0.11)),
    #ffffff;
}

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

.conversion-grid article:first-child {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--accent-dark));
}

.conversion-grid article:first-child p {
  color: rgba(247, 243, 238, 0.82);
}

.conversion-grid span,
.team-grid span,
.why-detail-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 11px;
  color: #fff;
  background: var(--cta);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.micro-cta,
.field-hint {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.factory-proof {
  background: var(--paper);
}

.factory-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.proof-media-stack {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--logo);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-media-stack img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.proof-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #fff;
  background: rgba(34, 34, 34, 0.82);
  border: 1px solid rgba(247, 243, 238, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.proof-note span {
  color: rgba(247, 243, 238, 0.82);
  font-size: 13px;
}

.buyer-cases,
.team-section {
  background: #ffffff;
}

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

.page-hero {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(
      135deg,
      rgba(247, 243, 238, 0.94),
      rgba(255, 255, 255, 0.72)
    ),
    var(--paper);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.why-detail-grid article span {
  border-radius: 50%;
}

.first-article-inspection {
  background: var(--paper);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.contact-map-section {
  background:
    linear-gradient(
      135deg,
      rgba(139, 107, 74, 0.12),
      rgba(255, 255, 255, 0.64) 46%,
      rgba(217, 211, 204, 0.22)
    ),
    var(--paper);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 238, 0.94),
      rgba(255, 255, 255, 0.72)
    ),
    linear-gradient(135deg, rgba(139, 107, 74, 0.16), transparent 48%);
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.contact-hero p {
  max-width: 680px;
  font-size: 18px;
}

.contact-hero-image {
  overflow: hidden;
  height: 560px;
  background: var(--logo);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-page-grid {
  align-items: stretch;
}

.contact-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-card,
.address-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.premium-map-card,
.premium-address-card {
  box-shadow: 0 24px 70px rgba(34, 34, 34, 0.13);
}

.premium-map-layout {
  align-items: stretch;
  gap: clamp(18px, 3vw, 30px);
}

.premium-map-card {
  position: relative;
  min-height: 520px;
  padding: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.88),
      rgba(247, 243, 238, 0.7)
    ),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 496px;
  border: 0;
  border-radius: 6px;
  filter: saturate(1.06) contrast(1.03);
}

.map-topbar {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 211, 204, 0.78);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(34, 34, 34, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.map-topbar span,
.map-topbar strong {
  font-size: 13px;
  white-space: nowrap;
}

.map-topbar span {
  color: var(--accent);
  font-weight: 900;
}

.map-topbar strong {
  color: var(--ink);
  font-family: Montserrat, Inter, sans-serif;
}

.address-card {
  position: relative;
  padding: 28px;
}

.address-card h3 {
  margin-top: 0;
}

.premium-address-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.9),
      rgba(247, 243, 238, 0.78)
    ),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.address-pin {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--cta);
  border-radius: 50%;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(163, 111, 66, 0.28);
}

.address-meta {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.address-meta div {
  padding: 14px 0;
  border-top: 1px solid rgba(217, 211, 204, 0.82);
}

.address-meta dt {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.address-meta dd {
  margin: 0;
  color: #332b25;
  font-weight: 800;
}

.trade-show {
  background: var(--paper);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  gap: 18px;
}

.showcase-grid article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.showcase-grid img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.showcase-main img {
  height: 380px;
}

.showcase-grid h3,
.showcase-grid p {
  margin-left: 22px;
  margin-right: 22px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.metric-row span {
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

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

.entry-grid a {
  color: var(--accent);
  font-weight: 900;
}

.seo-entry,
.comparison {
  background: var(--paper);
}

.brand-builder {
  background:
    linear-gradient(135deg, rgba(139, 107, 74, 0.12), transparent 42%), #ffffff;
}

.comparison-table {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 24px;
}

.ad-plan {
  background: var(--paper);
}

.blog-list span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing {
  border-top: 1px solid var(--line);
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #2f2924;
  font-weight: 800;
}

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

input:focus,
textarea:focus {
  outline: 2px solid rgba(163, 111, 66, 0.28);
  border-color: var(--cta);
}

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

.form-note {
  margin: 0;
  font-size: 13px;
}

.inquiry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(
      120deg,
      rgba(34, 34, 34, 0.96),
      rgba(51, 43, 37, 0.94) 52%,
      rgba(139, 107, 74, 0.9)
    ),
    var(--ink);
}

.inquiry-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.inquiry-copy p {
  max-width: 680px;
  color: rgba(247, 243, 238, 0.82);
  font-size: 18px;
}

.inquiry-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.inquiry-proof span {
  padding: 10px 12px;
  color: #fff;
  background: rgba(163, 111, 66, 0.22);
  border: 1px solid rgba(217, 211, 204, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(247, 243, 238, 0.86)
    ),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 211, 204, 0.7);
  border-radius: 18px;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.form-head {
  margin-bottom: 22px;
}

.form-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.form-head p {
  margin-bottom: 0;
}

.form-head strong,
.inquiry-form label strong {
  color: var(--cta);
}

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

.inquiry-form label {
  position: relative;
  color: #2f2924;
}

.inquiry-form label span {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
}

.inquiry-form input,
.inquiry-form textarea {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(217, 211, 204, 0.9);
}

.inquiry-form textarea {
  margin-top: 14px;
}

.field-error {
  display: none;
  color: #9b2c2c;
  font-size: 12px;
  font-weight: 800;
}

.inquiry-form label.is-invalid input,
.inquiry-form label.is-invalid textarea {
  border-color: #9b2c2c;
  background: #fffafa;
}

.inquiry-form label.is-invalid .field-error {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 900;
}

.form-status.is-success {
  color: #247047;
}

.form-status.is-error {
  color: #9b2c2c;
}

.inquiry-submit.is-loading {
  opacity: 0.76;
  pointer-events: none;
}

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

details {
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.quote-section {
  background: var(--paper);
}

.contact-links {
  flex-direction: column;
  align-items: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  color: #f7f3ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #fff;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 320px;
  padding: 14px 16px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 40;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #25d366, #128c4a);
  border: 2px solid rgba(247, 243, 238, 0.82);
  border-radius: 50%;
  box-shadow:
    0 18px 42px rgba(18, 140, 74, 0.34),
    0 0 0 6px rgba(163, 111, 66, 0.12);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    0 22px 56px rgba(18, 140, 74, 0.44),
    0 0 0 8px rgba(163, 111, 66, 0.16);
}

.whatsapp-icon {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
  transform: rotate(92deg);
}

.whatsapp-pulse {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  animation: whatsappPulse 1.9s ease-out infinite;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (max-width: 1020px) {
  .site-header {
    align-items: center;
  }

  .nav-shell {
    position: static;
    display: flex;
    margin-left: auto;
    transform: none;
  }

  .nav-shell::after,
  .nav,
  .mega-menu {
    display: none;
  }

  .language-switcher {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }

  .language-menu {
    left: auto;
    right: 0;
    transform: none;
  }

  .hero,
  .split-section,
  .quote-section,
  .factory-layout,
  .map-layout,
  .founder-card,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .contact-hero-image {
    height: 420px;
  }

  .founder-portrait {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .premium-map-card {
    min-height: 440px;
  }

  .map-card iframe {
    min-height: 416px;
  }

  .product-grid,
  .quality-grid,
  .application-grid,
  .showcase-grid,
  .process,
  .blog-list,
  .entry-grid,
  .why-grid,
  .cert-grid,
  .capability-grid,
  .solution-grid,
  .checkpoint-grid,
  .growth-grid,
  .roadmap-grid,
  .conversion-grid,
  .case-grid,
  .team-grid,
  .why-detail-grid,
  .category-detail-grid,
  .factory-proof-layout,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-grid article:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: auto;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .proof-strip,
  .product-grid,
  .quality-grid,
  .application-grid,
  .showcase-grid,
  .process,
  .blog-list,
  .entry-grid,
  .why-grid,
  .cert-grid,
  .capability-grid,
  .solution-grid,
  .checkpoint-grid,
  .growth-grid,
  .roadmap-grid,
  .conversion-grid,
  .case-grid,
  .team-grid,
  .why-detail-grid,
  .category-detail-grid,
  .factory-proof-layout,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .solution-grid article:first-child {
    grid-column: span 1;
  }

  .hero-visual,
  .factory-media {
    min-height: 350px;
    height: 350px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero-image {
    height: 320px;
  }

  .founder-copy h2 {
    font-size: 34px;
  }

  .premium-map-card {
    min-height: 360px;
    padding: 8px;
  }

  .map-card iframe {
    min-height: 344px;
  }

  .map-topbar {
    left: 18px;
    right: 18px;
    top: 18px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-height: 62px;
    border-radius: 16px;
  }

  .map-topbar span,
  .map-topbar strong {
    white-space: normal;
  }

  .premium-address-card .btn {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.trust-bar span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(139, 107, 74, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(36, 27, 19, 0.08);
  backdrop-filter: blur(16px);
  color: #4a3425;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.category-card-grid,
.resource-grid,
.faq-grid,
.resource-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.resource-grid a,
.faq-grid article,
.resource-article-grid article,
.case-grid article {
  border: 1px solid rgba(139, 107, 74, 0.16);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(247, 243, 238, 0.78)
  );
  box-shadow: 0 22px 54px rgba(48, 34, 24, 0.08);
}

.category-card {
  min-height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-card:hover,
.resource-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 111, 66, 0.38);
  box-shadow: 0 28px 70px rgba(48, 34, 24, 0.13);
}

.category-thumb {
  min-height: 128px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(34, 34, 34, 0.1), rgba(163, 111, 66, 0.22)),
    url("home-factory-banner.png") center / cover;
  position: relative;
  overflow: hidden;
}

.category-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 34, 0.22),
    rgba(247, 243, 238, 0.05)
  );
}

.category-card h3,
.case-grid h3,
.faq-grid h3,
.resource-article-grid h3 {
  margin: 6px 0 0;
  color: #222;
  font-size: 20px;
  line-height: 1.2;
}

.category-card p,
.case-grid p,
.faq-grid p,
.resource-article-grid p {
  color: #625448;
  line-height: 1.68;
}

.category-card small {
  color: #8b6b4a;
  font-weight: 800;
  line-height: 1.45;
}

.category-card a,
.resource-grid a {
  margin-top: auto;
  color: #6a4d35;
  font-weight: 900;
  text-decoration: none;
}

.case-study-section {
  background: linear-gradient(180deg, #fff, #f7f3ee);
}

.process-wide {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-wide article {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(139, 107, 74, 0.15);
  box-shadow: 0 18px 42px rgba(48, 34, 24, 0.07);
}

.process-wide article::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #a36f42;
  color: #fff;
  font-weight: 900;
}

.process-flow-visual {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.process-flow-image {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: top center;
}

.catalog-section,
.resources-section,
.faq-section {
  background: #f7f3ee;
}

.resource-grid a {
  display: flex;
  min-height: 94px;
  align-items: center;
  padding: 22px;
}

.resource-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.resource-intent-grid a {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(139, 107, 74, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 42px rgba(48, 34, 24, 0.07);
  color: #3b3028;
  font-weight: 800;
  line-height: 1.45;
}

.faq-grid article,
.resource-article-grid article {
  padding: 22px;
}

.resource-article-grid article ul {
  padding-left: 18px;
  color: #625448;
  line-height: 1.75;
}

.inquiry-form select,
.inquiry-form input[type="file"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(139, 107, 74, 0.22);
  border-radius: 12px;
  background: #fff;
  color: #222;
  font: inherit;
  padding: 0 14px;
}

.inquiry-form input[type="file"] {
  padding: 13px 14px;
}

.quote-float {
  position: fixed;
  right: 96px;
  bottom: 28px;
  z-index: 60;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.hot-products-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(163, 111, 66, 0.12),
      transparent 30%
    ),
    linear-gradient(180deg, #fff, #f7f3ee);
}

.production-video-section {
  background: linear-gradient(180deg, #fff, #f7f3ee 36%, #fff 100%);
}

.production-video-stage,
.production-video-copy,
.video-capability-card {
  border: 1px solid rgba(139, 107, 74, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 72px rgba(48, 34, 24, 0.11);
}

.production-hero-wrap {
  max-width: 1180px;
  padding: 16px;
}

.production-video {
  border-radius: 18px;
}

.production-video-caption {
  display: grid;
  gap: 8px;
  padding: 18px 22px 22px;
  background: linear-gradient(
    180deg,
    rgba(34, 34, 34, 0.96),
    rgba(30, 58, 95, 0.95)
  );
  color: #f7f3ee;
}

.production-video-caption strong {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.production-video-caption span {
  color: rgba(247, 243, 238, 0.86);
  line-height: 1.68;
}

.production-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.production-steps-grid article {
  min-height: 100%;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(139, 107, 74, 0.14);
  box-shadow: 0 18px 48px rgba(48, 34, 24, 0.08);
}

.production-steps-grid span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3a5f;
  color: #fff;
  font-weight: 900;
}

.production-steps-grid h3 {
  margin: 18px 0 10px;
  color: #222;
  font-size: 22px;
  line-height: 1.2;
}

.production-steps-grid p {
  color: #625448;
  line-height: 1.68;
}

.production-capability-head {
  margin-top: 44px;
}

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

.video-capability-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.video-capability-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6px 6px;
}

.video-capability-copy h3 {
  margin: 0;
  color: #222;
  font-size: 24px;
  line-height: 1.15;
}

.video-capability-copy p {
  margin: 0;
  color: #625448;
  line-height: 1.72;
}

.video-meta-note {
  color: #8b6b4a;
  font-size: 13px;
  font-weight: 800;
}

.video-capability-copy .btn {
  margin-top: auto;
}

.capability-support {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  color: #5f5146;
  font-size: 17px;
}

.product-video-caption {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
}

.production-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.capability-cta-band {
  margin-top: 28px;
}

.factory-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.factory-trust-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(139, 107, 74, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(48, 34, 24, 0.08);
}

.factory-trust-card strong,
.factory-trust-card h3 {
  display: block;
  margin: 0 0 12px;
  color: #222;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.factory-trust-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #fff;
  font-weight: 900;
}

.factory-trust-lead {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(30, 58, 95, 0.98), rgba(106, 77, 53, 0.92)),
    #1e3a5f;
  color: #fff;
}

.factory-trust-lead h3,
.factory-trust-lead p {
  color: #fff;
}

.factory-trust-lead .check-list li {
  color: rgba(247, 243, 238, 0.92);
}

.factory-trust-lead .check-list li::before {
  color: #1e3a5f;
  background: #f7f3ee;
}

.category-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.category-group-card {
  padding: 24px;
  border: 1px solid rgba(139, 107, 74, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(48, 34, 24, 0.08);
}

.category-group-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(163, 111, 66, 0.12);
  color: #6a4d35;
  font-size: 12px;
  font-weight: 900;
}

.category-group-card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.16;
}

.category-group-card .category-list {
  margin-top: 16px;
}

.category-group-card .category-list a {
  display: block;
  font-weight: 800;
}

.category-matrix-note {
  max-width: 860px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 16px;
}

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

.hot-product-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(139, 107, 74, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(48, 34, 24, 0.09);
  backdrop-filter: blur(14px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.hot-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 111, 66, 0.4);
  box-shadow: 0 30px 76px rgba(48, 34, 24, 0.14);
}

.hot-product-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(163, 111, 66, 0.12);
  color: #6a4d35;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hot-product-card h3 {
  margin: 18px 0 10px;
  color: #222;
  font-size: 21px;
  line-height: 1.18;
}

.hot-product-card p,
.hot-product-card li {
  color: #625448;
  line-height: 1.6;
}

.hot-product-card ul {
  padding-left: 18px;
  margin: 14px 0 18px;
}

.hot-product-card a {
  color: #6a4d35;
  font-weight: 900;
  text-decoration: none;
}

.hot-landing-hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(163, 111, 66, 0.22),
      transparent 22%
    ),
    linear-gradient(
      135deg,
      rgba(30, 58, 95, 0.97),
      rgba(34, 34, 34, 0.96) 52%,
      rgba(106, 77, 53, 0.94)
    );
  color: #fff;
}

.hot-landing-hero h1,
.hot-landing-hero p {
  color: #fff;
}

.direct-answer {
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  border-left: 5px solid #a36f42;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(48, 34, 24, 0.08);
  color: #4e4036;
  line-height: 1.75;
}

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

.trend-layout article {
  padding: 28px;
  border: 1px solid rgba(139, 107, 74, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(48, 34, 24, 0.07);
}

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

.feature-chip-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 107, 74, 0.16);
  color: #4a3425;
  font-weight: 850;
}

.video-showcase-section {
  background: linear-gradient(180deg, #f7f3ee, #fff);
}

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

.video-showcase-grid article,
.single-video-wrap {
  border: 1px solid rgba(139, 107, 74, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 70px rgba(48, 34, 24, 0.1);
  overflow: hidden;
}

.video-showcase-grid article {
  padding: 16px;
}

.site-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #191919;
  object-fit: cover;
}

.single-video-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}

.video-showcase-grid h3 {
  margin: 18px 6px 8px;
  color: #222;
  font-size: 22px;
}

.video-showcase-grid p {
  margin: 0 6px 16px;
  color: #625448;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .trust-bar,
  .category-card-grid,
  .resource-grid,
  .faq-grid,
  .resource-article-grid,
  .process-wide,
  .hot-product-grid,
  .feature-chip-grid,
  .production-capability-grid,
  .resource-intent-grid,
  .factory-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .factory-trust-lead {
    grid-row: auto;
    grid-column: span 2;
  }

  .category-group-grid {
    grid-template-columns: 1fr;
  }

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

  .production-steps-grid {
    grid-template-columns: 1fr;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

  .process-flow-image {
    height: 620px;
  }
}

@media (max-width: 680px) {
  .trust-bar,
  .category-card-grid,
  .resource-grid,
  .faq-grid,
  .resource-article-grid,
  .process-wide,
  .hot-product-grid,
  .feature-chip-grid,
  .production-steps-grid,
  .production-capability-grid,
  .resource-intent-grid,
  .factory-trust-grid,
  .category-group-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 0;
    padding: 18px 16px 0;
  }

  .factory-trust-lead {
    grid-column: auto;
  }

  .quote-float {
    right: 18px;
    bottom: 92px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .production-video-caption {
    padding: 16px 16px 18px;
  }

  .production-hero-wrap,
  .video-capability-card {
    padding: 12px;
  }

  .video-capability-copy {
    padding: 16px 2px 2px;
  }

  .capability-support {
    font-size: 16px;
  }

  .process-flow-image {
    height: 420px;
  }
}
