:root {
  --bg: #d8dde6;
  --page-side-gap: clamp(18px, 5vw, 96px);
  --page-width: min(calc(100vw - (var(--page-side-gap) * 2)), 1680px);
  --radius: clamp(27px, 15.4vw, 74px);
  --shadow: 0 24px 60px rgba(14, 34, 48, 0.18);
  --site-margin-y: clamp(14px, 2.5vw, 32px);
  --site-padding-bottom: clamp(18px, 3vw, 32px);
  --page-radius: var(--radius);
  --accent-orange: #f46f4d;

 
  --hero-links-top: 5.5%;
  --hero-links-left: 4.2%;
  --hero-links-gap: clamp(10px, 5.2vw, 40px);
  --hero-menu-height: clamp(22px, 2vw, 34px);
  --hero-gallery-height: clamp(28px, 2.5vw, 42px);
  --hero-contact-height: clamp(24px, 2.2vw, 38px);
  --hero-divider-height: clamp(22px, 2.2vw, 34px);


  --menu-link-left: 50%;
  --menu-link-bottom: 5.8%;
  --menu-link-width: min(32%, 420px);


  --gallery-slider-left: 50%;
  --gallery-slider-bottom: 4.2%;
  --gallery-slider-width: 79%;
  --gallery-slider-gap: clamp(10px, 1vw, 18px);
  --gallery-arrow-width: clamp(34px, 4vw, 52px);
  --gallery-track-gap: clamp(10px, 1vw, 18px);
  --gallery-columns: 3;
  --gallery-card-radius: clamp(16px, 1.8vw, 26px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #071a2a;
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #071a2a url("images/Background.png") center top / 100% 100% no-repeat;
}

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

a {
  text-decoration: none;
}

.pdf-site {
  position: relative;
  z-index: 1;
  width: var(--page-width);
  max-width: 1680px;
  margin: var(--site-margin-y) auto;
  padding-bottom: var(--site-padding-bottom);
}

.page {
  position: relative;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #cad3df;
  border: 0;
}

.hero-page {
  border-top-left-radius: var(--page-radius);
  border-top-right-radius: var(--page-radius);
}

#gallery {
  border-bottom-left-radius: var(--page-radius);
  border-bottom-right-radius: var(--page-radius);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.page-image {
  width: 100%;
  height: auto;
}

.gallery-copy {
  width: min(86%, 1320px);
  margin: 0 auto;
  padding-top: clamp(36px, 5vw, 72px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 56px);
}

.gallery-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 70px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.gallery-description {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.6vw, 23px);
  line-height: 1.3;
  font-weight: 700;
}

.hero-links {
  position: absolute;
  top: var(--hero-links-top);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--hero-links-gap);
  align-items: center;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-link img {
  height: var(--hero-menu-height);
  width: auto;
}

.hero-link[href="#gallery"] img {
  height: var(--hero-gallery-height);
}

.hero-link[href="#contact"] img {
  height: var(--hero-contact-height);
}

.hero-divider {
  width: auto;
  height: var(--hero-divider-height);
  flex: 0 0 auto;
  opacity: 0.95;
}

.menu-link {
  position: absolute;
  left: var(--menu-link-left);
  bottom: var(--menu-link-bottom);
  width: var(--menu-link-width);
  transform: translateX(-50%);
}

.gallery-slider {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: var(--gallery-slider-gap);
  width: var(--gallery-slider-width);
  margin: 0 auto;
  padding: clamp(72px, 4vw, 114px) 0 clamp(24px, 4vw, 48px);
  transform: none;
}

.gallery-arrow {
  flex: 0 0 auto;
  width: var(--gallery-arrow-width);
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  cursor: pointer;
}

.gallery-arrow img {
  width: 100%;
  height: auto;
  filter: none;
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.gallery-arrow:focus,
.gallery-arrow:active,
.gallery-arrow:hover {
  background: transparent;
  box-shadow: none;
  filter: none;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - ((var(--gallery-columns) - 1) * var(--gallery-track-gap))) / var(--gallery-columns));
  gap: var(--gallery-track-gap);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-card img {
  width: 100%;
  height: auto;
  border-radius: var(--gallery-card-radius);
}

.logo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.8vw, 30px);
  margin-top: clamp(28px, 4vw, 52px);
  padding: clamp(42px, 6vw, 88px) 0 clamp(28px, 4vw, 52px);
}

.logo-image {
  width: min(220px, 42vw);
  height: auto;
}

.logo-contact-title {
  margin: 0;
  color: var(--accent-orange);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.logo-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}

.logo-contact-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(9px, 1vw, 14px);
  color: #ffffff;
}

.logo-contact-item img {
  width: clamp(16px, 1.4vw, 21px);
  height: clamp(16px, 1.4vw, 21px);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(63%) sepia(59%) saturate(2140%) hue-rotate(329deg) brightness(100%) contrast(92%);
}

.logo-contact-item span {
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 600;
  line-height: 1.2;
}

  .logo-contact-divider {
  width: 1px;
  height: clamp(22px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1200px) {
  :root {
    --page-side-gap: clamp(18px, 4vw, 56px);
    --hero-links-gap: clamp(8px, 2vw, 20px);
    --hero-menu-height: clamp(18px, 1.8vw, 28px);
    --hero-gallery-height: clamp(22px, 2.1vw, 34px);
    --hero-contact-height: clamp(20px, 2vw, 30px);
    --hero-divider-height: clamp(18px, 1.9vw, 28px);
    --menu-link-width: min(38%, 380px);
    --gallery-slider-width: 84%;
  }
}

@media (max-width: 900px) {
  :root {
    --page-side-gap: 24px;
    --page-width: min(calc(100vw - (var(--page-side-gap) * 2)), 100%);
    --site-margin-y: 16px;
    --site-padding-bottom: 16px;
    --page-radius: 16px;

    --hero-links-top: 4%;
    --hero-links-left: 3.5%;
    --hero-links-gap: 8px;
    --hero-menu-height: 16px;
    --hero-gallery-height: 20px;
    --hero-contact-height: 22px;
    --hero-divider-height: 16px;

    --menu-link-bottom: 4.4%;
    --menu-link-width: 42%;

    --gallery-slider-bottom: 3%;
    --gallery-slider-width: 88%;
    --gallery-slider-gap: 8px;
    --gallery-arrow-width: 36px;
    --gallery-track-gap: 8px;
    --gallery-columns: 2;
  }

  .page {
    margin-bottom: 0;
    border-radius: 0;
  }

  .gallery-copy {
    width: min(92%, 100%);
    padding-top: 28px;
    gap: 18px;
  }

  .gallery-title {
    font-size: clamp(34px, 8vw, 64px);
  }

  .gallery-description {
    font-size: clamp(13px, 2vw, 16px);
  }

  .logo-image {
    width: min(180px, 44vw);
  }

  .logo-contact-title {
    font-size: clamp(24px, 5vw, 38px);
  }

  .logo-contact-row {
    gap: 14px;
  }

  .logo-contact-item span {
    font-size: clamp(12px, 1.8vw, 16px);
  }
}

@media (max-width: 720px) {
  :root {
    --page-side-gap: 18px;
    --hero-links-top: 3.8%;
    --hero-links-left: 3.8%;
    --hero-links-gap: 6px;
    --hero-menu-height: 15px;
    --hero-gallery-height: 18px;
    --hero-contact-height: 18px;
    --hero-divider-height: 14px;
    --menu-link-width: 50%;
    --gallery-slider-width: 90%;
    --gallery-arrow-width: 30px;
  }

  .logo-section {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .gallery-copy {
    flex-direction: column;
    align-items: flex-start;
    width: min(92%, 100%);
    gap: 12px;
  }

  .gallery-description {
    max-width: 100%;
  }

  .logo-contact-row {
    row-gap: 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-side-gap: 14px;
    --hero-links-left: 4%;
    --hero-links-top: 4.4%;
    --hero-links-gap: 6px;
    --hero-menu-height: 14px;
    --hero-gallery-height: 17px;
    --hero-contact-height: 18px;
    --hero-divider-height: 14px;

    --menu-link-bottom: 4.2%;
    --menu-link-width: 54%;

    --gallery-slider-bottom: 3.5%;
    --gallery-slider-width: 92%;
    --gallery-slider-gap: 6px;
    --gallery-arrow-width: 28px;
    --gallery-track-gap: 0px;
    --gallery-columns: 1;
  }

  .hero-links {
    width: min(92%, 280px);
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .gallery-copy {
    padding-top: 22px;
  }

  .gallery-title {
    font-size: clamp(28px, 9vw, 44px);
  }

  .gallery-description {
    font-size: 12px;
    line-height: 1.4;
  }

  .logo-section {
    gap: 16px;
    margin-top: 20px;
    padding-top: 32px;
    padding-bottom: 14px;
  }

  .logo-image {
    width: min(148px, 48vw);
  }

  .logo-contact-row {
    gap: 10px;
    max-width: 92%;
  }

  .logo-contact-item {
    gap: 7px;
  }

  .logo-contact-item img {
    width: 14px;
    height: 14px;
  }

  .logo-contact-item span {
    font-size: 11px;
  }

  .logo-contact-divider {
    height: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-side-gap: 10px;
    --site-margin-y: 10px;
    --site-padding-bottom: 12px;
    --page-radius: 12px;
    --hero-links-left: 3.8%;
    --hero-links-top: 3.6%;
    --hero-links-gap: 5px;
    --hero-menu-height: 12px;
    --hero-gallery-height: 15px;
    --hero-contact-height: 15px;
    --hero-divider-height: 12px;
    --menu-link-width: 58%;
    --gallery-slider-bottom: 2.8%;
    --gallery-slider-width: 94%;
    --gallery-slider-gap: 4px;
    --gallery-arrow-width: 24px;
  }

  .gallery-track {
    grid-auto-columns: 100%;
  }

  .logo-section {
    gap: 14px;
    margin-top: 16px;
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .logo-image {
    width: min(132px, 46vw);
  }

  .logo-contact-title {
    font-size: 20px;
  }

  .logo-contact-row {
    max-width: 96%;
    gap: 8px;
  }

  .logo-contact-item span {
    font-size: 10px;
  }
}
