:root {
  --c-blue-dark: #0e4d94;
  --c-blue-mid: #003366;
  --c-yellow: #ffc72c;
  --c-yellow-light: #ffd54f;
  --c-slate: #334155;
  --c-white: #ffffff;
  --c-bg-off: #f8fafc;

  --font-main:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif-condensed, sans-serif;
  --radius-sq: 16px;
  --shadow-soft: 0 10px 30px -10px rgba(0, 40, 85, 0.15);
  --space-unit: 10px;
  --max-w: 1410px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-stretch: condensed;
  color: var(--c-slate);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.container-custom,
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 calc(var(--space-unit) * 2);
  width: 100%;
}

/* Header */
.site-header {
  background-color: var(--c-white);
  border-bottom: 4px solid var(--c-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  padding: calc(var(--space-unit) * 1.5) 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-unit);
}

.brand-logo svg {
  height: 40px;
  width: auto;
  color: var(--c-blue-dark);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-blue-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.nav-list {
  display: flex;
  gap: calc(var(--space-unit) * 3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 700;
  color: var(--c-slate);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--c-blue-mid);
  text-decoration: underline;
  text-decoration-color: var(--c-yellow);
  text-decoration-thickness: 3px;
}

.nav-link.activ_link {
  color: var(--c-blue-mid);
  text-decoration: underline;
  text-decoration-color: var(--c-yellow);
  text-decoration-thickness: 3px;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--c-blue-dark);
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.icon-menu {
  width: 20px;
  height: 20px;
  stroke: var(--c-blue-dark);
  stroke-width: 2;
  fill: none;
}

/* Table responsive styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@media (max-width: 768px) {
  .table-responsive {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Footer */
.site-footer {
  background-color: var(--c-blue-dark);
  color: var(--c-white);
  padding: calc(var(--space-unit) * 8) 0 calc(var(--space-unit) * 3);
  margin-top: auto;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: calc(var(--space-unit) * 4);
  margin-bottom: calc(var(--space-unit) * 6);
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-unit);
  margin-bottom: var(--space-unit);
}

.footer-logo svg {
  height: 32px;
  width: auto;
  color: var(--c-yellow);
}

.brand-name-footer {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-white);
}

.footer-summary {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 90%;
  line-height: 1.5;
}

.footer-tagline-box {
  border-left: 3px solid var(--c-yellow);
  padding-left: calc(var(--space-unit) * 1.5);
  margin-top: var(--space-unit);
}

.tagline-text {
  font-weight: 700;
  color: var(--c-yellow);
  font-style: italic;
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-heading {
  color: var(--c-yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0 0 var(--space-unit) 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 1.2);
}

.footer-links a {
  color: var(--c-white);
  font-weight: 600;
  opacity: 0.8;
  transition: all 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--c-yellow);
  padding-left: 5px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-unit) * 2);
  font-style: normal;
}

.contact-item {
  display: flex;
  gap: calc(var(--space-unit) * 1.5);
  align-items: flex-start;
  color: var(--c-white);
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-item:hover {
  opacity: 1;
  color: var(--c-yellow);
}

.contact-item .icon {
  width: 20px;
  height: 20px;
  stroke: var(--c-yellow);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: calc(var(--space-unit) * 3);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Components */
.btn-cta {
  background-color: var(--c-yellow);
  color: var(--c-blue-dark);
  padding: 10px 24px;
  border-radius: var(--radius-sq);
  font-weight: 800;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-block,
  .contact-block {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    position: relative;
    z-index: 10;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-white);
    border-bottom: 2px solid var(--c-yellow);
    padding: 20px;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-block,
  .contact-block,
  .nav-block,
  .legal-block {
    grid-column: span 1;
  }

  .footer-summary {
    max-width: 100%;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
.py-8 {
  padding-top: 32px;
  padding-bottom: 32px;
}
.pl-4 {
  padding-left: 6px;
}
