:root {
  --a5-forest: #20382d;
  --a5-forest-2: #2f5141;
  --a5-sage: #7b947f;
  --a5-stone: #f4efe4;
  --a5-clay: #b7784f;
  --a5-ink: #17211b;
  --a5-muted: #6f746d;
  --a5-line: rgba(32, 56, 45, .14);
  --a5-slider-overlay-opacity: .58;
  --a5-contact-overlay-opacity: .66;
  --a5-parallax-y: 0px;
  --a5-selection-text-color: transparent;
  --a5-selection-bg-color: transparent;
}

::selection {
  color: var(--a5-selection-text-color);
  background: var(--a5-selection-bg-color);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--a5-ink);
  background: #fbfaf6;
}

a {
  color: inherit;
}

.a5-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.a5-header.is-scrolled {
  background: rgba(32, 56, 45, .96);
  padding: 10px 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.a5-logo img {
  width: 190px;
  max-width: 54vw;
}

.a5-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.a5-nav a {
  opacity: .9;
}

.a5-nav a:hover {
  color: #fff;
  opacity: 1;
}

.a5-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.a5-hero {
  position: relative;
  min-height: 96vh;
  color: #fff;
  overflow: hidden;
  background: var(--a5-forest);
}

.a5-hero .swiper,
.a5-hero .swiper-wrapper,
.a5-hero .swiper-slide {
  min-height: 96vh;
}

.a5-hero .swiper {
  width: 100%;
  overflow: hidden;
}

.a5-hero .swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.a5-hero .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none;
}

.a5-hero-slide {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center calc(50% + var(--a5-parallax-y, 0px));
  background-repeat: no-repeat;
  transform: translateZ(0);
}

.a5-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgb(18 28 22 / var(--a5-slider-overlay-opacity)),
    rgb(18 28 22 / calc(var(--a5-slider-overlay-opacity) * .45)) 48%,
    rgb(18 28 22 / calc(var(--a5-slider-overlay-opacity) * .16))
  );
}

.a5-hero-content {
  position: relative;
  max-width: 760px;
  padding: 190px 0 128px;
}

.a5-hero h1 {
  color: #fff;
  font-size: clamp(54px, 7.5vw, 118px);
  line-height: .9;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.a5-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.a5-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.a5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 24px;
  border: 1px solid transparent;
  background: var(--a5-stone);
  color: var(--a5-forest);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.a5-btn:hover {
  background: #fff;
  color: var(--a5-forest);
}

.a5-btn.outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.62);
}

.a5-btn.outline:hover {
  background: #fff;
  color: var(--a5-forest);
}

.a5-hero-facts {
  position: absolute;
  right: 40px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.25);
}

.a5-hero-facts div {
  padding: 22px 24px;
  background: rgba(32, 56, 45, .72);
  backdrop-filter: blur(12px);
}

.a5-hero-facts strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.a5-hero-facts span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.a5-section {
  padding: 112px 0;
}

.a5-section.compact {
  padding: 86px 0;
}

.a5-subtitle {
  display: block;
  color: var(--a5-clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.a5-title {
  font-size: clamp(38px, 5vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 26px;
}

.a5-lead {
  color: var(--a5-muted);
  font-size: 18px;
  line-height: 1.8;
}

.a5-media-pair {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 24px;
  align-items: end;
}

.a5-media-pair img,
.a5-feature-card img,
.a5-gallery-card img,
.a5-video-frame img,
.a5-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.a5-media-tall {
  aspect-ratio: 4 / 5;
}

.a5-media-wide {
  aspect-ratio: 5 / 3.6;
}

.a5-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--a5-line);
  border-left: 1px solid var(--a5-line);
  margin-top: 38px;
}

.a5-stat {
  padding: 26px;
  border-right: 1px solid var(--a5-line);
  border-bottom: 1px solid var(--a5-line);
}

.a5-stat strong {
  display: block;
  color: var(--a5-forest);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 6px;
}

.a5-stat span {
  color: var(--a5-muted);
}

.a5-band {
  background: var(--a5-forest);
  color: #fff;
}

.a5-band .a5-title,
.a5-band .a5-lead {
  color: #fff;
}

.a5-band .a5-lead {
  opacity: .78;
}

.a5-feature-card {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 310px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
}

.a5-feature-card .content {
  padding: 34px;
}

.a5-feature-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(183, 120, 79, .14);
  color: var(--a5-clay);
  font-size: 24px;
}

.a5-feature-card h3 {
  font-size: 27px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.a5-feature-card p {
  color: var(--a5-muted);
  line-height: 1.7;
  margin: 0;
}

.a5-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.a5-gallery-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #e9e2d5;
}

.a5-gallery-card.large {
  grid-column: span 6;
  min-height: 460px;
}

.a5-gallery-card.medium {
  grid-column: span 4;
}

.a5-gallery-card.small {
  grid-column: span 3;
}

.a5-gallery-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  background: rgba(32, 56, 45, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.a5-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.42));
  opacity: .9;
}

.a5-experience {
  background: #f2eadc;
}

.a5-experience-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.a5-experience-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
}

.a5-experience-item i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--a5-forest);
  background: #fff;
  font-size: 22px;
}

.a5-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--a5-forest);
}

.a5-video-frame video {
  background: #111;
}

.a5-video-frame .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.a5-map {
  min-height: 430px;
  border: 0;
  width: 100%;
  filter: grayscale(.18) contrast(1.02);
}

.a5-contact {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center calc(50% + var(--a5-parallax-y, 0px));
  background-repeat: no-repeat;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce), (max-width: 767px) {
  .a5-hero-slide,
  .a5-contact {
    background-position: center center;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  html,
  body {
    width: 100%;
    margin: 0;
    background: #fbfaf6;
  }

  .a5-header {
    position: absolute;
    padding: 18px 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .a5-menu-btn {
    display: none !important;
  }

  .a5-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 24px !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .a5-nav li {
    width: auto !important;
  }

  .a5-nav a {
    display: inline-block !important;
    padding: 0 !important;
  }

  .a5-hero,
  .a5-hero .swiper,
  .a5-hero .swiper-wrapper,
  .a5-hero .swiper-slide,
  .a5-hero-slide {
    min-height: 100vh !important;
    width: 100% !important;
  }

  .a5-hero .swiper-wrapper {
    display: block !important;
    transform: none !important;
  }

  .a5-hero .swiper-slide:not(.swiper-slide-active) {
    display: none !important;
  }

  .a5-hero-slide,
  .a5-contact {
    --a5-parallax-y: 0px !important;
    background-position: center center !important;
  }
}

.a5-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(25 38 30 / var(--a5-contact-overlay-opacity));
}

.a5-contact .container {
  position: relative;
  z-index: 1;
}

.a5-contact .a5-subtitle,
.a5-contact .a5-lead,
.a5-contact p,
.a5-contact strong,
.a5-contact a {
  color: #fff;
}

.a5-contact .a5-lead,
.a5-contact p {
  opacity: .94;
}

.a5-contact strong {
  opacity: 1;
}

.a5-contact-phones {
  margin-bottom: 1rem;
}

.a5-contact-phones > strong {
  display: block;
  margin-bottom: 6px;
}

.a5-contact-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
}

.a5-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.a5-whatsapp-link:hover,
.a5-whatsapp-link:focus-visible {
  color: #fff;
  border-color: #fff;
}

.a5-footer .footer-phone {
  margin-bottom: 3px;
}

.a5-contact-card {
  background: #fff;
  padding: 42px;
  color: var(--a5-ink);
}

.a5-contact-card .form-control {
  min-height: 58px;
  border: 1px solid var(--a5-line);
  background: #fbfaf6;
  border-radius: 0;
  color: var(--a5-ink);
}

.a5-contact-card textarea.form-control {
  min-height: 140px;
  padding-top: 16px;
}

.a5-contact-card label {
  color: var(--a5-muted);
  font-size: 14px;
}

.a5-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  margin: 4px 0 6px;
  line-height: 1.5;
}

.a5-check input[type="checkbox"] {
  display: block !important;
  position: static;
  opacity: 1;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--a5-clay);
}

.a5-check-text {
  min-width: 0;
  color: var(--a5-muted);
  font-size: 14px;
}

.a5-check-text label {
  display: inline;
}

.a5-check-text a {
  color: var(--a5-clay);
  font-weight: 700;
}

.a5-footer {
  padding: 54px 0 24px;
  background: #121a15;
  color: rgba(255,255,255,.78);
}

.a5-footer h3,
.a5-footer h4 {
  color: #fff;
}

.a5-footer a:hover {
  color: #fff;
}

.a5-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.a5-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.a5-legal-modal {
  position: relative;
  width: min(860px, calc(100% - 28px));
  max-height: min(82vh, 860px);
  overflow-y: auto;
  margin: 30px auto;
  padding: 42px;
  background: #fff;
  color: var(--a5-ink);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.a5-legal-modal h2 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.a5-legal-modal h3 {
  margin: 26px 0 10px;
  color: var(--a5-forest);
  font-size: 20px;
}

.a5-legal-modal p {
  color: var(--a5-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.a5-legal-modal a {
  color: var(--a5-clay);
  font-weight: 700;
}

@media (max-width: 1199px) {
  .a5-hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(3, 1fr);
    margin: -94px 24px 0;
  }
}

@media (max-width: 991px) {
  .a5-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .a5-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    background: rgba(32, 56, 45, .98);
  }

  .a5-nav.is-open {
    display: flex;
  }

  .a5-nav li {
    width: 100%;
  }

  .a5-nav a {
    display: block;
    padding: 13px 10px;
  }

  .a5-section {
    padding: 82px 0;
  }

  .a5-media-pair,
  .a5-feature-card {
    grid-template-columns: 1fr;
  }

  .a5-feature-card .box-img {
    min-height: 260px;
  }

  .a5-gallery-card.large,
  .a5-gallery-card.medium,
  .a5-gallery-card.small {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .a5-hero,
  .a5-hero .swiper,
  .a5-hero .swiper-wrapper,
  .a5-hero .swiper-slide,
  .a5-hero-slide {
    min-height: 88vh;
  }

  .a5-hero-content {
    padding: 150px 0 110px;
  }

  .a5-hero p {
    font-size: 17px;
  }

  .a5-actions {
    align-items: stretch;
  }

  .a5-btn {
    width: 100%;
  }

  .a5-hero-facts {
    grid-template-columns: 1fr;
    margin: -70px 16px 0;
  }

  .a5-stat-grid {
    grid-template-columns: 1fr;
  }

  .a5-gallery-card.large,
  .a5-gallery-card.medium,
  .a5-gallery-card.small {
    grid-column: span 12;
  }

  .a5-contact-card {
    padding: 26px;
  }

  .a5-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .a5-legal {
    justify-content: flex-start;
  }

  .a5-legal-modal {
    width: calc(100% - 24px);
    max-height: 86vh;
    padding: 28px 22px;
  }

  .a5-legal-modal h2 {
    font-size: 30px;
  }
}
