:root {
  --ink: #20252a;
  --muted: #6b7178;
  --line: #e3e6e0;
  --paper: #fbfaf5;
  --white: #fff;
  --green: #1f6f6b;
  --leaf: #3a8f86;
  --gold: #c9a24a;
  --clay: #9a6b45;
  --blue: #2e6678;
  --shadow: 0 18px 50px rgba(25, 31, 32, .12);
  --soft-shadow: 0 10px 28px rgba(31, 47, 44, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(32, 37, 42, .08);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { width: 154px; height: auto; }
.menu {
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 15px;
  font-weight: 700;
}
.menu a { padding: 31px 0; }
.menu a:hover, .menu .active { color: var(--green); }
.menu-item {
  position: relative;
}
.submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  min-width: 190px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 6px;
  font-size: 14px;
}
.submenu a:hover {
  background: rgba(31,111,107,.08);
}
.menu-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.lang-btn {
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}
.lang-btn.active {
  color: var(--green);
}
#google_translate_element {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.goog-te-banner-frame,
.goog-te-gadget-icon,
.goog-te-gadget-simple {
  display: none !important;
}
body { top: 0 !important; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; color: var(--ink); }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 88px));
  display: grid;
  align-items: end;
  color: var(--white);
  background: linear-gradient(90deg, rgba(18, 32, 30, .68), rgba(18, 32, 30, .08)), var(--hero) center/cover;
  overflow: hidden;
}
.hero-slider .hero-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 32, 30, .68), rgba(18, 32, 30, .08)), var(--hero) center/cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease;
}
.hero-slider .hero-panel.active {
  opacity: 1;
}
.hero-slider .hero-inner {
  position: relative;
  z-index: 2;
}
.hero-controls {
  position: absolute;
  right: min(6vw, 72px);
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.hero-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}
.hero-counter {
  min-width: 62px;
  font-weight: 900;
  text-align: center;
}
.hero-slider:after,
.hero-slider:before {
  display: none;
  pointer-events: none;
}
.hero:after {
  content: "01 / 03";
  position: absolute;
  right: min(8vw, 92px);
  bottom: 50px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}
.hero:before {
  content: "";
  position: absolute;
  right: min(5vw, 62px);
  bottom: 57px;
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,.55);
}
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 126px 0 116px;
  pointer-events: auto;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero h1 {
  max-width: 1080px;
  font-size: clamp(40px, 5.6vw, 74px);
}
.hero p {
  max-width: 640px;
  margin: 24px 0 34px;
  font-size: 20px;
  color: rgba(255,255,255,.9);
  word-break: keep-all;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  font-weight: 850;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.72); }
.btn.light { background: var(--white); color: var(--green); border-color: var(--white); }

.section { padding: 112px 0; }
.section.alt { background: var(--white); }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section,
.split,
.grid,
.process-list,
.product-grid,
[data-product-grid],
[data-news-grid],
.map-box,
.site-footer {
  scroll-margin-top: 104px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 72px;
  margin-bottom: 44px;
  align-items: end;
}
.section-head h2, .page-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: 0;
  word-break: keep-all;
}
.lead { margin: 0; color: var(--muted); font-size: 18px; }

.grid { display: grid; gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card.pad { padding: 28px; }
.card img { width: 100%; height: 292px; object-fit: cover; }
.card img.product-image {
  object-fit: contain;
  padding: 24px;
  background: #f4f3ed;
}
.card h3 { margin: 0 0 10px; font-size: 24px; line-height: 1.25; }
.card h3 { word-break: keep-all; }
.card p { margin: 0; color: var(--muted); }
.card .body { padding: 24px; }
.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.media-frame { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--paper); padding: 28px; }
.stat strong { display: block; color: var(--green); font-size: 38px; line-height: 1; }
.stat span { color: var(--muted); font-weight: 800; }

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 116px 0 68px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(18, 32, 30, .78), rgba(18, 32, 30, .24)), var(--hero) center/cover;
}
.breadcrumbs { margin-bottom: 18px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 800; }

.timeline { border-left: 2px solid var(--green); margin-left: 12px; }
.time-item { position: relative; padding: 0 0 34px 34px; }
.time-item:before {
  content: "";
  position: absolute;
  left: -9px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 4px solid var(--paper);
  border-radius: 50%;
}
.time-item h3 { margin: 0 0 8px; color: var(--green); font-size: 30px; }
.time-item p { margin: 0; color: var(--muted); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { padding: 28px; border-left: 4px solid var(--gold); background: var(--white); }
.value h3 { margin: 0 0 8px; }

.org { display: grid; gap: 18px; text-align: center; }
.org-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.org-node { min-width: 180px; padding: 18px 20px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; font-weight: 900; }
.org-node.primary { background: var(--green); color: var(--white); }
.org-node.secondary { border-color: var(--gold); color: var(--green); }

.product-card {
  text-align: left;
  border: 1px solid var(--line);
}
.product-card img { height: 304px; object-fit: contain; padding: 38px 28px 30px; background: #f4f3ed; }
.product-card .brand {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.product-card button {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: inherit;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.product-empty {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 32, 30, .56);
}
.modal-overlay.open {
  display: flex;
}
.modal-card {
  width: min(760px, 100%);
  max-height: 88vh;
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.modal-media {
  display: grid;
  place-items: center;
  background: #f4f3ed;
  padding: 34px;
}
.modal-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}
.modal-body {
  position: relative;
  padding: 38px 34px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 18px;
}
.modal-body h3 {
  margin: 8px 0 4px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}
.modal-body p {
  color: var(--muted);
}
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn { min-height: 38px; border: 1px solid var(--line); background: var(--white); padding: 0 14px; font-weight: 850; color: var(--muted); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { background: var(--white); padding: 28px; }
.process-step strong { color: var(--gold); font-size: 15px; }

.map-box {
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31,111,107,.12), rgba(201,162,74,.16));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(.96);
}

.site-footer {
  background: #182422;
  color: rgba(255,255,255,.78);
  padding: 58px 0 30px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-contact h2 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
}
.contact-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px 44px;
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 46px;
  padding-bottom: 32px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-top img { width: 150px; height: fit-content; }
.footer-cols {
  display: flex;
  gap: 58px;
  flex-wrap: wrap;
}
.footer-col h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 14px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer-col a:hover { color: var(--white); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.52);
  font-size: 12.5px;
  line-height: 1.7;
}
.footer-legal a {
  margin-right: 16px;
  color: rgba(255,255,255,.75);
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header { height: 68px; }
  .menu-toggle { display: block; }
  .menu-toggle { order: 4; margin-left: 8px; }
  .lang { order: 3; margin-left: auto; }
  .menu {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    padding: 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .menu.open { display: flex; }
  .menu a { padding: 10px 0; }
  .menu-item { width: 100%; }
  .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }
  .submenu a {
    padding: 7px 0;
    color: var(--muted);
    font-size: 14px;
  }
  .grid.three, .grid.four, .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { gap: 40px; }
}

@media (max-width: 880px) {
  .hero { min-height: 620px; }
  .section { padding: 66px 0; }
  .section,
  .split,
  .grid,
  .process-list,
  .product-grid,
  [data-product-grid],
  [data-news-grid],
  .map-box,
  .site-footer {
    scroll-margin-top: 84px;
  }
  .section-head, .split { grid-template-columns: 1fr; gap: 28px; }
  .grid.two, .grid.three, .grid.four, .stats, .values, .process-list { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-contact, .footer-top { flex-direction: column; align-items: flex-start; }
  .contact-rows { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media { min-height: 260px; }
  .hero:after, .hero:before { display: none; }
  .card img, .product-card img { height: 220px; }
}

@media (max-width: 560px) {
  .hero h1, .page-hero h1 { font-size: 36px; line-height: 1.12; }
  .hero p, .lead { font-size: 16px; }
  .hero-inner { padding: 90px 0 64px; }
  .page-hero { min-height: 320px; padding: 72px 0 44px; }
  .card h3 { font-size: 21px; }
  .btn { width: 100%; }
}

/* Distinctive Namu editorial direction */
:root {
  --ink: #15211d;
  --muted: #6f746b;
  --line: #ddd6c8;
  --paper: #f5f0e5;
  --white: #fffdf8;
  --green: #173f35;
  --leaf: #2f7f69;
  --gold: #b08a3d;
  --clay: #8c6646;
  --blue: #426b70;
  --shadow: 0 26px 58px rgba(20, 32, 27, .16);
  --soft-shadow: 0 14px 34px rgba(40, 51, 43, .08);
}

body {
  background:
    linear-gradient(90deg, rgba(21,33,29,.045) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
}

.site-header {
  height: 76px;
  background: #102820;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1320px, calc(100% - 48px));
  gap: 30px;
}

.logo {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.logo img { width: 164px; }

.menu {
  gap: 38px;
  font-size: 14px;
  font-weight: 850;
}

.menu a {
  position: relative;
  padding: 27px 0;
  color: rgba(255,255,255,.82);
}

.menu a:hover,
.menu .active {
  color: var(--white);
}

.menu a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--gold);
}

.submenu {
  top: calc(100% + 8px);
  background: #fffaf0;
  border: 1px solid rgba(16,40,32,.12);
  box-shadow: 0 22px 54px rgba(10, 24, 19, .2);
}

.submenu a {
  color: var(--ink);
}

.submenu a:hover {
  background: rgba(176,138,61,.13);
  color: var(--green);
}

.lang {
  color: rgba(255,255,255,.62);
}

.lang-btn {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  color: rgba(255,255,255,.62);
}

.lang-btn.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.menu-toggle {
  color: var(--white);
}

.hero {
  min-height: min(780px, calc(100vh - 76px));
  align-items: center;
  background: #102820;
  isolation: isolate;
}

.hero-slider .hero-panel {
  background:
    linear-gradient(90deg, rgba(16,40,32,.9) 0%, rgba(16,40,32,.62) 42%, rgba(16,40,32,.12) 100%),
    var(--hero) center/cover;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity .9s ease, transform 6s ease;
}

.hero-slider .hero-panel.active {
  transform: scale(1);
}

.hero-slider:before {
  content: "NAMU";
  display: block;
  position: absolute;
  right: min(5vw, 70px);
  bottom: 8%;
  z-index: 1;
  color: rgba(255,255,255,.08);
  font-size: clamp(92px, 18vw, 260px);
  font-weight: 950;
  line-height: .82;
  pointer-events: none;
}

.hero-slider:after {
  content: "FARM / PROCESS / TABLE";
  display: block;
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  top: 98px;
  z-index: 2;
  color: rgba(255,255,255,.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  padding: 96px 0 94px 74px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 86px);
  line-height: .98;
}

.hero p {
  max-width: 580px;
  color: rgba(255,255,255,.82);
}

.hero-controls {
  right: min(4vw, 56px);
  bottom: 50%;
  transform: translateY(50%);
  flex-direction: column;
}

.hero-controls button {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
}

.hero-counter {
  writing-mode: vertical-rl;
  min-width: 0;
  min-height: 74px;
}

.btn {
  min-height: 50px;
  border-radius: 0;
  border-color: var(--gold);
  background: var(--gold);
  color: #102820;
  font-weight: 950;
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}

.section {
  position: relative;
  padding: 106px 0;
  background: var(--paper);
  border-top: 1px solid rgba(21,33,29,.08);
}

.section.alt {
  background: #fffaf0;
}

.section-head {
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  align-items: start;
  gap: 92px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.section-head h2:before,
.page-title:before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--gold);
}

.lead {
  max-width: 720px;
  color: #59635b;
  word-break: keep-all;
}

.split {
  grid-template-columns: .94fr 1.06fr;
  gap: 74px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 0;
  box-shadow: none;
}

.media-frame:after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  border: 1px solid var(--gold);
}

.stats {
  border: 0;
  background: #102820;
  color: rgba(255,255,255,.72);
}

.stat {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,.13);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--gold);
}

.stat span {
  color: rgba(255,255,255,.76);
}

.card {
  border: 0;
  border-top: 3px solid rgba(23,63,53,.72);
  border-radius: 0;
  background: rgba(255,253,248,.82);
  box-shadow: none;
}

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

.card.pad {
  min-height: 240px;
  padding: 32px;
}

.card img {
  height: 310px;
}

.card .body {
  padding: 28px;
}

.tag {
  border: 0;
  margin-bottom: 16px;
  padding: 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
}

.values {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value {
  border-left: 0;
  background: #fffaf0;
  padding: 34px;
}

.product-card {
  border: 1px solid var(--line);
  border-top: 0;
  background: #fffdf8;
}

.product-card img,
.card img.product-image {
  background:
    linear-gradient(180deg, #efe8d8 0%, #fbf7ee 100%);
}

.product-card .body {
  border-top: 1px solid var(--line);
}

.product-card .brand {
  color: #7d7a70;
}

.filters {
  padding: 14px;
  background: #ede5d6;
  border: 1px solid var(--line);
}

.filter-btn {
  border-radius: 0;
  background: transparent;
}

.filter-btn.active {
  background: #102820;
  border-color: #102820;
  color: var(--white);
}

.page-hero {
  position: relative;
  min-height: 370px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 88px 0;
  background: #102820;
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0 0 0 45%;
  z-index: -2;
  background:
    linear-gradient(90deg, #102820 0%, rgba(16,40,32,.56) 42%, rgba(16,40,32,.18) 100%),
    var(--hero) center/cover;
}

.page-hero:after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  height: 1px;
  background: rgba(255,255,255,.2);
}

.page-hero h1 {
  max-width: 700px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

.breadcrumbs {
  color: rgba(255,255,255,.64);
  letter-spacing: .08em;
}

.process-list {
  border: 0;
  gap: 0;
  background: #102820;
}

.process-step {
  min-height: 220px;
  background: #fffaf0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px;
}

.process-step strong {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 14px;
}

.map-box {
  border-radius: 0;
  border-color: var(--line);
}

.org-node {
  border-radius: 0;
}

[data-news-grid] .card:first-child {
  grid-column: span 2;
}

[data-news-grid] .card:first-child img {
  height: 390px;
}

.site-footer {
  background: #0d1915;
  padding-top: 66px;
}

.footer-contact {
  align-items: flex-start;
}

.footer-contact h2 {
  min-width: 180px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.back-to-top {
  border-radius: 0;
  background: var(--gold);
  color: #102820;
}

.home-business .grid.four .card:nth-child(even),
.home-products .grid.four .card:nth-child(even) {
  transform: translateY(34px);
}

.home-business .grid.four .card:nth-child(even):hover,
.home-products .grid.four .card:nth-child(even):hover {
  transform: translateY(28px);
}

@media (max-width: 1040px) {
  .site-header { height: 68px; }
  .logo {
    padding-right: 18px;
  }
  .logo img { width: 142px; }
  .menu {
    inset: 68px 0 auto 0;
    background: #102820;
  }
  .submenu {
    background: transparent;
    box-shadow: none;
  }
  .submenu a {
    color: rgba(255,255,255,.62);
  }
  .hero-inner {
    padding-left: 40px;
  }
  .section-head {
    gap: 44px;
  }
  .home-business .grid.four .card:nth-child(even),
  .home-products .grid.four .card:nth-child(even) {
    transform: none;
  }
  .home-business .grid.four .card:nth-child(even):hover,
  .home-products .grid.four .card:nth-child(even):hover {
    transform: translateY(-6px);
  }
  [data-news-grid] .card:first-child {
    grid-column: auto;
  }
  [data-news-grid] .card:first-child img {
    height: 310px;
  }
}

@media (max-width: 880px) {
  .nav {
    width: min(100% - 28px, 1180px);
    gap: 14px;
  }
  .hero {
    min-height: 620px;
  }
  .hero-slider:before {
    font-size: 96px;
    right: 18px;
    bottom: 18px;
  }
  .hero-slider:after {
    display: none;
  }
  .hero-inner {
    width: min(100% - 36px, 1180px);
    padding: 78px 0 70px 24px;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }
  .hero-controls {
    right: 18px;
    bottom: 32px;
    transform: none;
    flex-direction: row;
  }
  .hero-counter {
    writing-mode: horizontal-tb;
    min-width: 62px;
    min-height: 0;
  }
  .section {
    padding: 72px 0;
  }
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }
  .media-frame:after {
    inset: 16px -12px -12px 16px;
  }
  .page-hero {
    min-height: 330px;
    padding: 78px 0 54px;
  }
  .page-hero:before {
    inset: 0;
    opacity: .72;
  }
  .footer-contact h2 {
    min-width: 0;
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .logo {
    border-right: 0;
    padding-right: 0;
  }
  .logo img {
    width: 132px;
  }
  .lang-btn {
    padding: 0 6px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }
  .page-title,
  .section-head h2 {
    font-size: 32px;
  }
  .btn {
    width: 100%;
  }
}
