:root {
  --bg: #f7f3eb;
  --bg-soft: #efe8dc;
  --surface: #fffdf8;
  --surface-muted: #f1eae0;
  --ink: #28231e;
  --ink-soft: #655f56;
  --line: #ded3c3;
  --line-strong: #c9bba6;
  --accent: #a8623f;
  --accent-dark: #80452d;
  --sage: #69775a;
  --sage-dark: #4f5c45;
  --sand: #d8cbb8;
  --white: #ffffff;
  --header-h: 76px;
  --radius: 6px;
  --shadow-sm: 0 10px 24px rgba(54, 43, 31, 0.08);
  --shadow-md: 0 22px 50px rgba(54, 43, 31, 0.14);
  --font-sans: "DM Sans", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--accent);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--accent);
}

.button-light {
  background: var(--surface);
  color: var(--ink);
}

.button-light:hover {
  background: var(--sand);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link.light {
  color: rgba(255, 255, 255, 0.9);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.icon-button:hover {
  background: var(--surface-muted);
}

.header-zone {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header {
  background: rgba(247, 243, 235, 0.92);
  border-bottom: 1px solid rgba(201, 187, 166, 0.6);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(54, 43, 31, 0.08);
}

.nav-shell {
  width: min(calc(100% - 40px), 1320px);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 168px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 44px;
}

.footer-logo {
  height: 46px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

.brand-mark.light {
  background: var(--sand);
  color: var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-nav-head {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 10px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link svg {
  width: 15px;
  height: 15px;
}

.nav-group {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-submenu a:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.language-select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.language-select:focus {
  outline: 2px solid rgba(168, 98, 63, 0.35);
  outline-offset: 2px;
}.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.lang-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: 0;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.lang-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 12px;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.lang-option small {
  color: var(--ink-soft);
}

.lang-option:hover,
.lang-option.is-active {
  background: var(--surface-muted);
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: min(920px, calc(100vh - var(--header-h)));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #4a4239;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(32, 28, 24, 0.79) 0%, rgba(32, 28, 24, 0.48) 48%, rgba(32, 28, 24, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding: 100px 0 120px;
  color: var(--white);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 20px;
}

.hero-proof-item strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
}

.hero-proof-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.hero-controls {
  position: absolute;
  right: 28px;
  bottom: 95px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
  width: 26px;
  border-radius: 8px;
  background: var(--white);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.round-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.round-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.round-button svg {
  width: 18px;
  height: 18px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translate(-50%, 0); opacity: 0.9; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}.category-strip {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding: 0 0 44px;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 4px solid var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(32, 28, 24, 0.68) 100%);
}

.category-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow::before {
  display: none;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 0;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.split-layout.reverse > .split-copy {
  order: 1;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.split-copy .lead {
  margin-bottom: 18px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
}

.split-copy > p:not(.eyebrow):not(.lead) {
  margin-bottom: 28px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.inline-link:hover svg {
  transform: translateX(4px);
}

.dark-link {
  color: var(--ink);
}

.split-media {
  position: relative;
  min-height: 560px;
}

.media-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-float {
  position: absolute;
  left: -42px;
  bottom: -30px;
  width: 48%;
  overflow: hidden;
  border: 5px solid var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.media-float.light {
  left: auto;
  right: -32px;
  bottom: -30px;
}

.media-float img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  border-radius: var(--radius);
  background: rgba(247, 243, 235, 0.86);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.media-note span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
}

.media-note strong {
  font-size: 2rem;
  line-height: 1;
}

.value-strip {
  padding: 100px 0;
  background: var(--sage);
  color: var(--white);
}

.value-strip h2,
.value-strip h3 {
  color: var(--white);
}

.value-strip p {
  color: rgba(255, 255, 255, 0.72);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.value-item {
  padding: 28px 28px 0 0;
}

.value-item + .value-item {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.value-icon svg {
  width: 21px;
  height: 21px;
}

.value-item h3 {
  margin-bottom: 12px;
}

.timeline {
  margin-top: 34px;
  border-left: 1px solid var(--line-strong);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 0 0 22px 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline-item p {
  margin: 0;
}

.organization {
  background: var(--bg-soft);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.org-item {
  padding: 26px 28px 8px 0;
}

.org-item + .org-item {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.org-number {
  display: block;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.org-item h3 {
  margin-bottom: 12px;
}

.products {
  background: var(--bg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: var(--surface-muted);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.quick-action {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .quick-action,
.quick-action:focus {
  opacity: 1;
  transform: translateY(0);
}

.quick-action:hover {
  background: var(--sand);
}

.quick-action svg {
  width: 18px;
  height: 18px;
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.product-body h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.product-body p {
  min-height: 46px;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.promo-band {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.promo-band > img,
.promo-overlay {
  position: absolute;
  inset: 0;
}

.promo-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  background: linear-gradient(90deg, rgba(37, 33, 29, 0.86), rgba(37, 33, 29, 0.34));
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.promo-content h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--white);
}

.promo-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.news-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.news-card:hover .news-media img {
  transform: scale(1.04);
}

.news-date {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-body {
  padding: 20px;
}

.news-meta {
  display: block;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.news-body h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.news-body h3 a {
  transition: color 180ms ease;
}

.news-body h3 a:hover {
  color: var(--accent);
}

.news-body p {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 0.86rem;
}.feedback {
  background: var(--bg-soft);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feedback-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 22px;
  color: var(--accent);
}

.stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.feedback-card blockquote {
  min-height: 150px;
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.feedback-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feedback-author strong {
  font-size: 0.9rem;
}

.feedback-author span {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.container.narrow {
  max-width: 880px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.faq-item[open] summary svg {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 740px;
  margin: -4px 0 24px;
}

.contact {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: start;
}

.contact-intro h2 {
  margin-bottom: 20px;
}

.contact-intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  font-size: 1.02rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details a,
.contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}

.contact-details svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 98, 63, 0.13);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #b14c3f;
}

.form-submit {
  align-self: flex-start;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.site-footer {
  background: #26221e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 50px;
  padding: 72px 0 56px;
}

.footer-brand-link {
  min-width: 0;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--sand);
}

.footer-column a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.54);
}

.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.72);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
  background: rgba(32, 28, 24, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(8px);
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  width: min(100%, 720px);
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateY(-16px);
  transition: transform 180ms ease;
}

.search-overlay.is-open .search-panel {
  transform: translateY(0);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 700;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form > svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--ink-soft);
}

.search-form input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  outline: none;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-suggestions button {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.search-suggestions button:hover {
  background: var(--sand);
  color: var(--ink);
}

.quick-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(32, 28, 24, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(8px);
}

.quick-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.quick-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(100%, 920px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.quick-modal.is-open .quick-dialog {
  transform: translateY(0) scale(1);
}

.quick-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  background: rgba(255, 253, 248, 0.92);
}

.quick-media {
  min-height: 480px;
  overflow: hidden;
  background: var(--surface-muted);
}

.quick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.quick-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.quick-content > p:not(.eyebrow) {
  margin-bottom: 22px;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.quick-specs li {
  position: relative;
  padding-left: 13px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.quick-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.quick-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quick-price {
  font-size: 1.28rem;
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}

.back-to-top svg {
  width: 19px;
  height: 19px;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}@media (max-width: 1180px) {
  .nav-actions {
    /*margin-left: 8px;*/
   /*padding-left: 8px;*/
  }

  .nav-cta {
    display: none;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .value-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .value-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 30px;
  }

  .org-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 0;
  }

  .org-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .org-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 30px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 220;
  }

  .nav-close {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 210;
    width: min(380px, 92vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-weight: 700;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
    text-align: left;
	background:#fff;
  }

  .nav-link::after {
    display: none;
  }

  .nav-group {
    border-bottom: 1px solid var(--line);
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease, padding 220ms ease;
  }

  .nav-group.is-open .nav-submenu {
    max-height: 260px;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
  }

  .nav-submenu a {
    padding: 9px 0;
  }

  .nav-actions {
    /*margin: 18px 0 0;
    padding: 0;*/
    border-left: 0;
    justify-content: flex-start;
	background:#fff;
	padding:18px 0 10px 0;
	margin-left:0px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: block;
    background: rgba(32, 28, 24, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .lang-menu {
    top: 68px;
    right: 20px;
  }

  .hero {
    min-height: min(780px, calc(100vh - var(--header-h)));
  }

  .hero-content {
    padding: 90px 0 110px;
  }

  .category-track {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .category-card {
    scroll-snap-align: start;
  }

  .split-layout,
  .split-layout.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-layout.reverse > .split-copy {
    order: 0;
  }

  .split-media {
    min-height: 520px;
  }

  .product-grid,
  .news-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .quick-dialog {
    grid-template-columns: 1fr;
  }

  .quick-media {
    min-height: 300px;
    max-height: 360px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }

  .container {
    width: min(calc(100% - 28px), 1240px);
  }

  .nav-shell {
    width: min(calc(100% - 28px), 1320px);
  }

  .hero {
    min-height: 740px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(32, 28, 24, 0.54) 0%, rgba(32, 28, 24, 0.42) 42%, rgba(32, 28, 24, 0.82) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding: 100px 0 130px;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 40px;
  }

  .hero-proof-item {
    padding-right: 8px;
  }

  .hero-controls {
    right: 20px;
    bottom: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .category-strip {
    margin-top: -54px;
  }

  .category-track {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .split-media {
    min-height: 420px;
  }

  .media-float {
    left: -20px;
    width: 48%;
  }

  .media-float.light {
    right: -16px;
  }

  .media-float img {
    height: 210px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .value-item,
  .value-item + .value-item,
  .value-item:nth-child(3) {
    padding: 24px 0;
    border-left: 0;
  }

  .value-item + .value-item,
  .value-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .org-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .org-item,
  .org-item + .org-item,
  .org-item:nth-child(3) {
    padding: 24px 0;
    border-left: 0;
  }

  .org-item + .org-item,
  .org-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-grid,
  .news-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .product-body p,
  .news-body p {
    min-height: 0;
  }

  .promo-band {
    min-height: 520px;
  }

  .promo-overlay {
    background: linear-gradient(180deg, rgba(37, 33, 29, 0.58), rgba(37, 33, 29, 0.78));
  }

  .promo-content {
    padding: 72px 0;
  }

  .feedback-card blockquote {
    min-height: 0;
  }

  .contact-layout {
    gap: 40px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 0 40px;
  }

  .footer-brand-link {
    margin-bottom: 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .search-overlay {
    padding-top: 8vh;
  }

  .search-form {
    flex-wrap: wrap;
  }

  .search-form > svg {
    display: none;
  }

  .search-form input {
    flex-basis: 100%;
  }

  .quick-dialog {
    max-height: calc(100vh - 20px);
  }

  .quick-content {
    padding: 28px;
  }

  .quick-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-logo {
    height: 38px;
  }

  .footer-logo {
    height: 40px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof-item span {
    font-size: 0.68rem;
  }

  .hero-arrows {
    gap: 6px;
  }

  .round-button {
    width: 40px;
    height: 40px;
  }

  .hero-controls {
    gap: 10px;
  }
}