:root {
  color-scheme: light;
  --bg: #f4ede3;
  --panel: rgba(255, 251, 245, 0.82);
  --panel-strong: #ffffff;
  --text: #2d261f;
  --muted: #73695d;
  --line: rgba(118, 92, 62, 0.16);
  --brand: #6a5948;
  --shadow: 0 28px 70px rgba(52, 38, 25, 0.14);
  --shadow-soft: 0 14px 34px rgba(52, 38, 25, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 34%),
    linear-gradient(180deg, #f7f1e8 0%, #efe3d3 55%, #eadccc 100%);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 28px 72px;
}
.site-main { display: grid; gap: 42px; }
.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 296px) 1fr;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  padding: 10px 4px 8px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: min(100%, 320px);
  height: auto;
}
.site-nav {
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item { position: relative; }
.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  transition: color 160ms ease;
}
.nav-item--locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(106, 89, 72, 0.18);
}
.lang-link {
  color: var(--brand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.lang-link.is-active {
  color: #30261d;
}
.lang-divider {
  color: rgba(106, 89, 72, 0.52);
  font-size: 13px;
}
.nav-link.is-active,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-link,
.nav-item:focus-within > .nav-trigger {
  color: #30261d;
}
.nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-dropdown__item {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
.nav-dropdown__item:hover,
.nav-dropdown__item:focus-visible,
.nav-dropdown__item.active {
  background: #e7dac8;
  outline: none;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  margin-top: 26px;
  border-radius: 30px;
  background: #d4c1aa;
  box-shadow: var(--shadow);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 30, 22, 0.24) 0%, rgba(39, 30, 22, 0.10) 36%, rgba(39, 30, 22, 0.34) 100%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 600px;
  padding: 74px 32px 48px;
  text-align: center;
}
.hero-content--landing {
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: 1;
  min-height: auto;
  padding: 0;
}
.hero-title {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.hero-title--landing {
  font-size: 45px;
}
.section {
  margin-top: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}
.section h1,
.section h2,
.section h3 {
  margin: 0 0 12px;
  line-height: 1.1;
}
.section p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(106, 89, 72, 0.24);
  border-radius: 999px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.button--solid {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #352b22;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(52, 38, 25, 0.12);
}
.card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: #e7ddd1;
}
.card-copy { padding: 18px 18px 20px; }
.card-copy h3 {
  margin-bottom: 8px;
  font-size: 17px;
}
.product-card-link {
  display: block;
  text-decoration: none;
}
.product-card-link .card-copy h3 {
  margin-bottom: 0;
}
.category-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: start;
}
.category-overview__panel,
.category-intro,
.contact-panel,
.contact-sidebar,
.about-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}
.category-overview__panel ul,
.category-group-card ul,
.about-list {
  margin: 0;
  padding-left: 18px;
}
.category-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.category-group-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.category-group-card h3,
.about-card h3 { margin-bottom: 14px; font-size: 22px; }
.contact-groups {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.contact-group {
  padding: 14px 16px;
  border: 1px solid rgba(106, 89, 72, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}
.contact-group__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b5d41;
}
.contact-group__links {
  display: grid;
  gap: 6px;
}
.contact-group__links a {
  color: var(--text);
  text-decoration: none;
}
.contact-group__links a:hover {
  text-decoration: underline;
}
.category-group-card ul { display: grid; gap: 10px; color: var(--muted); }
.category-group-card a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.category-group-card a:hover { text-decoration: underline; }
.category-shell,
.product-shell,
.about-shell { display: grid; gap: 32px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.customers-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.quality-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-grid .card .image-wrapper {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customers-grid .card img {
  aspect-ratio: auto;
}
.quality-grid .card img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  padding: 18px;
  max-width: 150px;
  text-align: center;
  margin: 0 auto;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.product-shell {
  max-width: 1120px;
  margin: 0 auto;
}
.product-intro { display: grid; gap: 10px; }
.product-description {
  max-width: 920px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  gap: 24px;
  align-items: start;
}
.gallery-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.gallery-stage {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.82);
  box-shadow: var(--shadow-soft);
}
.gallery-stage img {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  background: #f3ebdf;
}
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-caption,
.gallery-count { color: var(--muted); font-size: 14px; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.gallery-thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-thumb.active {
  border-color: rgba(124, 93, 61, 0.4);
  box-shadow: 0 14px 26px rgba(52, 38, 25, 0.12), inset 0 0 0 1px rgba(124, 93, 61, 0.26);
}
.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e7ddd1;
}
.gallery-side {
  display: grid;
  gap: 14px;
  align-content: start;
}
.gallery-side__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #342a21;
}
.product-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.product-fact {
  padding: 14px 16px;
  border: 1px solid rgba(106, 89, 72, 0.16);
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow-soft);
}
.product-fact__label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-fact__value {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}
.detail-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.detail-source {
  display: grid;
  gap: 20px;
  color: var(--text);
}
.detail-copy-section {
  display: grid;
  gap: 10px;
}
.detail-copy-section h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: #2f251d;
}
.detail-copy-section p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}
.detail-copy-lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
.detail-copy-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.detail-copy-list li {
  font-size: 16px;
  line-height: 1.75;
}
.detail-copy-section--table { gap: 16px; }
.detail-size-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(106, 89, 72, 0.14);
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.72);
  box-shadow: var(--shadow-soft);
}
.detail-size-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.detail-size-table-wrap th,
.detail-size-table-wrap td {
  padding: 14px 16px;
  border: 1px solid rgba(106, 89, 72, 0.12);
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: top;
}
.detail-size-table-wrap th {
  background: rgba(157, 122, 84, 0.10);
  color: #342a21;
  font-weight: 600;
}
.detail-size-table-wrap tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.38);
}
.contact-shell {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-field {
  display: grid;
  gap: 8px;
}
.contact-field label {
  font-size: 14px;
  font-weight: 600;
  color: #403227;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(106, 89, 72, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  resize: vertical;
  min-height: 54px;
}
.contact-field textarea { min-height: 150px; }
.contact-field--hidden { display: none; }
.status-notice {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
}
.status-notice.is-visible { display: block; }
.status-notice--success {
  background: rgba(79, 145, 96, 0.16);
  color: #214a2a;
  border: 1px solid rgba(79, 145, 96, 0.24);
}
.status-notice--error {
  background: rgba(173, 77, 77, 0.12);
  color: #6b2727;
  border: 1px solid rgba(173, 77, 77, 0.22);
}
.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  align-items: start;
}
.about-grid,
.about-metrics {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.about-metric {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.7);
  box-shadow: var(--shadow-soft);
}
.about-metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
  color: #30261d;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 32px;
  margin-top: 54px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(106, 89, 72, 0.18);
}
.site-footer__brand {
  display: grid;
  gap: 14px;
  align-content: start;
}
.brand-logo--footer { width: min(100%, 280px); }
.site-footer__brand p,
.site-footer__contact {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
}
.site-footer__brand .contact-group {
  background: rgba(255, 255, 255, 0.42);
}
.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}
.footer-group h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #30261d;
}
.footer-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.footer-group a { color: var(--muted); text-decoration: none; }
.footer-group a:hover { color: var(--text); }
@media (max-width: 980px) {
  .site-header,
  .category-overview,
  .contact-shell,
  .about-shell,
  .site-footer,
  .gallery-shell,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .site-nav { justify-content: flex-start; }
  .hero,
  .hero-content { min-height: 460px; }
  .hero-content--landing {
    top: 50px;
    right: 32px;
  }
  .gallery-thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .page { padding: 10px 16px 42px; }
  .site-header { padding: 10px 0 8px; }
  .hero-title { font-size: 34px; }
  .hero-content--landing {
    right: 20px;
    left: 20px;
    top: 50px;
  }
  .nav-list { justify-content: flex-start; gap: 8px 18px; }
  .nav-item--locale {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .nav-dropdown {
    left: 0;
    transform: translateX(0);
  }
  .nav-item--dropdown:hover .nav-dropdown,
  .nav-item--dropdown:focus-within .nav-dropdown {
    transform: translateX(0);
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .customers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .category-grid .card img { aspect-ratio: 1 / 1; }
  .category-grid .card-copy {
    padding: 14px 12px 16px;
  }
  .category-grid .card-copy h3 {
    font-size: 14px;
    line-height: 1.3;
  }
  .category-grid .button {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
  }
  .gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
