﻿:root{
  --bg-page:#C6D3CD;
  --green-dark:#054C37;
  --green-menu:#047F52;
  --green-heading:#2F9E71;
  --green-active:#B8E7C3;
  --text:#222;
  --line:#d8d8d8;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg-page);
  color:var(--text);
}

.language-chooser{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
}
.language-chooser__panel{
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
}
.language-chooser__links{
  margin-top:18px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.language-chooser__link{
  display:inline-flex;
  padding:10px 20px;
  border-radius:999px;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:600;
  letter-spacing:.4px;
  background:var(--green-active);
  color:#054C37;
  border:1px solid rgba(5,76,55,.2);
}
.language-chooser__link--cs{background:#2F9E71; color:#fff;}
.language-chooser__link--en{background:#054C37; color:#fff;}

.page{
  width:min(1100px, calc(100% - 24px));
  margin:16px auto;
  background:#fff;
  border-radius:12px;
  overflow:visible;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.scroll-indicator {
  position: relative;
  height: 5px;
  width: 0;
  background: linear-gradient(90deg, var(--green-menu), var(--green-active));
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: #fff;
}

.sitebar{
  height:34px;
  background:var(--green-dark);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 14px;
}

.sitebar__flags a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:6px;
  color:#f3f7f5;
  text-decoration:none;
  font-size:12px;
  line-height:1;
  width:auto;
  height:auto;
  border:none;
  padding:0;
}

.header{
  display:flex;
  align-items:center;
  gap:28px;
  padding:10px 18px;
  box-shadow:none;
  background:#fff;
}

.brand{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  height:84px;
  width:auto;
  display:block;
}

.nav--desktop{
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:18px;
}

.nav--desktop > a,
.nav-parent{
  text-decoration:none;
  color:var(--green-menu);
  text-transform:uppercase;
  font-size:14px;
  padding:14px 10px;
  letter-spacing:.2px;
  display:block;
  transition:color .18s ease, background-color .18s ease, text-decoration-color .18s ease;
}

.nav--desktop > a:hover,
.nav-parent:hover{
  color:#035a3a;
  text-decoration:underline;
}

.nav--desktop > a.active,
.nav-item.has-submenu.active .nav-parent{
  background:linear-gradient(180deg, #98dda8 0%, #d9f3df 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}

.nav-item {
  position: relative;
}

.nav-parent {
  cursor: default;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 16px rgba(0,0,0,.14);
  display: none;
  z-index: 1200;
}

.nav-item.has-submenu:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--green-menu);
  font-size: 13px;
  text-transform: none;
  border-top: 1px solid #f1f1f1;
}

.submenu a:first-child {
  border-top: none;
}

.submenu a:hover {
  background: #f6fbf8;
}

.submenu a.active {
  background: var(--green-active);
}

.nav--mobile{display:none; margin-left:auto}

.nav--mobile summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:6px;
  user-select:none;
}

.nav--mobile summary::-webkit-details-marker{display:none}

.burger{
  width:20px;
  height:14px;
  position:relative;
  display:inline-block;
}

.burger::before,
.burger::after,
.burger span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:var(--green-menu);
  border-radius:2px;
}

.burger::before{top:0}
.burger::after{bottom:0}
.burger span{top:6px}

.burger__text{
  font-size:13px;
  text-transform:uppercase;
  color:var(--green-menu);
}

.nav__panel{
  margin-top:10px;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 18px rgba(0,0,0,.14);
}

.nav__panel a{
  display:block;
  padding:12px 14px;
  text-decoration:none;
  color:var(--green-menu);
  text-transform:uppercase;
  font-size:13px;
  border-top:1px solid #f1f1f1;
}

.nav__panel a:first-child{border-top:none}
.nav__panel a:hover{background:#f6fbf8}
.nav__panel a.active{background:var(--green-active)}

.mobile-submenu summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  color: var(--green-menu);
  text-transform: uppercase;
  font-size: 13px;
  border-top: 1px solid #f1f1f1;
}

.mobile-submenu summary::-webkit-details-marker {
  display: none;
}

.mobile-submenu-links a {
  padding-left: 24px;
  text-transform: none;
}

.divider{
  border-top:1px solid var(--line);
  box-shadow:none;
}

.page-content {
  padding: 24px 16px 56px;
}

.canvas {
  max-width: 880px;
  min-height: 290px;
  margin: 0 auto;
  border-radius: 6px;
  padding: 0;
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.24);
}

.gallery-placeholder {
  position: relative;
  background: #595959;
  overflow: hidden;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-control {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.gallery-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.gallery-dots span.active {
  background: rgba(0, 0, 0, 0.6);
}

.main {
  max-width: 880px;
  min-height: auto;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  display: block;
  text-align: center;
  padding: 28px 22px 0;
  box-shadow: none;
}

.main h2 {
  margin: 0 auto 34px;
  color: var(--green-heading);
  max-width: 820px;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 500;
  text-align: left;
}

.responsible-care-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 0 10px;
}

.main p {
  margin: 0;
  text-align: left;
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.65;
  font-size: 14px;
}

.main p + p {
  margin-top: 16px;
}

.home-partners {
  margin: 34px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 26px;
}

.home-partners a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 92px;
  padding: 8px;
}

.home-partners img {
  max-width: 100%;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-content.no-gallery .main {
  margin-top: 0;
}

.company-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.company-logo {
  max-width: 260px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.rc-content {
  border-top: none;
  padding-top: 0;
}

.rc-title {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: #005a56;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: left;
}

.rc-intro {
  overflow: auto;
  margin-bottom: 16px;
}

.rc-intro .responsible-care-logo {
  float: left;
  width: 110px;
  margin: 4px 18px 10px 0;
  border: 1px solid #9a9a9a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rc-subtitle {
  margin: 16px 0 8px;
  color: #1f3340;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.rc-content p {
  font-size: 14px;
  line-height: 1.48;
}

.rc-emphasis {
  margin-top: 26px;
  margin-bottom: 26px;
  font-weight: 700;
}

.ethics-content {
  border-top: none;
  padding-top: 0;
  text-align: left;
}

.ethics-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: #005a56;
  font-size: 26px;
  font-weight: 500;
  text-transform: none;
  text-align: left;
}

.ethics-subtitle {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 500;
}

.ethics-content h4 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.ethics-content p,
.ethics-content li {
  font-size: 14px;
  line-height: 1.55;
}

.ethics-content ol {
  margin: 0 0 12px 18px;
  padding: 0;
}

.ethics-content li + li {
  margin-top: 6px;
}

.ethics-sublist {
  margin-top: 8px;
}

.ethics-note {
  font-style: italic;
  margin: 8px 0;
}

.info-content {
  border-top: none;
  margin-top: 0;
  text-align: left;
}

.info-title {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: #005a56;
  font-size: 24px;
  text-transform: none;
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #ececec;
}

.doc-item:first-child {
  border-top: none;
}

.doc-name {
  flex: 1;
  font-size: 14px;
}

.doc-link {
  text-decoration: none;
  color: #fff;
  background: var(--green-menu);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
}

.doc-link:hover {
  background: #035a3a;
}

.doc-preview {
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.statutes-content h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  color: #1f3340;
}

.statutes-content p,
.statutes-content li {
  font-size: 14px;
  line-height: 1.55;
}

.statutes-content ul,
.statutes-content ol {
  margin: 0 0 12px 18px;
  padding: 0;
}

.statutes-content li + li {
  margin-top: 6px;
}

.contacts-content {
  border-top: none;
  margin-top: 0;
  text-align: left;
  padding: 0;
}

.contacts-content .info-title {
  font-size: 30px;
  margin-bottom: 14px;
}

.contact-address {
  margin-bottom: 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid #dde3df;
}

.contact-address p {
  margin: 0 0 8px;
}

.contacts-heading {
  margin: 26px 0 12px;
  color: #1f3340;
  font-size: 24px;
  font-weight: 600;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.contacts-grid--single {
  grid-template-columns: minmax(0, 220px);
}

.contact-card {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-card img {
  width: 100%;
  max-width: 170px;
  height: 200px;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  border: none;
  box-shadow: none;
  margin: 0 0 10px;
}

.contact-meta {
  border: none;
  border-top: 1px solid #e3e7e5;
  border-bottom: 1px solid #e3e7e5;
  padding: 8px 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 4px;
}

.contact-card h4 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
}

.contact-company {
  margin: 0 0 6px;
  font-size: 12px;
  color: #4b5f56;
}

.contact-role {
  margin: 0 0 6px;
  font-size: 12px;
  min-height: 18px;
}

.contact-card p {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.45;
}

.contacts-content > p {
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
  margin-bottom: 14px;
}

.contact-address p {
  font-size: 14px;
  line-height: 1.45;
}

.contacts-list {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
}

.contacts-list li {
  margin-bottom: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #ebefed;
  font-size: 14px;
  line-height: 1.5;
}

.contacts-content a {
  color: #2e9b2f;
  text-decoration: none;
}

.contacts-content a:hover {
  text-decoration: underline;
}

.email-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.email-text {
  color: #2e9b2f;
}

.copy-email-btn {
  border: none;
  background: #fff;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.copy-email-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--green-menu);
}

.copy-email-btn:hover {
  background: #f0f5f2;
}

.copy-toast {
  position: fixed;
  right: 18px;
  bottom: 62px;
  background: #0a5f43;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
  z-index: 2000;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.spacer {
  height: 85vh;
}

.footer{
  margin-top:30px;
  border-top:none;
}

.footer__bar{
  background:var(--green-dark);
  color:#f3f7f5;
  text-align:center;
  padding:14px 10px;
  font-size:12px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: #fff;
  background: var(--green-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #033a2a;
}

@media (max-width: 900px){
  .nav--desktop{display:none}
  .nav--mobile{display:block}
  .header{padding:12px 14px}
  .brand img{height:62px}
}

@media (max-width: 640px){
  .canvas {
    min-height: 230px;
  }

  .main {
    margin-top: 24px;
    padding: 20px 12px 0;
  }

  .main h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .main p {
    font-size: 17px;
  }

  .home-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
  }

  .rc-title {
    font-size: 17px;
  }

  .rc-subtitle {
    font-size: 17px;
  }

  .rc-content p {
    font-size: 14px;
  }

  .rc-intro .responsible-care-logo {
    float: none;
    margin: 4px 0 12px;
  }

  .ethics-title {
    font-size: 22px;
  }

  .ethics-subtitle,
  .ethics-content h4 {
    font-size: 16px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-content .info-title {
    font-size: 26px;
  }

  .contacts-heading {
    font-size: 24px;
  }

  .contact-card img {
    max-width: 160px;
    height: 188px;
  }

  .page-content {
    padding-top: 24px;
  }
}
.copy-hint {
  display: block;
  font-size: 11px;
  color: #6b7c73;
  margin-top: 6px;
}
