
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");


:root {
  --header-height: 3.5rem;

  
  
  --first-color: hsl(43, 90%, 50%);
  --first-color-alt: hsl(43, 88%, 48%);
  --text-color: hsl(0, 0%, 42%);
  --text-color-lighten: hsl(0, 0%, 92%);
  --black-color: hsl(0, 0%, 8%);
  --white-color: hsl(0, 0%, 100%);
  --body-color: hsl(0, 0%, 98%);
  --body-second-color: hsl(25, 70%, 55%);
  --shadow-img: -8px 8px 16px hsla(0, 0%, 0%, .2);

  
  
  --body-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.5rem;
  --big-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;

  
  --z-tooltip: 10;
  --z-fixed: 100;
}


@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 10.5rem;
    --big-font-size: 5.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}


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

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--black-color);
}

input,
button {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

video {
  max-width: 100%;
}


.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title, 
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--black-color);
  margin-bottom: 3rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--text-color);
  margin-bottom: .5rem;
}

.main {
  overflow: hidden;
}


.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--black-color);
  font-weight: var(--font-bold);
}

.nav__toggle, 
.nav__close {
  display: inline-flex;
  font-size: 1.5rem;
  cursor: pointer;
}


@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    top: -120%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4rem;
    box-shadow: 0 4px 16px hsla(0, 0%, 0%, .1);
    transition: top .4s;
  }
}

.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link {
  position: relative;
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
}

.nav__link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--black-color);
  position: absolute;
  left: 0;
  bottom: -.5rem;
  transition: width .4s;
}

.nav__link:hover::after {
  width: 60%;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}


.show-menu {
  top: 0;
}


.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .1);
}


.active-link::after {
  width: 60%;
}


.home {
  position: relative;
  height: 730px;
  background-color: var(--body-second-color);
}

.home__bg, 
.home__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home__bg {
  object-fit: cover;
  object-position: center;
}

.home__gradient {
  background: linear-gradient(180deg, 
            hsla(25, 70%, 55%, 0) 80%, 
            hsl(25, 70%, 55%) 100%);
}

.home__data {
  position: absolute;
  top: 17rem;
  justify-self: center;
  text-align: center;
}

.home__subtitle {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  letter-spacing: 1px;
  margin-bottom: .25rem;
}

.home__title {
  font-size: var(--big-font-size);
  font-weight: var(--font-extra-bold);
  letter-spacing: 2px;
  color: var(--white-color);
}


.home__title::after{
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: rgba(255,255,255,.8);
  margin: 0.8rem auto 3.5rem auto;  
  border-radius: 2px;
  opacity: 0.9;
}



.home__button {
  position: absolute;
  bottom: 5rem;
  justify-self: center;
  color: var(--white-color);
  width: 94px;
  height: 94px;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding-top: 1rem;
  z-index: 5;
}

.home__button span {
  font-weight: var(--font-semi-bold);
}

.home__button i {
  font-size: 1.5rem;
}

.home__swiper {
  position: relative;
}

.home__img {
  width: 300px;
  margin-inline: auto;
}


.swiper {
  margin-inline: initial;
  align-self: center;
  margin-bottom: 1rem;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  height: max-content;
  top: 30rem;
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}

.swiper-pagination-bullet {
  color: var(--white-color);
  opacity: 1;
  background: none;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.swiper-pagination-bullet-active {
  color: var(--black-color);
}


.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--first-color);
  color: var(--black-color);
  padding: .75rem 2rem;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 4px 12px hsla(43, 88%, 32%, .4);
}

.button i {
  font-weight: initial;
  font-size: 1.5rem;
  transition: transform .4s;
}

.button:hover i {
  transform: translateX(.5rem);
}

.button__ghost {
  background-color: transparent;
  box-shadow: none;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}


.about {
  background-color: var(--body-second-color);
}

.about__container {
  padding-bottom: 3rem;
  row-gap: 3rem;
}

.about__title {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.about__title span {
  color: var(--black-color);
}

.about__data {
  text-align: center;
}

.about__description {
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

.about__video {
  position: relative;
  width: 250px;
  height: 320px;
  justify-self: center;
  transform: skew(-12deg);
  display: grid;
  overflow: hidden;
  box-shadow: var(--shadow-img);
}

.about__file {
  transform: skew(12deg);
  max-width: initial;
  height: 320px;
  position: absolute;
  justify-self: center;
}


.models__container {
  grid-template-columns: 250px;
  justify-content: center;
  row-gap: 2rem;
}


.models__card a { 
  display: block; 
  position: relative; 
  z-index: 2; 
}

.models__card .models__gradient { 
  position: absolute; 
  inset: 0; 
  z-index: 1; 
  pointer-events: none; 
}

.models__data {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  color: var(--white-color);
  transform: none;
}

.models__name {
  font-size: var(--h3-font-size);
  margin-bottom: .25rem;
  transition: transform .4s, opacity .4s;
}

.models__info {
  display: block;
  font-size: var(--small-font-size);
  transition: transform .4s .1s, opacity .4s .1s;
}

.models__name, 
.models__info {
  transform: translateX(5rem);
  opacity: 0;
}

.models__card:hover :is(.models__name, .models__info) {
  transform: translateX(0);
  opacity: 1;
}

.models__card a { display: block; position: relative; }
.models__card .models__img { width: 100%; height: auto; }
.models__card .models__gradient { position: absolute; inset: 0; }



.info__container {
  row-gap: 3.5rem;
  padding-bottom: 2.5rem;
}

.info__title {
  margin-bottom: 5.5rem;
}

.info__content {
  position: relative;
  display: grid;
}

.info__number {
  font-size: var(--biggest-font-size);
  color: var(--text-color-lighten);
  position: absolute;
  top: -3.5rem;
  justify-self: center;
}

.info__img {
  width: 300px;
  justify-self: center;
  z-index: 5;
}

.info__data {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.info__group h3 {
  font-size: var(--small-font-size);
  margin-bottom: .5rem;
}

.info__group p {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  text-align: center;
}


.contact {
  background-color: var(--body-second-color);
}

.contact__container {
  row-gap: 3rem;
  padding-bottom: 2rem;
}

.contact__title {
  color: var(--white-color);
  margin-bottom: 4rem;
}

.contact__form {
  row-gap: 2rem;
}

.contact__inputs {
  row-gap: 2.5rem;
}

.contact__box {
  position: relative;
  width: 100%;
  height: 58px;
}

.contact__input {
  width: 100%;
  height: 100%;
  background-color: var(--body-second-color);
  border: 2px solid var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: .75rem;
  color: var(--white-color);
}

.contact__input::placeholder {
  color: var(--white-color);
}

.contact__label {
  position: absolute;
  top: -1.5rem;
  left: 0;
  color: var(--white-color);
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
}

.contact__input:-webkit-autofill {
  transition: background-color 6000s, color 6000s;
}

.contact__button {
  cursor: pointer;
}

.contact__img {
  width: 250px;
  transform: skew(-12deg);
  justify-self: center;
  box-shadow: var(--shadow-img);
}


.footer {
  background-color: var(--body-second-color);
  padding-block: 2rem;
}

.footer__container {
  row-gap: 3rem;
}

.footer__logo {
  justify-self: flex-start;
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
}

.footer__link {
  color: var(--white-color);
}

.footer__social {
  display: flex;
  column-gap: .75rem;
}

.footer__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.footer__social-link:hover {
  transform: translateY(-.25rem);
}

.footer__copy {
  display: block;
  margin-top: 6rem;
  color: var(--white-color);
  text-align: center;
  font-size: var(--small-font-size);
}


::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 60%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 50%);
}


.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .1);
  color: var(--black-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}


.show-scroll {
  bottom: 3rem;
}



@media screen and (max-width: 320px) {
  .container {
    margin-inline: 1rem;
  }

  .home__title {
    font-size: 2rem;
  }
  .home__img {
    width: 270px;
  }

  .about__video {
    width: 200px;
    height: 250px;
  }

  .models__container {
    grid-template-columns: 200px;
  }

  .info__data {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }

  .contact__img {
    width: 200px;
  }
}


@media screen and (min-width: 576px) {
  .about__container,
  .contact__container {
    grid-template-columns: 400px;
    justify-content: center;
  }

  .footer__container {
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .models__container {
    grid-template-columns: repeat(2, 250px);
  }

  .footer__links {
    flex-direction: row;
    column-gap: 1rem;
  }
}


@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }
  .section__title {
    margin-bottom: 4rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  .nav__toggle, 
  .nav__close {
    display: none;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .home {
    height: 830px;
  }
  .home__subtitle {
    font-size: var(--normal-font-size);
    letter-spacing: 3px;
  }
  .home__title {
    letter-spacing: 3px;
  }
  .home__img {
    width: 600px;
  }
  .home__data {
    top: 15rem;
  }
  .home__button {
    bottom: 2rem;
  }
  .swiper {
    margin-block: 1rem 0;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: 39rem;
    column-gap: 2rem;
  }

  .about__container {
    grid-template-columns: 400px 450px;
    align-items: center;
    column-gap: 12rem;
    padding-bottom: 5rem;
  }
  .about__title, 
  .about__data {
    text-align: initial;
  }
  .about__title {
    margin-bottom: 1rem;
  }
  .about__description {
    margin-bottom: 3.5rem;
  }
  .about__video {
    width: 450px;
    height: 570px;
  }
  .about__file {
    height: 580px;
  }

  .models__container {
    grid-template-columns: repeat(3, 350px);
    column-gap: 2rem;
  }
  .models__data {
    bottom: 2.5rem;
    left: 2rem;
  }
  .models__info {
    font-size: var(--normal-font-size);
  }

  .info__container {
    padding-bottom: 4rem;
  }
  .info__title {
    margin-bottom: 13rem;
  }
  .info__img {
    width: 800px;
  }
  .info__number {
    top: -8.5rem;
  }
  .info__data {
    column-gap: 4rem;
  }
  .info__group h3 {
    font-size: var(--h3-font-size);
  }
  .info__group p {
    font-size: var(--normal-font-size);
  }

  .contact__container {
    grid-template-columns: 450px 500px;
    align-items: center;
    column-gap: 8rem;
    padding-bottom: 4rem;
  }
  .contact__img {
    order: -1;
    width: 450px;
  }
  .contact__title {
    text-align: initial;
  }
  .contact__button {
    justify-self: flex-start;
  }

  .footer {
    padding-top: 3rem;
  }
  .footer__logo {
    font-size: var(--normal-font-size);
  }
  .footer__links {
    column-gap: 2rem;
  }
  .footer__social {
    column-gap: 1rem;
  }

  .scrollup {
    right: 3rem;
  }
}


@media screen and (min-width: 2048px) {
  body {
    zoom: 1.4;
  }
}

.footer .about__description a {
  color: var(--black-color);
  text-decoration: none;
}

.footer .about__description a:hover {
  text-decoration: underline;
}


.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc {
  font-family: "Montserrat", sans-serif !important;
  color: var(--black-color); 
}

.glightbox-clean .gslide-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.glightbox-clean .gslide-desc {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
}




.models__card a {
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.models__card:hover a img {
  transform: scale(1.05);
  filter: brightness(1.1);
}


.models__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.glightbox-clean .gprev,
.glightbox-clean .gnext {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 1.5rem;
  transition: background .3s, transform .3s;
  z-index: 9999;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.4);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  z-index: 9999;
}
.glightbox-clean .gprev { left: 20px; top: 50%; transform: translateY(-50%); }
.glightbox-clean .gnext { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    opacity: 1 !important;
    visibility: visible !important;
  }
}






.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--white-color);
  color: var(--black-color);
  padding: .5rem .75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 10000;
}
:focus-visible { outline: 3px solid rgba(0,0,0,.5); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc { font-family: "Montserrat", sans-serif !important; color: var(--black-color); }
.glightbox-clean .gprev, .glightbox-clean .gnext {
  display:flex !important; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  background:rgba(0,0,0,.4); color:#fff; font-size:1.5rem; z-index:9999;
}
.glightbox-clean .gprev { left:20px; top:50%; transform:translateY(-50%); }
.glightbox-clean .gnext { right:20px; top:50%; transform:translateY(-50%); }
@media (max-width: 768px){
  .glightbox-clean .gprev, .glightbox-clean .gnext { opacity:1 !important; visibility:visible !important; }
}


.models__card .models__img { width:100%; height:auto; display:block; }
.models__card a { cursor: zoom-in; }
.models__card a img { transition: transform .4s ease, filter .4s ease; }
.models__card:hover a img { transform: scale(1.05); filter: brightness(1.1); }
.models__card { transition: box-shadow .4s ease; }
.models__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.3); }


.models__card { position: relative; }
.models__card .models__data {
  position: absolute; bottom: 1rem; left: 1.5rem;
  color: var(--white-color); z-index: 3; pointer-events: none; transform:none;
}
.models__card .models__name, .models__card .models__info {
  transform: translateX(5rem); opacity: 0; transition: transform .4s, opacity .4s;
}
.models__card:hover .models__name, .models__card:hover .models__info { transform: translateX(0); opacity: 1; }
.models__card .models__gradient { position:absolute; inset:0; z-index:1; pointer-events:none; }
.models__card a { position:relative; z-index:2; }

@media (hover:none){
  .models__card .models__name, .models__card .models__info { transform:none; opacity:1; }
}


.section--tight { padding-block: 3rem 1rem; }                   
.section--tight .info__title { margin-bottom: 1.5rem; }         


#info .models__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  
  gap: 1rem;
}


@media (min-width: 768px) {
  #info .models__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}


#info .models__card .models__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;    
  display: block;
}


.models__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform: translateZ(0);                 
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  background: #111;                         
}

.models__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.models__card .models__img {
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(1.02) contrast(1.02);
}
.models__card:hover .models__img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06) brightness(1.03);
}


.models__card .models__data {
  position: absolute;
  bottom: .9rem; left: 1rem; right: 1rem;
  z-index: 2;
  pointer-events: none;
}
.models__card .models__name,
.models__card .models__info {
  display: inline-block;
  transform: translateX(10px);
  opacity: 0;
  filter: blur(2px);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
}
.models__card:hover .models__name,
.models__card:hover .models__info {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0);
}


.models__card .models__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  z-index: 1;
  pointer-events: none;
}


@media (prefers-reduced-motion: no-preference) {
  .models__card {
    animation: galleryIn .5s ease both;
  }
  
  .models__card:nth-child(1){animation-delay:.05s}
  .models__card:nth-child(2){animation-delay:.10s}
  .models__card:nth-child(3){animation-delay:.15s}
  .models__card:nth-child(4){animation-delay:.20s}
  .models__card:nth-child(5){animation-delay:.25s}
  .models__card:nth-child(6){animation-delay:.30s}
  @keyframes galleryIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}


#models .models__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  #models .models__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
#models .models__card .models__img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1;
}


#info .models__card:nth-child(3n) .models__img { aspect-ratio: 4 / 3; }

.models__card a { -webkit-tap-highlight-color: rgba(255,255,255,0.15); }


.home__caption { display: none; }


.home__swiper.swiper-initialized .swiper-slide-active .home__caption { 
  display: block; 
}

.home__swiper{
  position: relative;
  z-index: 1;               
  height: 100vh;            
}

.home__swiper .swiper-wrapper,
.home__swiper .swiper-slide,
.home__article{
  width: 100%;
  height: 100%;
}

.home__article{
  
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.home__data{
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 3;               
  padding: 0 1rem;
}


.home__overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;               
  background:
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,0) 35%),
    linear-gradient(to top, hsla(25,70%,55%,1) 0%, hsla(25,70%,55%,.92) 35%, hsla(25,70%,55%,0) 55%);
}




.home__swiper{
  position: relative;
  z-index: 2;
  height: auto;
  margin-top: 5.5rem;  
}



.home__headline{
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 200;                     
  text-transform: uppercase;
  letter-spacing: 0.25em;               
  line-height: 1.2;
  color: rgba(255,255,255,.95);
  font-size: clamp(1.8rem, 4vw, 3rem);  
  min-height: 4rem;
  padding: .5rem .75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.25); 
  opacity: 0.95;
}



.swiper-slide-active .home__headline{
  animation: fadeUp .6s ease both;
}
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(15px); }
  to{ opacity:1; transform: translateY(0); }
}
.swiper-slide-active .home__headline{
  animation: fadeUp .9s ease both;
}


.footer__map{
  width: 100%;
  height: 220px;                  
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,.25);
}


.footer__top{
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 1rem;
}
.footer__col{ display: grid; gap: .75rem; }
.footer__brand{ gap: 1rem; }

.footer__logo{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.footer__tagline{
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.5;
}

.footer__heading{
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}

.footer__links{ list-style: none; display: grid; gap: .35rem; padding: 0; margin: 0; }
.footer__link{
  color: rgba(255,255,255,.9);
  text-decoration: none;
}
.footer__link:hover{ text-decoration: underline; }

.footer__contact{
  list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem;
  color: rgba(255,255,255,.9);
}
.footer__contact a{ color: #fff; text-decoration: none; }
.footer__contact a:hover{ text-decoration: underline; }
.footer__contact i{ margin-right: .5rem; opacity: .9; }

.footer__social{ display: flex; gap: .6rem; }
.footer__social-link{
  font-size: 1.25rem; color: #fff; opacity: .9; text-decoration: none;
}
.footer__social-link:hover{ opacity: 1; transform: translateY(-1px); }

.footer__cta-row{ margin-top: .5rem; }


@media (min-width: 768px){
  .footer__top{ grid-template-columns: 1.3fr 1fr 1.4fr; align-items: start; }
}
@media (min-width: 1150px){
  .footer__top{ gap: 3rem; }
}


.footer__map{
  width: 100%; height: 180px; margin-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow: hidden; box-shadow: 0 -4px 28px rgba(0,0,0,.22);
}
.footer__map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  
}


.footer__copy a {
  color: #fff;                         
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .3s ease;
}


.footer__copy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--first-color);      
  transition: width .3s ease;
  border-radius: 2px;
}


.footer__copy a:hover {
  color: var(--text-color);           
}
.footer__copy a:hover::after {
  width: 100%;                         
}


#models {
  padding-bottom: 5rem; 
}

#contact {
  margin-top: 3rem; 
}


section[id]{
  scroll-margin-top: calc(var(--header-height) + 1rem);
}


@media (min-width: 1150px){
  section[id]{
    scroll-margin-top: calc(var(--header-height) + 2rem);
  }
}

.contact__hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.contact__status {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.contact__status--success {
  color: #16a34a; 
}

.contact__status--error {
  color: #dc2626;
}








