@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Noto+Sans+SC:wght@400;500;600&display=swap");

:root {
  --ink: #202522;
  --muted: #68706c;
  --paper: #f5f5f2;
  --panel: #ffffff;
  --line: #dadfdb;
  --brand: #304b46;
  --sage: #dce6e2;
  --accent: #9c7765;
  --night: #1e2d2a;
  --shadow: 0 10px 26px rgba(32, 37, 34, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Noto Sans SC", "PingFang SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-lock {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #202522;
  background: rgba(245, 245, 242, 0.94);
  border-bottom: 1px solid #DADFDB;
  backdrop-filter: blur(16px);
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 18px;
  color: #F5F5F2;
  background: #304B46;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(194px, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: 84px;
  padding: 0 clamp(18px, 4vw, 54px);
}

.brand {
  display: flex;
  align-items: center;
  width: 220px;
  min-width: 194px;
  color: #304B46;
}

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

.brand strong {
  color: #304B46;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: #68706C;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 24px);
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 84px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #202522;
}

.nav-link:hover,
.nav-item.is-open .nav-link,
.nav-item:focus-within .nav-link,
.text-link:hover {
  color: #304B46;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #304B46;
  opacity: 0;
  transform: scaleX(0.58);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item.has-dropdown:hover::after,
.nav-item.has-dropdown:focus-within::after,
.nav-item.has-dropdown.is-open::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 44px;
  margin-left: 3px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-item.is-open .chevron,
.nav-item:hover .chevron,
.nav-item:focus-within .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001;
  display: grid;
  gap: 24px;
  width: min(920px, calc(100vw - 48px));
  padding: 26px;
  background: #FFFFFF;
  border: 1px solid #DADFDB;
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(32, 37, 34, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.piercing-menu {
  grid-template-columns: minmax(210px, 1fr);
  width: 286px;
  padding: 18px 20px;
}

.compact-menu {
  grid-template-columns: repeat(2, minmax(150px, 1fr)) minmax(210px, 0.85fr);
  width: min(760px, calc(100vw - 48px));
}

.small-menu {
  left: 0;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 292px;
  padding: 16px;
  transform: translateY(10px);
}

.nav-item:hover .small-menu,
.nav-item:focus-within .small-menu,
.nav-item.is-open .small-menu {
  transform: translateY(0);
}

.mega-column h3 {
  margin-bottom: 12px;
  color: #304B46;
  font-size: 13px;
  letter-spacing: 0;
}

.mega-column a,
.small-menu a {
  display: block;
  padding: 7px 0;
  color: #202522;
  font-size: 14px;
  font-weight: 600;
}

.small-menu a {
  padding: 10px 12px;
  border-radius: 4px;
}

.small-menu a:hover,
.mega-column a:hover {
  color: #304B46;
  background: #F5F5F2;
}

.small-menu strong,
.small-menu span {
  display: block;
}

.small-menu span {
  margin-top: 3px;
  color: #68706C;
  font-size: 12px;
  font-weight: 500;
}

.small-menu .accent-link {
  color: var(--accent);
  font-weight: 600;
}

.mega-feature {
  display: grid;
  align-content: start;
  gap: 9px;
  color: #202522;
}

.mega-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #F5F5F2;
  border: 1px solid #DADFDB;
  border-radius: 4px;
}

.mega-feature span {
  color: #304B46;
  font-size: 16px;
  font-weight: 600;
}

.mega-feature small {
  color: #68706C;
  font-size: 13px;
  line-height: 1.45;
}

.mega-feature strong {
  color: #304B46;
  font-size: 13px;
}

.small-feature img {
  aspect-ratio: 1;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.mobile-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #304B46;
  background: transparent;
  border: 1px solid #DADFDB;
  border-radius: 4px;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.whatsapp-icon-button {
  color: #25D366;
  background: #FFFFFF;
}

.whatsapp-icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.whatsapp-icon-button:hover {
  color: #FFFFFF;
  background: #25D366;
  border-color: #25D366;
}

.mobile-toggle {
  display: none;
  gap: 4px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.mobile-menu {
  display: none;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: #304B46;
  border: 1px solid #304B46;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 16px;
  color: var(--brand);
  background: #FFFFFF;
  border: 1px solid var(--brand);
  border-radius: 6px;
  font-weight: 600;
}

.whatsapp-link:hover {
  background: var(--sage);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: transparent;
  pointer-events: none;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(36px, 8vw, 128px)), 1180px);
  height: clamp(360px, 42vw, 560px);
  margin: clamp(20px, 3vw, 36px) auto 0;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: none;
}

.hero-slide-caption {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(218, 223, 219, 0.85);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}

.hero-slide-caption span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-slide-caption strong {
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(218, 223, 219, 0.9);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hero-arrow:hover {
  color: #FFFFFF;
  background: var(--brand);
  border-color: var(--brand);
}

.hero-arrow.prev {
  left: clamp(14px, 2vw, 26px);
}

.hero-arrow.next {
  right: clamp(14px, 2vw, 26px);
}

.hero-dots {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(22px, 3vw, 38px);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  background: rgba(48, 75, 70, 0.24);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--brand);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  width: min(100%, 1440px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 42px) clamp(24px, 11vw, 168px) clamp(28px, 3.5vw, 48px);
}

.hero-copy-block {
  min-width: 0;
}

.hero-showcase {
  display: grid;
  gap: 14px;
  padding: 8px;
  width: 100%;
  align-self: start;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.hero-showcase img {
  width: 100%;
  height: auto;
  display: block;
  background: #F5F5F2;
  border-radius: 6px;
}

.hero-showcase span,
.hero-showcase strong {
  display: block;
}

.hero-showcase span {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-showcase strong {
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
}

.eyebrow,
.product-type {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-type {
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy-block h1 {
  max-width: 560px;
  font-size: clamp(38px, 3.4vw, 52px);
  letter-spacing: 0;
  white-space: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
}

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

.hero-copy {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.section-heading.split {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 570px;
  margin: 22px 0 0;
}

.hero-stats div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(221, 214, 203, 0.9);
  border-radius: 8px;
  text-align: center;
}

.hero-stats dt {
  font-weight: 600;
}

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

.section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.split {
  justify-content: space-between;
  max-width: none;
}

.product-heading {
  align-items: flex-start;
  margin-bottom: 22px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.intro-band {
  background: #fff;
}

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

.value-grid article,
.material-list article,
.inquiry-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-grid article,
.material-list article {
  padding: 26px;
}

.value-grid article {
  overflow: hidden;
}

.value-grid article.value-media {
  padding: 0;
}

.value-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ECEFED;
  border-bottom: 1px solid var(--line);
}

.value-copy {
  padding: 22px 24px 24px;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #FFFFFF;
  background: var(--brand);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.value-grid p,
.material-list p,
.product-card p,
.custom-copy p,
.contact-copy p {
  color: var(--muted);
}

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

.collection-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.collection-toolbar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.collection-toolbar a:first-child,
.collection-toolbar a:hover {
  color: #FFFFFF;
  background: var(--night);
  border-color: var(--night);
}

.collection-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 14px;
  background: #FFFFFF;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.025);
}

.catalog-info {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 18px;
  text-align: center;
}

.catalog-info .product-type {
  display: none;
}

.catalog-info h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
}

.catalog-info p:not(.product-type) {
  display: none;
  min-height: 54px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-meta {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.catalog-meta span {
  padding: 6px 9px;
  color: var(--night);
  background: rgba(220, 230, 226, 0.72);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
}

.quote-link {
  display: none;
  align-self: end;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  color: #FFFFFF;
  background: var(--night);
  border-radius: 6px;
  font-weight: 600;
}

.quote-link:hover {
  background: var(--brand);
}

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

.category-strip article {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-strip img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #DCE6E2;
  border-radius: 6px;
}

.category-strip h3 {
  margin-bottom: 0;
  font-size: 16px;
}

.product-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #DCE6E2;
}

.product-card div {
  padding: 20px;
}

.collection-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 24px 28px;
}

.collection-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 64px);
  white-space: normal;
}

.collection-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.collection-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px clamp(64px, 8vw, 108px);
}

.collection-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.collection-tools label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.collection-tools select {
  min-width: 150px;
  padding: 10px 36px 10px 12px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.collection-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.collection-product-card {
  text-align: center;
}

.collection-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.collection-product-card h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  padding: clamp(70px, 9vw, 126px) clamp(22px, 7vw, 104px) clamp(54px, 7vw, 88px);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
}

.about-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 70px);
}

.about-hero p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.about-hero-card,
.about-note-card,
.factory-grid article,
.process-line div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.about-hero-card img,
.about-hero-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
  border-radius: 6px;
  display: block;
}

.about-hero-video {
  background: #0f1513;
}

.about-hero-card span,
.factory-grid span,
.process-line span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  margin-top: 4px;
  color: var(--brand);
  font-size: 17px;
  font-weight: 600;
}

.about-production {
  background: #FFFFFF;
}

.about-section {
  padding: clamp(58px, 8vw, 104px) clamp(22px, 7vw, 104px);
}

.about-section.tinted {
  background: #FFFFFF;
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.about-section-heading p:not(.eyebrow),
.about-copy p,
.about-note-card p,
.factory-grid p,
.process-line p {
  color: var(--muted);
}

.about-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
}

.about-note-card {
  padding: 26px;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.production-video-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.production-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper);
}

.production-video-card-large {
  aspect-ratio: 16 / 8.2;
  margin-bottom: 18px;
}

.production-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.production-feature-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.production-feature-grid p,
.production-support-block p {
  color: var(--muted);
}

.production-support-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.5fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.production-support-block h3 {
  max-width: 520px;
}

.production-support-block p:not(.eyebrow) {
  max-width: 560px;
}

.production-video-card-small {
  aspect-ratio: 4 / 3;
}

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

.factory-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
  margin: 0 0 24px;
}

.factory-photo-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.factory-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper);
}

.factory-photo-grid figure:first-child img {
  aspect-ratio: 4 / 3;
  object-position: center 58%;
}

.factory-photo-grid .factory-photo-rotate img {
  transform: rotate(90deg) scale(1.34);
}

.factory-photo-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
}

.factory-photo-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-photo-grid strong {
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.factory-grid article {
  padding: 24px;
}

.factory-grid h3 {
  margin-top: 14px;
}

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

.process-line div {
  padding: 20px;
}

.process-line span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #FFFFFF;
  background: var(--brand);
  border-radius: 50%;
}

.process-line strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.about-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-checks span {
  padding: 8px 10px;
  color: var(--brand);
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--brand);
  font-weight: 600;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(560px, 760px) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(30px, 4vw, 58px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 24px clamp(60px, 7vw, 96px);
}

.product-gallery,
.product-summary {
  min-width: 0;
}

.product-gallery {
  display: block;
  width: 100%;
  max-width: 620px;
  justify-self: center;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(58vh, 500px);
  object-fit: contain;
  background: #FFFFFF;
  border: 0;
  border-radius: 0;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  align-items: stretch;
  max-width: 100%;
  margin-top: 14px;
  padding: 0 0 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.product-thumbs button {
  flex: 0 0 78px;
  display: block;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  scroll-snap-align: start;
}

.product-thumbs button.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #FFFFFF;
  border-radius: 6px;
}

.product-summary {
  align-self: start;
  padding: 6px 0;
}

.product-summary h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  white-space: normal;
}

.product-intro {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.product-specs {
  display: grid;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--ink);
  font-weight: 600;
}

.product-specs dd {
  margin: 0;
  color: var(--muted);
}

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

.material-section {
  background: #1E2D2A;
  color: #FFFFFF;
}

.material-section .eyebrow,
.material-section p {
  color: #DCE6E2;
}

.material-visual {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  margin: 0 0 24px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.material-video-frame {
  position: relative;
  overflow: hidden;
  background: #0f1513;
  padding: 0;
}

.material-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.material-video-logo {
  position: absolute;
  top: 18px;
  left: 20px;
  width: min(150px, 18vw);
  height: auto;
  opacity: 0.72;
  pointer-events: none;
  z-index: 2;
}

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

.material-list article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.custom-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.custom-visual {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-top: 28px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.process {
  display: grid;
  gap: 14px;
}

.process div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #FFFFFF;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 600;
}

.process p {
  margin: 0;
  font-weight: 600;
}

.contact-section {
  background: #fff;
}

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

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

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #F5F5F2;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-notice {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.form-notice.success {
  color: #173B38;
  background: #DCE6E2;
  border: 1px solid #B9C9C4;
}

.form-notice.error {
  color: #6A2B22;
  background: #F4E8E3;
  border: 1px solid #D8B8AA;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: #DCE6E2;
  background: #1E2D2A;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: inherit;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: minmax(154px, 170px) minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 18px;
  }

  .brand {
    width: 170px;
    min-width: 154px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .desktop-nav {
    gap: 4px;
    font-size: 12.5px;
  }

  .nav-toggle {
    width: 12px;
    margin-left: 1px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .icon-button {
    width: 40px;
  }

  .custom-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: clamp(340px, 48vw, 520px);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 32px;
    padding-inline: 44px;
  }

  .product-grid,
  .catalog-grid,
  .category-strip,
  .material-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    min-height: 32px;
    font-size: 11px;
    text-align: center;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    padding-inline: 16px;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .desktop-nav,
  .nav-actions > .header-cta {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(92vw, 390px);
    height: 100vh;
    height: 100dvh;
    max-width: 100%;
    background: #fff;
    border-left: 1px solid #DADFDB;
    box-shadow: -18px 0 38px rgba(23, 25, 24, 0.12);
    overflow: hidden;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-head,
  .mobile-menu-foot {
    padding: 18px;
    background: #F5F5F2;
    border-bottom: 1px solid #DADFDB;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-head button {
    min-height: 44px;
    padding: 0 12px;
    color: #304B46;
    background: transparent;
    border: 1px solid #DADFDB;
    border-radius: 4px;
    font: inherit;
    font-weight: 600;
  }

  .mobile-menu nav {
    overflow-y: auto;
    padding: 8px 18px 18px;
  }

  .mobile-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    border-bottom: 1px solid #DADFDB;
  }

  .mobile-group > a,
  .mobile-single {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: #202522;
    font-weight: 600;
  }

  .mobile-accordion {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #304B46;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 20px;
  }

  .mobile-accordion[aria-expanded="true"] {
    transform: rotate(45deg);
  }

  .mobile-panel {
    display: none;
    padding: 8px 0 12px 12px;
    border-bottom: 1px solid #DADFDB;
  }

  .mobile-group:focus-within + .mobile-panel,
  .mobile-panel:focus-within {
    display: grid;
  }

  .mobile-panel[hidden] {
    display: none;
  }

  .mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: #68706C;
    font-size: 14px;
    font-weight: 500;
  }

  .mobile-menu-foot {
    display: grid;
    gap: 10px;
    border-top: 1px solid #DADFDB;
    border-bottom: 0;
  }

  .mobile-menu-foot .header-cta {
    display: flex;
    width: 100%;
  }

  .mobile-whatsapp {
    color: #304B46;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .hero-showcase {
    max-width: 520px;
  }

  .hero-copy-block h1 {
    white-space: normal;
  }

  .hero-media {
    width: calc(100% - 24px);
    margin-top: 12px;
    height: 330px;
  }

  .hero-slide-caption {
    left: 16px;
    right: 16px;
    bottom: 18px;
    max-width: calc(100% - 104px);
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .hero-dots {
    right: 16px;
    bottom: 22px;
  }

  .hero-dots button {
    width: 18px;
  }

  .hero-stats,
  .value-grid,
  .product-grid,
  .catalog-grid,
  .category-strip,
  .production-feature-grid,
  .production-support-block,
  .factory-photo-grid,
  .factory-grid,
  .process-line,
  .about-hero,
  .about-two-column,
  .collection-products,
  .material-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 48px;
  }

  .collection-tools,
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-gallery {
    display: block;
  }

  .product-main-image {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .product-thumbs {
    flex-direction: row;
    max-height: none;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .product-thumbs button {
    flex-basis: 72px;
  }

  .catalog-info p:not(.product-type) {
    min-height: 0;
  }

  .category-strip article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 8px;
  }
}
