*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  background: #faf9f7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #5a7a5c;
  text-decoration: none;
  transition: color .2s;
}

a:hover { color: #3d5a3f; }

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

p { margin: 0 0 1em; }

input, textarea, button {
  font-family: 'Outfit', sans-serif;
}

.is-hidden { display: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.is-flex { display: flex; }
.is-flex--middle { align-items: center; }
.is-flex--center { justify-content: center; }
.is-flex--between { justify-content: space-between; }
.is-flex--column { flex-direction: column; }

.secLabel {
  display: block;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a9a7c;
  margin-bottom: 10px;
  font-weight: 500;
}

.secHead {
  font-size: 2.4rem;
  color: #2a2a2a;
  margin: 0 0 50px;
  line-height: 1.15;
}

.topbar {
  background: #faf9f7;
  padding: 18px 0;
  border-bottom: 1px solid #e8e5df;
  position: sticky;
  top: 0;
  z-index: 900;
}

.topbar_logo img {
  height: 38px;
  width: auto;
}

.topbar_right { gap: 28px; }

.topbar_phone {
  font-size: 14px;
  color: #666;
  letter-spacing: .3px;
}

.topbar_phone i { margin-right: 4px; }

.cartToggle {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  color: #2a2a2a;
  padding: 4px;
}

.cartCount {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #c45b4a;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobMenu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 950;
}

.mobMenu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2a2a2a;
  transition: .3s;
}

.mobMenu.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobMenu.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobMenu.is-active span:nth-child(2) { opacity: 0; }

.siteNav {
  background: #faf9f7;
  border-bottom: 1px solid #e8e5df;
}

.navUl {
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navUl_li a {
  display: block;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  transition: color .2s, border-bottom .2s;
}

.navUl_li a:hover,
.navUl_li--active a {
  color: #2a2a2a;
  border-bottom: 2px solid #5a7a5c;
}

.hero {
  padding: 100px 0 110px;
  background: #faf9f7;
}

.hero_inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero_txt {
  flex: 1;
  max-width: 520px;
}

.hero_tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a9a7c;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero_h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3.8rem;
  line-height: 1.05;
  color: #2a2a2a;
  margin: 0 0 28px;
  font-weight: 400;
}

.hero_p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 420px;
}

.hero_img {
  flex: 1;
  position: relative;
}

.hero_img img {
  width: 100%;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  background: #5a7a5c;
  color: #fff;
  border: 2px solid #5a7a5c;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}

.btn:hover {
  background: #3d5a3f;
  border-color: #3d5a3f;
  color: #fff;
  text-decoration: none;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn--outline {
  background: transparent;
  color: #5a7a5c;
}

.btn--outline:hover {
  background: #5a7a5c;
  color: #fff;
}

.btn--full {
  width: 100%;
  text-align: center;
}

.artikel {
  position: relative;
  padding: 0;
  margin: 120px 0;
}

.artikel_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.artikel_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
}

.artikel_wrap {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

.artikel_box { max-width: 620px; }

.artikel_label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a9a7c;
  margin-bottom: 12px;
  font-weight: 500;
}

.artikel_h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  line-height: 1.12;
  color: #2a2a2a;
  margin: 0 0 32px;
}

.artikel_box p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
}

.teamBlock {
  padding: 110px 0 100px;
  background: #fff;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tCard {
  background: #faf9f7;
  padding: 48px 36px 42px;
  border: 1px solid #e8e5df;
}

.tCard_icon {
  font-size: 28px;
  color: #8a9a7c;
  margin-bottom: 20px;
}

.tCard_name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  margin: 0 0 6px;
  color: #2a2a2a;
}

.tCard_role {
  display: block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a9a7c;
  margin-bottom: 18px;
  font-weight: 500;
}

.tCard_desc {
  color: #666;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.prodBlock {
  padding: 110px 0 100px;
  background: #faf9f7;
}

.prodGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.pCard {
  background: #fff;
  border: 1px solid #e8e5df;
  overflow: hidden;
  transition: box-shadow .3s;
}

.pCard:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, .06); }

.pCard_img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f2f0ec;
}

.pCard_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.pCard:hover .pCard_img img { transform: scale(1.03); }

.pCard_info { padding: 28px 26px 24px; }

.pCard_info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #2a2a2a;
}

.pCard_info p {
  font-size: .9rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pCard_bottom { gap: 12px; }

.pCard_price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a2a2a;
}

.revBlock {
  padding: 100px 0 110px;
  background: #fff;
}

.revGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.rCard {
  background: #faf9f7;
  border: 1px solid #e8e5df;
  padding: 36px 32px 32px;
  position: relative;
}

.rCard_stars {
  color: #d4a843;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.rCard_txt {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: normal;
}

.rCard_author {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.rCard_prodimg {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8e5df;
  background: #fff;
}

.rCard_prodimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faqBlock {
  padding: 100px 0;
  background: #faf9f7;
}

.faqList { max-width: 740px; }

.faqItem { border-bottom: 1px solid #e0ded9; }

.faqQ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2a2a2a;
  user-select: none;
}

.faqQ i {
  font-size: 18px;
  color: #8a9a7c;
  transition: transform .3s;
}

.faqItem--open .faqQ i { transform: rotate(45deg); }

.faqA {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faqItem--open .faqA { max-height: 300px; }

.faqA p {
  padding: 0 0 22px;
  color: #666;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.kontaktBlock {
  padding: 100px 0 110px;
  background: #fff;
}

.kontakt_inner {
  gap: 80px;
  align-items: flex-start;
}

.kontakt_left { flex: 0 0 340px; }

.kontakt_meta { margin-top: 30px; }

.kontakt_meta p {
  color: #666;
  font-size: .95rem;
  margin-bottom: 14px;
}

.kontakt_meta i {
  color: #8a9a7c;
  margin-right: 8px;
  width: 18px;
}

.kontakt_right { flex: 1; }

.cForm input,
.cForm textarea {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  background: #faf9f7;
  font-size: 15px;
  color: #2a2a2a;
  transition: border-color .2s;
}

.cForm input:focus,
.cForm textarea:focus {
  outline: none;
  border-color: #8a9a7c;
}

.cForm input::placeholder,
.cForm textarea::placeholder { color: #aaa; }

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

.siteFooter {
  background: #2a2a2a;
  color: #999;
  padding: 60px 0 0;
}

.siteFooter .is-flex {
  gap: 50px;
  flex-wrap: wrap;
}

.fCol {
  flex: 1;
  min-width: 160px;
}

.fCol--brand {
  flex: 1.5;
  padding-right: 30px;
}

.fCol--brand img {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(10);
}

.fCol--brand p {
  font-size: .9rem;
  line-height: 1.6;
  color: #777;
}

.fCol h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #ddd;
  margin: 0 0 18px;
  font-weight: 400;
}

.fCol ul li { margin-bottom: 9px; }
.fCol ul a { color: #888; font-size: .9rem; }
.fCol ul a:hover { color: #ccc; }

.fCol p {
  font-size: .9rem;
  line-height: 1.6;
  color: #777;
  margin: 0 0 8px;
}

.fBottom {
  border-top: 1px solid #3a3a3a;
  margin-top: 50px;
  padding: 18px 0;
  font-size: 13px;
  color: #666;
}

.cartPanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background: #fff;
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .1);
}

.cartPanel.open { transform: translateX(0); }

.cartPanel_head {
  padding: 22px 24px;
  border-bottom: 1px solid #e8e5df;
}

.cartPanel_head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 400;
}

.cartPanel_head h3 i {
  margin-right: 8px;
  color: #8a9a7c;
}

.cartPanel_close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
  padding: 4px;
}

.cartPanel_body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cartEmpty {
  text-align: center;
  padding: 60px 0;
  color: #bbb;
}

.cartEmpty i {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.cartItem {
  padding: 14px 0;
  border-bottom: 1px solid #f0eeea;
  gap: 14px;
  align-items: center;
}

.cartItem img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.cartItem_info {
  flex: 1;
  min-width: 0;
}

.cartItem_name {
  display: block;
  font-size: .88rem;
  color: #2a2a2a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cartItem_pr {
  font-size: .82rem;
  color: #999;
}

.cartItem_qty {
  gap: 8px;
  flex-shrink: 0;
}

.qBtn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: #faf9f7;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.qBtn:hover { background: #e8e5df; }

.cartItem_rm {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  flex-shrink: 0;
}

.cartItem_rm:hover { color: #c45b4a; }

.cartPanel_foot {
  padding: 20px 24px;
  border-top: 1px solid #e8e5df;
}

.cartTotal { margin-bottom: 16px; }
.cartTotal span { color: #666; }

.cartTotal strong {
  font-size: 1.15rem;
  color: #2a2a2a;
}

.cartActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cartOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  z-index: 1050;
}

.cartOverlay.open { display: block; }

.orderModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, .4);
  align-items: center;
  justify-content: center;
}

.orderModal.open { display: flex; }

.orderModal_box {
  background: #fff;
  padding: 40px 36px;
  max-width: 440px;
  width: 90%;
}

.orderModal_box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 400;
}

.orderModal_box p {
  color: #888;
  font-size: .9rem;
  margin-bottom: 22px;
}

.orderModal_box input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  background: #faf9f7;
  font-size: 14px;
  color: #2a2a2a;
}

.orderModal_box input:focus {
  outline: none;
  border-color: #8a9a7c;
}

.orderModal_box input::placeholder { color: #aaa; }

.orderModal_btns {
  gap: 12px;
  margin-top: 8px;
}

.orderModal_btns .btn { flex: 1; }

.tyPopup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, .35);
  align-items: center;
  justify-content: center;
}

.tyPopup.open { display: flex; }

.tyPopup_box {
  background: #fff;
  padding: 50px 40px;
  text-align: center;
  max-width: 380px;
  width: 90%;
}

.tyPopup_box i {
  font-size: 48px;
  color: #5a7a5c;
  display: block;
  margin-bottom: 16px;
}

.tyPopup_box p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 24px;
}

.cookieBar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 960px;
  background: #2a2a2a;
  z-index: 2000;
  border-radius: 6px 6px 0 0;
  padding: 0;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .15);
}

.cookieBar.show { display: block; }

.cookieBar_inner {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cookieBar_txt { flex: 1; }

.cookieBar_txt p {
  color: #bbb;
  font-size: .88rem;
  margin: 0 0 6px;
  line-height: 1.5;
}

.cookieBar_links {
  display: flex;
  gap: 16px;
}

.cookieBar_links a {
  color: #8a9a7c;
  font-size: .82rem;
  text-decoration: underline;
}

.cookieBar_btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cbtn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: .4px;
  transition: all .2s;
}

.cbtn--accept {
  background: #5a7a5c;
  color: #fff;
}

.cbtn--accept:hover { background: #3d5a3f; }

.cbtn--decline {
  background: transparent;
  color: #999;
  border: 1px solid #555;
}

.cbtn--decline:hover {
  color: #ddd;
  border-color: #888;
}

.cbtn--settings {
  background: transparent;
  color: #999;
  border: 1px solid #555;
}

.cbtn--settings:hover {
  color: #ddd;
  border-color: #888;
}

.cookieSettingsPane {
  padding: 0 28px 22px;
  border-top: 1px solid #3a3a3a;
}

.cSetting {
  padding: 14px 0;
  border-bottom: 1px solid #3a3a3a;
}

.cSetting:last-of-type { border: none; }
.cSetting label { cursor: pointer; }

.cSetting label span {
  color: #ddd;
  font-size: .9rem;
}

.cSetting input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #5a7a5c;
}

.cSetting p {
  color: #777;
  font-size: .82rem;
  margin: 6px 0 0;
}

.cookieSettingsPane .cbtn { margin-top: 10px; }

.legalPage {
  padding: 90px 0 100px;
  background: #faf9f7;
}

.legalPage .secHead { margin-bottom: 40px; }
.legalContent { max-width: 720px; }

.legalContent h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: #2a2a2a;
  margin: 36px 0 12px;
  font-weight: 400;
}

.legalContent h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2a2a2a;
  margin: 24px 0 8px;
}

.legalContent p {
  color: #555;
  font-size: .95rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.legalContent a {
  color: #5a7a5c;
  text-decoration: underline;
}

.artHero {
  padding: 90px 0 50px;
  background: #faf9f7;
}

.artHero_h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: #2a2a2a;
  margin: 0;
  line-height: 1.15;
  max-width: 600px;
}

.artSection {
  padding: 60px 0 70px;
  background: #faf9f7;
}

.artSection--alt { background: #f3f1ed; }

.artRow {
  gap: 60px;
  align-items: center;
}

.artRow--reverse { flex-direction: row-reverse; }

.artRow_img {
  flex: 0 0 45%;
  max-width: 45%;
}

.artRow_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artRow_txt { flex: 1; }

.artRow_txt h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: #2a2a2a;
  margin: 0 0 20px;
  font-weight: 400;
}

.artRow_txt p {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

@media (max-width: 1024px) {
  .hero_inner { gap: 50px; }
  .hero_h1 { font-size: 2.8rem; }
  .teamGrid { gap: 24px; }
  .prodGrid { gap: 24px; }
  .revGrid { gap: 24px; }
  .kontakt_inner { gap: 50px; }
}

@media (max-width: 768px) {
  .topbar_phone { display: none; }
  .mobMenu { display: flex; }
  .siteNav { display: none; }
  .siteNav.navOpen { display: block; }
  .navUl { flex-direction: column; }
  .navUl_li a { padding: 14px 0; border-bottom: 1px solid #e8e5df; }

  .hero { padding: 60px 0 70px; }
  .hero_inner { flex-direction: column; gap: 40px; }
  .hero_txt { max-width: 100%; }
  .hero_h1 { font-size: 2.5rem; }
  .hero_p { max-width: 100%; }

  .artikel { margin: 70px 0; }
  .artikel_wrap { padding: 50px 0; }
  .artikel_h2 { font-size: 2rem; }

  .teamBlock { padding: 70px 0 60px; }
  .teamGrid { grid-template-columns: 1fr; gap: 20px; }
  .secHead { font-size: 2rem; margin-bottom: 36px; }

  .prodBlock { padding: 70px 0 60px; }
  .prodGrid { grid-template-columns: 1fr; gap: 20px; }

  .revBlock { padding: 60px 0 70px; }
  .revGrid { grid-template-columns: 1fr; gap: 18px; }

  .faqBlock { padding: 60px 0; }

  .kontaktBlock { padding: 60px 0 70px; }
  .kontakt_inner { flex-direction: column; gap: 30px; }
  .kontakt_left { flex: none; width: 100%; }

  .cartPanel { width: 100%; }

  .cookieBar { width: 100%; border-radius: 0; }
  .cookieBar_inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookieBar_btns { width: 100%; justify-content: flex-end; }

  .siteFooter .is-flex { gap: 30px; }
  .fCol { min-width: 130px; }
  .fCol--brand { flex: 0 0 100%; }

  .artHero { padding: 60px 0 30px; }
  .artHero_h1 { font-size: 2rem; }
  .artRow,
  .artRow--reverse { flex-direction: column; gap: 28px; }
  .artRow_img { flex: none; max-width: 100%; margin-bottom: 24px; }
  .artSection { padding: 40px 0 50px; }
}
