﻿:root {
  --primary: #739f2f;
  --primary-soft: #8db057;
  --logo: #213017;
  --logo-2: #2e4422;
  --bg: #f3f5ef;
  --surface: #ffffff;
  --text: #253021;
  --text-soft: #5d6a56;
  --line: #d9e1cf;
  --header-offset: 126px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  padding-top: var(--header-offset);
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  transition: transform 260ms ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.utility-bar {
  background: #16220f;
  color: #d9e8c7;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 1rem;
}

.utility-row p {
  margin: 0;
}

.utility-links {
  display: flex;
  gap: 1.1rem;
}

.utility-links a {
  text-decoration: none;
}

.utility-links a:hover {
  color: #ffffff;
}

.main-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--surface);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  display: block;
  height: 42px;
  width: auto;
}

.brand-name {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 800;
}

.brand-subtitle {
  margin: 0;
  color: #697666;
  font-size: 0.86rem;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.3rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: #384434;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.nav-links a:hover {
  color: var(--logo);
  border-color: var(--primary);
}

.nav-links a.is-active {
  color: var(--logo);
  border-color: var(--primary);
}

.nav-cta {
  text-decoration: none;
  background: var(--logo);
  color: #eef7e0;
  padding: 0.62rem 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.nav-cta:hover {
  background: var(--logo-2);
}

.hero {
  position: relative;
  background:
    linear-gradient(0deg, rgba(33, 48, 23, 0.34), rgba(33, 48, 23, 0.34)),
    linear-gradient(125deg, rgba(49, 71, 42, 0.26) 10%, rgba(36, 53, 27, 0.38) 60%),
    url("../img/hero/r-atena-hero.jpg") center/cover no-repeat;
  min-height: 560px;
  color: #f0f7e7;
  border-top: 1px solid #dce4d1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 48%, rgba(255, 255, 255, 0.08) 48% 50%, transparent 50%),
    linear-gradient(128deg, transparent 58%, rgba(255, 255, 255, 0.05) 58% 60%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.3rem 0 7rem;
  display: grid;
  grid-template-columns: 1.1fr 0.62fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0;
  color: #dceac7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.82rem;
}

h1 {
  margin: 0.45rem 0 0.7rem;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.hero-text {
  margin: 0;
  max-width: 58ch;
  color: #d3e0c5;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta {
  border: 0;
  border-radius: 4px;
  background: var(--primary);
  color: #1e2c14;
  font-weight: 800;
  padding: 0.74rem 1.2rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cta:hover,
.nav-cta:hover,
.service-toggle:hover,
.contact-form button:hover {
  transform: scale(1.03);
}

.accordion-button:hover {
  transform: scale(1.008);
}

.has-reveal .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(1px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  body.is-subpage-enter .page-hero .container,
  body.is-subpage-enter main > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.hero-actions a {
  color: #f0f7e8;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 1.05rem;
}

.hero-panel h3 {
  margin: 0 0 0.3rem;
  color: #ecf5df;
}

.hero-panel p {
  margin: 0;
  color: #d8e4c7;
}

.hero-panel ul {
  margin: 0.7rem 0 0.8rem;
  padding-left: 1rem;
  color: #dce9cd;
}

.hero-panel a {
  color: #edf7de;
  font-weight: 700;
}

.section-overlap {
  margin-top: -48px;
}

.service-strip {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: start;
  min-height: 0;
  gap: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.service-card {
  flex: 1 1 0;
  position: relative;
  min-height: 240px;
  padding: 1.1rem 1.1rem 1.4rem;
  border-right: 1px solid var(--line);
  transition: background-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:last-child {
  border-right: 0;
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
  min-height: 78px;
}

.service-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #e8efe0;
  color: #2f4a1f;
  flex: 0 0 30px;
}

.service-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.service-card h3 {
  margin: 0;
  color: var(--logo);
}

.service-card p {
  margin: 0;
  color: var(--text-soft);
}

.service-summary {
  margin-top: 0.1rem;
  min-height: 3.2em;
  transition: opacity 180ms ease;
}

.service-toggle {
  margin-top: auto;
  padding: 0.55rem 0 0;
  border: 0;
  background: transparent;
  color: #3f5730;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.service-more {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  top: 6.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-more p {
  margin: 0;
  font-size: 0.95rem;
}

.service-card.is-expanded {
  box-shadow: inset 0 0 0 1px rgba(90, 125, 66, 0.22);
}

.service-card.is-expanded .service-more {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-card.is-expanded .service-summary {
  opacity: 0;
}

.service-card.active {
  background: var(--primary);
}

.service-card.active h3,
.service-card.active p {
  color: #1f2b15;
}

.service-card.active .service-icon {
  background: rgba(255, 255, 255, 0.7);
  color: #1f2b15;
}

.service-card.active .service-toggle {
  color: #1f2b15;
}

.section-space {
  padding: 4.7rem 0;
}

.section-muted {
  background: #eef2e8;
  border-top: 1px solid #dde6d2;
  border-bottom: 1px solid #dde6d2;
}

.section-title p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5d7251;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-title h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: #213017;
}

.section-title.center {
  text-align: center;
}

.about-layout {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-visual {
  min-height: 280px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(135deg, #6d825b, #2e4422);
  border-radius: 4px;
  position: relative;
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-visual::before {
  width: 60%;
  height: 42%;
  top: 14%;
  left: 14%;
}

.about-visual::after {
  width: 42%;
  height: 36%;
  bottom: 12%;
  right: 11%;
}

.about-visual.is-photo {
  background:
    linear-gradient(0deg, rgba(33, 48, 23, 0.3), rgba(33, 48, 23, 0.3)),
    url("../img/sestanek-atena.jpg") center/cover no-repeat;
  overflow: hidden;
}

.about-visual.is-photo::before,
.about-visual.is-photo::after {
  border: 0;
  inset: 0;
  width: auto;
  height: auto;
}

.about-visual.is-photo::before {
  background:
    linear-gradient(128deg, transparent 48%, rgba(255, 255, 255, 0.1) 48% 50%, transparent 50%),
    linear-gradient(128deg, transparent 58%, rgba(255, 255, 255, 0.07) 58% 60%, transparent 60%);
}

.about-visual.is-photo::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.image-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #eff8e2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.2rem;
}

.about-text h3 {
  margin: 0 0 0.5rem;
  color: var(--logo);
}

.about-text p {
  margin: 0;
  color: var(--text-soft);
}

.about-text ul {
  margin: 0.8rem 0 0;
  padding-left: 1.05rem;
  color: #4f5d49;
}

.page-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.page-card {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--logo);
  padding: 1rem;
  border-radius: 4px;
}

.page-card h3 {
  margin: 0 0 0.35rem;
  color: var(--logo);
}

.page-card p {
  margin: 0;
  color: var(--text-soft);
}

.page-card:hover {
  border-left-color: var(--primary);
}

.faq-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.faq-accordion {
  margin-top: 1.35rem;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.7rem;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  color: var(--logo);
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #1f2b15;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(143, 190, 0, 0.22);
}

.faq-accordion .accordion-body {
  color: var(--text-soft);
  line-height: 1.6;
  padding: 0.95rem 1.15rem 1.2rem;
}

.links-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.links-grid a {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 4px;
}

.links-grid a:hover {
  border-color: #b8cb9c;
}

.links-grid h3 {
  margin: 0 0 0.3rem;
  color: var(--logo);
}

.links-grid p {
  margin: 0;
  color: var(--text-soft);
}

.links-tabs {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.links-nav {
  border-right: 1px solid #d5ddd0;
  padding-right: 1.1rem;
  gap: 0.15rem;
}

.links-nav .nav-link {
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2f3a2b;
  font-weight: 700;
  padding: 0.85rem 0.25rem;
  border-right: 2px solid transparent;
}

.links-nav .nav-link:hover {
  color: var(--logo);
}

.links-nav .nav-link.active {
  color: var(--logo);
  background: transparent;
  border-right-color: var(--primary);
}

.links-content {
  min-height: 210px;
  padding: 0.2rem 0 0.2rem 0.4rem;
}

.links-content .tab-pane h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1.1;
  color: #131a14;
  font-weight: 500;
}

.links-content .tab-pane p {
  margin: 1rem 0 0;
  font-size: 1.04rem;
  color: #404a3f;
  max-width: 72ch;
}

.links-content .tab-pane a {
  margin-top: 1rem;
  display: inline-flex;
  text-decoration: none;
  color: var(--logo);
  font-weight: 700;
  border-bottom: 1px solid #9eb38d;
}

.links-country-note {
  margin-top: 1rem;
  margin-bottom: 1.1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c9d9b7;
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  background:
    linear-gradient(0deg, rgba(143, 190, 0, 0.06), rgba(143, 190, 0, 0.06)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2) 0 8px,
      rgba(255, 255, 255, 0.05) 8px 18px
    );
}

.links-country-note p {
  margin: 0;
  color: #314126;
  line-height: 1.5;
}

.timeline {
  background: #213017;
  color: #edf5e3;
  padding: 4.7rem 0;
}

.section-title.light p {
  color: #cadac1;
}

.section-title.light h2 {
  color: #f2f9e7;
}

.timeline-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.timeline-grid article {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.timeline-item-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.timeline-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(190, 222, 106, 0.16);
  color: #d9ee9b;
  flex: 0 0 30px;
}

.timeline-step-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


.timeline-grid h3 {
  margin: 0 0 0.35rem;
  color: #bede6a;
}

.timeline-grid p {
  margin: 0;
  color: #d9e8c3;
}

.contact {
  padding: 4.7rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.contact h2 {
  margin: 0.3rem 0 0.6rem;
  color: var(--logo);
}

.contact p {
  margin: 0;
  color: var(--text-soft);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 4px;
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  display: grid;
  gap: 0.28rem;
  color: #465740;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #cfdabf;
  border-radius: 2px;
  padding: 0.6rem 0.65rem;
  font: inherit;
}

.contact-form button {
  border: 0;
  border-radius: 2px;
  background: var(--logo);
  color: #e9f4d9;
  font-weight: 700;
  padding: 0.7rem 0.8rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: #2f4522;
}

.contact-note {
  margin: 0.2rem 0 0;
  padding: 0.55rem 0.65rem;
  border-left: 3px solid #9fbe4f;
  background: #f2f7ea;
  color: #44563b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.site-footer {
  background: #17220f;
  color: #d8e4c8;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 2rem 0 1.3rem;
}

.footer-grid h3 {
  margin: 0 0 0.35rem;
  color: #f3f9e9;
}

.footer-grid p {
  margin: 0.2rem 0;
}

.footer-grid a {
  display: block;
  margin: 0.22rem 0;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #f0f9de;
}

.footer-privacy {
  border: 1px solid rgba(190, 222, 106, 0.35);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 0.75rem;
}

.footer-privacy p {
  margin: 0.25rem 0 0.5rem;
  color: #cfe0be;
  font-size: 0.9rem;
}

.footer-privacy-link {
  display: inline-block;
  margin-top: 0.2rem;
  color: #e8f5d1;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(190, 222, 106, 0.55);
}

.copy {
  margin: 0;
  text-align: center;
  padding: 0.8rem 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #c5d6ad;
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(26, 41, 18, 0.8), rgba(26, 41, 18, 0.8)),
    url("../img/hero/r-atena-hero.jpg") center/cover no-repeat;
  color: #f2f8e9;
  padding: 3.5rem 0 3.8rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0 12px,
      transparent 12px 34px
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.06) 42%,
      transparent 70%
    );
  opacity: 0.45;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
}

.page-hero p {
  margin: 0.6rem 0 0;
  color: #d8e6c6;
  max-width: 70ch;
}

body.is-subpage-enter .page-hero .container,
body.is-subpage-enter main > * {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(1px);
}

body.is-subpage-enter.is-subpage-visible .page-hero .container,
body.is-subpage-enter.is-subpage-visible main > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

body.is-subpage-enter.is-subpage-visible main > *:nth-child(1) {
  transition-delay: 60ms;
}

body.is-subpage-enter.is-subpage-visible main > *:nth-child(2) {
  transition-delay: 140ms;
}

body.is-subpage-enter.is-subpage-visible main > *:nth-child(3) {
  transition-delay: 220ms;
}

body.is-subpage-enter.is-subpage-visible main > *:nth-child(4) {
  transition-delay: 300ms;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem;
}

.did-you-know {
  min-height: 140px;
  display: grid;
  align-content: center;
}

.did-you-know-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.did-you-know-label {
  margin: 0;
  color: #1f2d16;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  font-size: 0.82rem;
}

.did-you-know-indicator {
  --progress: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-block;
  position: relative;
  background: conic-gradient(#4a672f calc(var(--progress) * 1%), #d6e1cb 0);
  transition: transform 220ms ease;
}

.did-you-know-indicator::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #fff;
}

.did-you-know h3 {
  margin: 0.35rem 0 0;
  color: var(--logo);
  line-height: 1.28;
  transition: opacity 320ms ease, transform 320ms ease;
}

.did-you-know.is-switching .did-you-know-indicator {
  transform: scale(1.15);
}

.did-you-know h3.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.section-headline {
  margin: 0 0 0.8rem;
  color: var(--logo);
}

.list-clean {
  margin: 0;
  padding-left: 1rem;
  color: #4d5f46;
}

.company-data {
  display: grid;
  gap: 0.35rem;
}

.company-data li {
  line-height: 1.45;
}

.map-embed {
  margin-top: 0.7rem;
  border: 1px solid #c9d6bc;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.placeholder-photo {
  min-height: 220px;
  border: 1px dashed #b4c89a;
  background:
    repeating-linear-gradient(
      45deg,
      #dce8cc,
      #dce8cc 12px,
      #ecf3e2 12px,
      #ecf3e2 24px
    );
  color: #314427;
  font-weight: 700;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.content-photo {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid #b4c89a;
}

.news-item h3,
.service-item h3,
.link-item h3 {
  margin: 0 0 0.35rem;
  color: var(--logo);
}

.news-item p,
.service-item p,
.link-item p {
  margin: 0;
  color: var(--text-soft);
}

.services-visual-band {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(181, 201, 160, 0.62);
  background:
    linear-gradient(rgba(66, 90, 54, 0.56), rgba(66, 90, 54, 0.56)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 14px,
      rgba(255, 255, 255, 0.03) 14px,
      rgba(255, 255, 255, 0.03) 28px
    ),
    url("../img/sestanek-atena.jpg") center/cover no-repeat;
  color: #f3f8ee;
  padding: 2.25rem 1.35rem 1.45rem;
}

.services-visual-band h2 {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
}

.services-visual-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.services-visual-point {
  text-align: center;
  padding: 0.75rem 0.85rem;
}

.services-visual-point + .services-visual-point {
  border-left: 1px solid rgba(224, 234, 214, 0.42);
}

.services-visual-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(238, 245, 232, 0.88);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.55rem;
}

.services-visual-icon svg {
  width: 18px;
  height: 18px;
  fill: #f1f7ea;
}

.services-visual-point p {
  margin: 0;
  color: #f5f9f1;
  font-weight: 600;
  line-height: 1.42;
}

.service-photo-frame {
  margin: 0;
  position: relative;
  border: 1px solid #b4c89a;
  overflow: hidden;
  border-radius: 4px;
}

.service-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(21, 37, 17, 0.58) 0%, rgba(21, 37, 17, 0.2) 42%, rgba(21, 37, 17, 0.55) 100%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 13px,
      rgba(255, 255, 255, 0.02) 13px,
      rgba(255, 255, 255, 0.02) 26px
    );
  pointer-events: none;
}

.service-photo-frame .content-photo {
  min-height: 300px;
  border: 0;
}

.service-photo-frame figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  margin: 0;
  color: #f0f6ea;
  font-weight: 600;
  z-index: 1;
}

.service-cta {
  border: 1px solid #b7c9a5;
  border-radius: 6px;
  background:
    linear-gradient(0deg, rgba(18, 33, 13, 0.84), rgba(18, 33, 13, 0.84)),
    url("../img/hero/r-atena-hero.jpg") center/cover no-repeat;
  color: #eef5e7;
  text-align: center;
  padding: 2.1rem 1.2rem;
  box-shadow: inset 0 1px 0 rgba(173, 196, 151, 0.18);
}

.service-cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.service-cta p {
  margin: 0.7rem auto 0;
  max-width: 62ch;
  color: #d6e4c8;
}

.service-cta-button {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.68rem 1.1rem;
  border-radius: 4px;
  background: var(--primary);
  color: #1d2a14;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, filter 160ms ease;
}

.service-cta-button:hover {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.furs-shell {
  border-left: 4px solid var(--primary);
}

.furs-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--logo);
}

.furs-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.furs-item a {
  text-decoration: none;
  color: #304326;
  font-weight: 600;
}

.furs-date {
  font-size: 0.78rem;
  color: #778470;
  margin-bottom: 0.15rem;
}

.furs-item a:hover {
  color: var(--logo);
  text-decoration: underline;
}

.furs-desc {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.furs-empty {
  color: var(--text-soft);
}

.furs-footnote {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: #6d7868;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
}

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 440px;
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-strip {
    flex-wrap: wrap;
  }

  .service-strip .service-card {
    flex: 1 1 50%;
  }

  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-row {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0.45rem 0;
    gap: 0.35rem;
  }

  .utility-row p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: center;
  }

  .utility-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.2rem;
    font-size: 0.84rem;
  }

  .utility-links a {
    text-align: center;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.65rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
  }

  .hero {
    min-height: 500px;
  }

  .links-tabs {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .links-nav {
    border-right: 0;
    border-bottom: 1px solid #d5ddd0;
    padding-right: 0;
    padding-bottom: 0.95rem;
    display: flex;
    flex-direction: row !important;
    gap: 0.25rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .links-nav .nav-link {
    border-right: 0;
    border-bottom: 2px solid transparent;
    padding: 0.65rem 0.6rem;
  }

  .links-nav .nav-link.active {
    border-bottom-color: var(--primary);
  }

  .links-content {
    padding-left: 0;
    padding-top: 0.2rem;
    min-height: 0;
  }

  :root {
    --header-offset: 150px;
  }

  .hero-content {
    padding: 3.8rem 0 6rem;
  }

  .section-overlap {
    margin-top: 0;
  }

  .about-layout,
  .contact,
  .footer-grid,
  .timeline-grid,
  .page-grid,
  .links-grid,
  .content-grid-2,
  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .services-visual-points {
    grid-template-columns: 1fr;
  }

  .service-strip {
    display: block;
    min-height: 0;
  }

  .services-visual-point {
    text-align: left;
    padding: 0.8rem 0.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 0.75rem;
  }

  .services-visual-point + .services-visual-point {
    border-left: 0;
    border-top: 1px solid rgba(196, 212, 182, 0.45);
  }

  .services-visual-icon {
    margin: 0;
  }

  .service-photo-frame .content-photo {
    min-height: 240px;
  }

  .service-photo-frame figcaption {
    font-size: 0.95rem;
  }

  .service-card {
    flex: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 760px) {
  .service-card {
    min-height: auto;
    height: auto;
    padding: 0.78rem 0.9rem;
  }

  .service-head {
    min-height: 0;
    margin-bottom: 0;
    align-items: center;
  }

  .service-card h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .service-summary {
    display: none;
    min-height: 0;
    margin-top: 0.5rem;
  }

  .service-card .service-toggle {
    display: none;
  }

  .service-card.is-expanded .service-head {
    margin-bottom: 0.2rem;
  }

  .service-card.is-expanded .service-summary {
    opacity: 1;
    display: block;
  }

  .service-more {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-height: 0;
    overflow: hidden;
    pointer-events: auto;
    transform: translateY(-3px);
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .service-more p {
    margin-top: 0.55rem;
  }

  .service-card.is-expanded .service-more {
    max-height: 140px;
  }
}




.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-weight: 700;
  font-size: 0.84rem;
  color: #3f4d3a;
}

.lang-switch a {
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
}

.lang-switch a.is-active {
  opacity: 1;
  color: var(--logo);
}

.lang-switch a:hover {
  opacity: 1;
}


.service-cta-section {
  margin-top: 2.2rem;
  background: #1b2a13;
  border-top: 1px solid #314325;
  border-bottom: 1px solid #314325;
}
.service-cta-section .service-cta {
  max-width: 1000px;
  margin: 0 auto;
  border-color: rgba(183, 201, 165, 0.45);
}

