@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Urbanist:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@100..700&display=swap');
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a, a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside, nav, footer, header, section, main {
  display: block;
}
h1, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}
ul, ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img, svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}
input::-ms-clear {
  display: none;
}
button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
  outline: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}

/*------------base-styles---------------*/

:root {
  --green-dark: #244031;
  --green: #3b6148;
  --orange: #dda719;
  --orange-hover: rgba(221, 167, 25, 0.8);
  --gray: #e9e9e9;
  --white: #ffffff;

  --font-title: 'Urbanist', sans-serif;
  --font-text: 'Inter', sans-serif;
}
/**/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  background-color: var(--white);
  color: var(--green-dark);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pyh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--green-dark);
}

h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.3rem, 1.0039rem + 1.4401vw, 2.3rem);
  line-height: 1.3;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.4;
}

p {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pyh-section__heading {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  position: relative;
}

.pyh-section__heading::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 3px;
  background-color: var(--green);
}

.pyh-icon {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  color: var(--green-dark);
}

.pyh-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.pyh-button--primary {
  background-color: var(--orange);
  color: var(--white);
}

.pyh-button--primary:hover {
  background-color: var(--orange-hover);
}

.pyh-button--secondary {
  background-color: var(--green);
  color: var(--white);
}

.pyh-button--secondary:hover {
  background-color: var(--green-dark);
}

.pyh-button--outline {
  border: 2px solid var(--orange);
  color: var(--white);
  background-color: transparent;
  backdrop-filter: blur(10px);
}

.pyh-button--outline:hover {
  background-color: var(--orange-hover);
  color: var(--white);
}
/**/
.pyh-header {
  position: fixed;
  top: 20px;
  left: 16px;
  right: 16px;
  z-index: 100;
  padding: 0;
}

.pyh-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-radius 0.3s ease;
  background-color: var(--green-dark);
  border-radius: 16px;
  padding: 14px 24px;
  color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.pyh-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.pyh-header__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pyh-header__logo-text {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.pyh-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pyh-nav__link {
  color: var(--white);
  font-family: var(--font-text);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.pyh-nav__link:hover {
  text-decoration: underline;
}

.pyh-burger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 20;
}
.pyh-burger span {
  display: block;
  height: 3px;
  background: var(--orange);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: 0.3s ease;
}

.pyh-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.pyh-burger.active span:nth-child(2) {
  opacity: 0;
}
.pyh-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.pyh-mobile-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 15;
}

.pyh-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--green-dark);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  padding: 0 20px;
}

.pyh-mobile-menu.active {
  padding: 20px;
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}

.pyh-mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-text);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pyh-header__inner {
  border-radius: 16px;
  transition: border-radius 0.3s ease;
}

.pyh-header__inner.opened {
  border-radius: 16px 16px 0 0;
}

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

  .pyh-burger {
    display: block;
  }

  .pyh-mobile-menu.active {
    display: flex;
  }
}
/**/
.pyh-footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 40px 0 20px 0;
  font-size: 0.95rem;
}

.pyh-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer__row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.pyh-footer__col {
  min-width: 180px;
}

.pyh-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 10px;
}

.pyh-footer__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pyh-footer__logo-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.pyh-footer__desc {
  color: var(--gray);
  max-width: 260px;
  margin-top: 10px;
  line-height: 1.5;
}

.pyh-footer__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.pyh-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pyh-footer__list li {
  margin-bottom: 10px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pyh-footer__list a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.pyh-footer__list a:hover {
  color: var(--orange);
  text-decoration: underline;
}

.pyh-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}
.pyh-footer__contact {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.pyh-footer__contact li {
  margin-bottom: 10px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.pyh-footer__contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pyh-footer__contact a:hover {
  color: var(--orange);
}

.pyh-icon--light {
  color: var(--orange);
  font-size: 20px;
}

@media (max-width: 768px) {
  .pyh-footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .pyh-footer__col {
    min-width: 100%;
  }

  .pyh-footer__logo {
    justify-content: flex-start;
  }

  .pyh-footer__contact {
    margin-top: 16px;
  }
}

/**/
.pyh-section {
  margin: 100px auto;
}
.pyh-hero {
  position: relative;
  background-image: url('../img/hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 1;

  opacity: 0;
  transform: scale(1.03);
  animation: hero-bg-fade 1.5s ease-out forwards;
}

@keyframes hero-bg-fade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pyh-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  backdrop-filter: blur(3px);
}

.pyh-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 20px 0 20px;

  opacity: 0;
  transform: translateX(80px);
  animation: hero-text-slide 1.2s ease-out 0.4s forwards;
}

@keyframes hero-text-slide {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.pyh-hero__subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--gray);
}

.pyh-hero__title {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
}

.pyh-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}