﻿@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2f3437;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.72;
  background: #f6f5f1;
}

a {
  color: #8b1e24;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 8px 12px;
  color: #fff;
  background: #8b1e24;
  z-index: 10;
}

.skip-link:focus {
  left: 8px;
}

/* ===== CUSTOM HEADER / HERO IMAGE ===== */

.site-header {
  position: relative;
}

.custom-header {
  position: relative;
  overflow: hidden;
  background: #1a1008;
}

.custom-header-media {
  width: 100%;
  line-height: 0;
}

.header-img {
  display: block;
  width: 100%;
  height: clamp(280px, 45vw, 600px);
  object-fit: cover;
  object-position: center 30%;
}

.site-branding {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 0;
  backdrop-filter: blur(2px);
}

.site-branding-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.custom-logo-link {
  flex-shrink: 0;
  display: block;
}

.custom-logo {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.site-branding-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  color: #1f2428;
  line-height: 1.1;
}

.site-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #6d7377;
  margin-top: 4px;
}

/* ===== NAVIGATION ===== */

.navigation-top {
  background: #fff;
  border-top: 5px solid #8b1e24;
  box-shadow: 0 1px 10px rgba(42, 38, 32, 0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}

.navigation-top.is-sticky {
  box-shadow: 0 2px 16px rgba(42, 38, 32, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 54px;
  position: relative;
}

.nav {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav > a.nav-item {
  display: flex;
  align-items: center;
  padding: 16px 13px;
  color: #3f4447;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}

.nav-item > a:hover,
.nav > a.nav-item:hover {
  color: #8b1e24;
  text-decoration: none;
}

/* Dropdown */
.has-submenu {
  position: relative;
}

.has-submenu > a::after {
  content: ' \25be';
  font-size: 10px;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid #8b1e24;
  box-shadow: 0 4px 16px rgba(42, 38, 32, 0.14);
  min-width: 220px;
  z-index: 300;
}

.has-submenu:hover .sub-menu,
.has-submenu:focus-within .sub-menu {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #3f4447;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu li a:hover {
  color: #8b1e24;
  background: #f6f5f1;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #3f4447;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== PANEL SECTIONS (image + content) ===== */

.panel-section {
  /* No extra wrapper styles needed */
}

.panel-image {
  background-color: #111;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
}

.panel-image-spacer {
  padding-top: 35.15%; /* 703 / 2000 = 35.15% â€“ matches original image ratio */
}

.panel-content {
  background: #fff;
  padding: 62px 0;
}

.panel-content h2 {
  margin: 0 0 16px;
  color: #222;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

/* ===== SECTIONS ===== */

.section {
  padding: 62px 0;
  background: #fff;
}

.section.alt {
  background: #f6f5f1;
}

.section h2,
.panel-content h2 {
  margin: 0 0 16px;
  color: #222;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 18px;
}

.lead {
  max-width: 820px;
  font-size: 18px;
}

/* Strategy list with large bullets */
.strategy-list {
  padding-left: 0;
  list-style: none;
}

.strategy-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid #e8e4de;
}

.strategy-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #8b1e24;
  font-size: 20px;
  line-height: 1.5;
}

/* ===== ZARZÄ„D ===== */

.zarzad-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: flex-end;
}

.zarzad-card {
  border-top: 4px solid #8b1e24;
  background: #fff;
  box-shadow: 0 1px 12px rgba(42, 38, 32, 0.08);
  min-width: 260px;
}

.zarzad-card-body {
  padding: 28px 32px;
  text-align: center;
}

.zarzad-regards {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  color: #3f4447;
}

.zarzad-role {
  margin: 0 0 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b1e24;
}

.zarzad-name {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 400;
  color: #1f2428;
}

.zarzad-cred {
  margin: 2px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #6d7377;
}

.zarzad-contact {
  margin: 4px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

/* ===== CONTACT ===== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.panel {
  padding: 28px;
  border-top: 4px solid #8b1e24;
  background: #fff;
  box-shadow: 0 1px 12px rgba(42, 38, 32, 0.08);
}

.panel p {
  margin-top: 0;
}

.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #94b49b;
  background: #eef8f0;
  font-family: Arial, Helvetica, sans-serif;
}

.form-message.error {
  border-color: #d6a0a0;
  background: #fff0f0;
}

.contact-form label {
  display: block;
  margin: 13px 0 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc9bf;
  padding: 10px;
  font: 16px Arial, Helvetica, sans-serif;
  background: #fff;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.check-row input {
  width: auto;
  margin-top: 5px;
}

.rodo-note {
  margin: 10px 0 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #6d7377;
}

.captcha-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.captcha-image {
  width: 88px;
  height: 30px;
  border: 1px solid #cfc9bf;
  background: #fff;
}

.captcha-input {
  max-width: 130px;
}

.button {
  margin-top: 18px;
  border: 0;
  padding: 12px 28px;
  color: #fff;
  background: #8b1e24;
  font: 700 15px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.button:hover {
  background: #67151a;
}

/* ===== FOOTER ===== */

.footer {
  padding: 24px 0;
  color: #ece5db;
  background: #2d2a28;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 860px) {
  .panel-image {
    background-attachment: scroll; /* disable fixed parallax on mobile */
  }

  .panel-image-spacer {
    padding-top: 50%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid #e8e4de;
    padding-bottom: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-item,
  .nav > a.nav-item {
    width: 100%;
  }

  .nav-item > a,
  .nav > a.nav-item {
    padding: 14px 16px;
    border-bottom: 1px solid #f0ece6;
  }

  .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #8b1e24;
    margin-left: 16px;
    background: transparent;
    padding: 0;
  }

  .sub-menu.is-open {
    display: block;
  }

  .sub-menu li a {
    padding: 10px 16px;
    font-size: 12px;
    color: #6d7377;
    border-bottom: 1px solid #f0ece6;
  }

  .has-submenu > a::after {
    content: ' \25b8';
    float: right;
    transition: transform 0.2s;
  }

  .has-submenu.is-open > a::after {
    content: ' \25be';
  }

  .nav-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 20px);
  }

  .section {
    padding: 42px 0;
  }

  .panel-content {
    padding: 42px 0;
  }

  .panel,
  .zarzad-card-body {
    padding: 20px;
  }

  .custom-logo {
    width: 70px;
    height: 70px;
  }

  .site-title {
    font-size: 22px;
  }

  .site-desc {
    font-size: 12px;
  }
}

/* ===== PRIVACY POLICY PAGE ===== */

.pp-hero {
  padding: 46px 0 34px;
  background: #f6f5f1;
  border-bottom: 1px solid #e8e4de;
}

.pp-eyebrow {
  margin: 0 0 8px;
  color: #8b1e24;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pp-hero h1 {
  margin: 0 0 8px;
  color: #222;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}

.pp-hero p {
  margin: 0;
  color: #6d7377;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.pp-body h2 {
  margin: 38px 0 12px;
  padding-left: 14px;
  border-left: 4px solid #8b1e24;
  font-size: 21px;
  font-weight: 400;
}

.pp-body h2:first-child {
  margin-top: 0;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.pp-table th,
.pp-table td {
  padding: 10px 12px;
  border: 1px solid #e8e4de;
  text-align: left;
  vertical-align: top;
}

.pp-table th {
  background: #f6f5f1;
  color: #222;
}

.info-box {
  padding: 18px 20px;
  border-left: 4px solid #8b1e24;
  background: #f6f5f1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

.info-box strong {
  display: block;
  margin-bottom: 4px;
  color: #222;
}

.placeholder {
  color: #8b1e24;
  font-weight: 700;
}

/* ===== COOKIE BAR ===== */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 24px;
  color: #ece5db;
  background: #2d2a28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  border-top: 3px solid #8b1e24;
}

.cookie-bar p {
  margin: 0;
  max-width: 820px;
}

.cookie-bar a {
  color: #fff;
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font: 700 14px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #8b1e24;
  border-color: #8b1e24;
}

.cookie-btn:hover {
  color: #2d2a28;
  background: #fff;
  border-color: #fff;
}

.cookie-bar[hidden] {
  display: none;
}

