/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #1f2430;
  background-color: #f7f5f0;
  line-height: 1.6;
}

/* GLOBAL */
.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 12px;
}

.section-heading__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #162033;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background-color: #162033;
  color: #ffffff;
  border: 1px solid #162033;
}

.btn--primary:hover {
  background-color: #0f1724;
  border-color: #0f1724;
}

.btn--secondary {
  background-color: transparent;
  color: #f9f9f9;
  border: 1px solid #162033;
}

.btn--secondary:hover {
  background-color: #162033;
  color: #ffffff;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 245, 240, 0.96);
  border-bottom: 1px solid rgba(22, 32, 51, 0.08);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo__main {
  font-size: 1.4rem;
  font-weight: 700;
  color: #162033;
}

.site-logo__sub {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7355;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.site-nav__list a {
  font-size: 0.95rem;
  color: #263248;
  transition: color 0.25s ease;
}

.site-nav__list a:hover {
  color: #8b7355;
}

.site-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: #162033;
}

/* HERO */
.hero-section {
  padding: 120px 0 96px;
  background:
    linear-gradient(to right, rgba(22, 32, 51, 0.96), rgba(22, 32, 51, 0.9)),
    linear-gradient(to bottom, #1f2a3c, #162033);
  color: #ffffff;
}

.hero-section__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.hero-section__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9b89a;
  margin-bottom: 18px;
}

.hero-section__title {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-section__text {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-section__panel {
  display: flex;
  justify-content: flex-end;
}

.hero-section__card {
  width: 100%;
  max-width: 360px;
  padding: 36px 32px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 184, 154, 0.25);
}

.hero-section__card-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.hero-section__card-text {
  color: rgba(255, 255, 255, 0.84);
}

/* TRUST SECTION */
.trust-section {
  padding: 96px 0;
  background-color: #f7f5f0;
}

.trust-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.trust-card__title {
  font-size: 1.25rem;
  color: #162033;
  margin-bottom: 14px;
}

.trust-card__text {
  color: #4a5568;
}

/* SERVICES */
.services-section {
  padding: 96px 0;
  background-color: #efe9df;
}

.services-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 34px 32px;
  background-color: #ffffff;
  border-left: 4px solid #8b7355;
}

.service-card__title {
  font-size: 1.35rem;
  color: #162033;
  margin-bottom: 14px;
}

.service-card__text {
  color: #4a5568;
}

/* ABOUT */
.about-section {
  padding: 96px 0;
  background-color: #ffffff;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.about-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #162033;
  margin-bottom: 24px;
}

.about-section__text {
  color: #4a5568;
  margin-bottom: 18px;
  max-width: 720px;
}

.about-section__box {
  padding: 36px 32px;
  background-color: #f7f5f0;
  border: 1px solid rgba(22, 32, 51, 0.08);
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-info__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(22, 32, 51, 0.08);
}

.about-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-info__label {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7355;
}

.about-info__value {
  font-size: 1.15rem;
  color: #162033;
}

/* CONTACT CTA */
.contact-cta-section {
  padding: 88px 0;
  background-color: #162033;
  color: #ffffff;
}

.contact-cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-cta-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-cta-section__text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-cta-section .section-heading__eyebrow {
  color: #c9b89a;
}

.contact-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* FOOTER */
.site-footer {
  padding: 48px 0;
  background-color: #101826;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer__title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.site-footer__subtitle {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9b89a;
}

.site-footer__info p,
.site-footer__legal p {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-section__inner,
  .about-section__inner,
  .site-footer__inner,
  .contact-cta-section__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .trust-section__grid,
  .services-section__grid {
    grid-template-columns: 1fr;
  }

  .hero-section__panel {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .site-nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: #f7f5f0;
    border-bottom: 1px solid rgba(22, 32, 51, 0.08);
    padding: 20px 24px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-section {
    padding: 96px 0 72px;
  }

  .hero-section__title {
    font-size: 2.35rem;
  }

  .section-heading__title,
  .about-section__title,
  .contact-cta-section__title {
    font-size: 2rem;
  }

  .container {
    width: min(1120px, calc(100% - 32px));
  }
}


/* HERO */
.hero-section {
  padding: 110px 0 96px;
  background:
    linear-gradient(to right, rgba(22, 32, 51, 0.97), rgba(22, 32, 51, 0.94)),
    linear-gradient(to bottom, #1d2738, #162033);
  color: #ffffff;
}

.hero-section__inner--balanced {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* stejné sloupce */
  gap: 28px;
  align-items: stretch;
}

/* COMMON COLUMN / PANEL */
.hero-column {
  display: flex;
}

.hero-panel {
  width: 100%;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(201, 184, 154, 0.18);
}

.hero-panel--content,
.hero-panel--trust {
  padding: 42px 34px;
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-panel--photo {
  padding: 0;
  background-color: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-section__eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9b89a;
  margin-bottom: 18px;
}

.hero-section__title {
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-section__text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-content-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 184, 154, 0.16);
}

.hero-content-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-content-meta__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9b89a;
}

.hero-content-meta__value {
  font-size: 1rem;
  color: #ffffff;
}

/* PHOTO */
.hero-photo,
.hero-photo--tall {
  width: 100%;
  height: 100%;
  min-height: 720px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* RIGHT TRUST PANEL */
.trust-box {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(201, 184, 154, 0.16);
}

.trust-box__logo {
  margin-bottom: 20px;
  text-align:center;
  width:100%;
}

.trust-box__logo img {
  max-width: 140px;
  max-height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin: 0px auto 0px auto;
}

.trust-box__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9b89a;
  margin-bottom: 12px;
  text-align:center;
}

.trust-box__title {
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
  text-align:center;
}

.trust-box__text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.trust-box__link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9b89a;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.trust-box__link:hover {
  border-color: #c9b89a;
}

/* TRUST POINTS */
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: auto;
}

.trust-points__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.trust-points__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 184, 154, 0.22);
  color: #c9b89a;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-points__body h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.trust-points__body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.hero-column--content .hero-section__title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.3;
}

.hero-column--content .hero-section__text {
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-column--content .hero-section__eyebrow {
  font-size: 0.72rem;
}

.hero-column--content .btn {
  min-height: 44px;
  font-size: 0.85rem;
  padding: 0 18px;
}


/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-section__inner--balanced {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-panel--content,
  .hero-panel--trust,
  .hero-photo,
  .hero-photo--tall {
    min-height: auto;
  }

  .hero-panel--photo {
    min-height: 680px;
  }

  .hero-photo img {
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 92px 0 72px;
  }

  .hero-panel--content,
  .hero-panel--trust {
    padding: 30px 24px;
  }

  .hero-panel--photo {
    min-height: 520px;
  }

  .hero-section__title {
    font-size: 2.2rem;
  }

  .hero-section__actions {
    flex-direction: column;
  }

  .hero-section__actions .btn {
    width: 100%;
  }
}
/*hero animace*/
/* =========================================================
   HERO ANIMATIONS
========================================================= */

.hero-animate {
  opacity: 0;
  will-change: transform, opacity;
}

.hero-animate--left {
  transform: translateY(32px);
}

.hero-animate--center {
  transform: translateY(24px) scale(1.02);
}

.hero-animate--right {
  transform: translateY(32px);
}

.hero-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.9s ease,
    transform 1s ease;
}

.hero-animate--left.is-visible {
  transition-delay: 0.12s;
}

.hero-animate--center.is-visible {
  transition-delay: 0.28s;
}

.hero-animate--right.is-visible {
  transition-delay: 0.44s;
}

/* jemnější náběh fotky */
.hero-column--photo .hero-photo img {
  transform: scale(1.06);
  transition: transform 1.4s ease;
}

.hero-column--photo.is-visible .hero-photo img {
  transform: scale(1);
}

/* jemný náběh vnitřního obsahu levého panelu */
.hero-column--content .hero-section__eyebrow,
.hero-column--content .hero-section__title,
.hero-column--content .hero-section__text,
.hero-column--content .hero-section__actions,
.hero-column--content .hero-content-meta {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-column--content.is-visible .hero-section__eyebrow,
.hero-column--content.is-visible .hero-section__title,
.hero-column--content.is-visible .hero-section__text,
.hero-column--content.is-visible .hero-section__actions,
.hero-column--content.is-visible .hero-content-meta {
  opacity: 1;
  transform: translateY(0);
}

.hero-column--content.is-visible .hero-section__eyebrow {
  transition-delay: 0.22s;
}

.hero-column--content.is-visible .hero-section__title {
  transition-delay: 0.34s;
}

.hero-column--content.is-visible .hero-section__text {
  transition-delay: 0.46s;
}

.hero-column--content.is-visible .hero-section__actions {
  transition-delay: 0.58s;
}

.hero-column--content.is-visible .hero-content-meta {
  transition-delay: 0.7s;
}

/* jemný náběh pravého panelu po částech */
.hero-column--trust .trust-box,
.hero-column--trust .trust-points__item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.hero-column--trust.is-visible .trust-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.56s;
}

.hero-column--trust.is-visible .trust-points__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.68s;
}

.hero-column--trust.is-visible .trust-points__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.hero-column--trust.is-visible .trust-points__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.92s;
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero-animate--left,
  .hero-animate--center,
  .hero-animate--right,
  .hero-column--photo .hero-photo img,
  .hero-column--content .hero-section__eyebrow,
  .hero-column--content .hero-section__title,
  .hero-column--content .hero-section__text,
  .hero-column--content .hero-section__actions,
  .hero-column--content .hero-content-meta,
  .hero-column--trust .trust-box,
  .hero-column--trust .trust-points__item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


.hero-animate {
  opacity: 1;
  transform: none;
}

.js .hero-animate {
  opacity: 0;
}

.js .hero-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   TRUST SECTION ANIMATION
========================================================= */

.trust-animate {
  opacity: 1;
  transform: none;
}

.js .trust-animate {
  opacity: 0;
  transform: translateY(28px);
}

.js .trust-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* heading */
.js .trust-animate--heading.is-visible {
  transition-delay: 0.1s;
}

/* cards stagger */
.js .trust-animate--card:nth-child(1).is-visible {
  transition-delay: 0.2s;
}

.js .trust-animate--card:nth-child(2).is-visible {
  transition-delay: 0.35s;
}

.js .trust-animate--card:nth-child(3).is-visible {
  transition-delay: 0.5s;
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .trust-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* =========================================================
   SERVICES SECTION ANIMATION
========================================================= */

.services-animate {
  opacity: 1;
  transform: none;
}

.js .services-animate {
  opacity: 0;
  transform: translateY(30px);
}

.js .services-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.js .services-animate--heading.is-visible {
  transition-delay: 0.08s;
}

.js .services-section__grid .services-animate--card:nth-child(1).is-visible {
  transition-delay: 0.16s;
}

.js .services-section__grid .services-animate--card:nth-child(2).is-visible {
  transition-delay: 0.28s;
}

.js .services-section__grid .services-animate--card:nth-child(3).is-visible {
  transition-delay: 0.4s;
}

.js .services-section__grid .services-animate--card:nth-child(4).is-visible {
  transition-delay: 0.52s;
}

@media (prefers-reduced-motion: reduce) {
  .services-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   ABOUT SECTION ANIMATION
========================================================= */

.about-animate {
  opacity: 1;
  transform: none;
}

.js .about-animate {
  opacity: 0;
  transform: translateY(30px);
}

.js .about-animate--content {
  transform: translateY(24px);
}

.js .about-animate--box {
  transform: translateY(30px);
}

.js .about-animate--item {
  transform: translateY(18px);
}

.js .about-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.js .about-animate--content.is-visible {
  transition-delay: 0.1s;
}

.js .about-animate--box.is-visible {
  transition-delay: 0.24s;
}

.js .about-info__item.about-animate--item:nth-child(1).is-visible {
  transition-delay: 0.34s;
}

.js .about-info__item.about-animate--item:nth-child(2).is-visible {
  transition-delay: 0.48s;
}

.js .about-info__item.about-animate--item:nth-child(3).is-visible {
  transition-delay: 0.62s;
}

@media (prefers-reduced-motion: reduce) {
  .about-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  color: #ffffff;
  background-color: #162033;
  border: 1px solid rgba(201, 184, 154, 0.4);

  cursor: pointer;
  z-index: 200;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background-color 0.25s ease;
}

.back-to-top:hover {
  background-color: #0f1724;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* mobile */
@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}