@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html, * {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #6b5e52;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  border-top: 1px solid rgba(185, 146, 107, 0.5);
  border-bottom: 1px solid rgba(185, 146, 107, 0.5);
  background: #fff8ef;
  width: 100%;
  padding: 10px 0;
}

.header__container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(185, 146, 107, 0.5);
  background: #fff8ef;
  padding: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: #1a1614;
  border-radius: 2px;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 90;
}

body.no-scroll {
  overflow: hidden;
}

.header img {
  width: 70px;
  height: 55px;
  filter: brightness(1);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__item {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  font-size: 16px;
  color: #1a1614;
  cursor: pointer;
  border-radius: 8px;
}

.navbar__item:hover {
  background: rgba(185, 146, 107, 0.1);
}

.language__buttons {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(185, 146, 107, 0.5);
  background: #fff8ef;
}

.language__buttons a {
  font-size: 16px;
  cursor: pointer;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
}

.language__buttons a.active {
  font-weight: 700;
  color: #b9926b;
}

.language__buttons a:hover {
  color: #b9926b;
}

.language__buttons a:nth-child(2) {
  border-right: 1px solid rgba(185, 146, 107, 0.2);
  border-left: 1px solid rgba(185, 146, 107, 0.2);
}

.home img {
  max-width: 350px;
  height: auto;
}

.home {
  background: linear-gradient(
    176deg,
    #2e261f 10.45%,
    #41372b 53.42%,
    #2e261f 96.4%
  );
  padding: 40px 0;
  margin-bottom: 100px;
}

.home__container {
  display: flex;
  max-width: 950px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.section__name {
  color: #b9926b;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4.2px;
  display: flex;
  align-items: center;
  gap: 20px;
}

h1 {
  font-size: 96px;
  font-weight: 900;
  color: #fff;
}

.home__container p {
  font-size: 20px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  border-radius: 100px;
  background: linear-gradient(180deg, #b9926b 0%, #a17d57 100%);
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.features {
  margin-bottom: 100px;
}

.features__container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.feature__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.feature__item .icon {
  border-radius: 100px;
  border: 1px solid rgba(185, 146, 107, 0.3);
  background: linear-gradient(
    135deg,
    rgba(185, 146, 107, 0.2) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  width: 80px;
  height: 80px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.feature__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.feature__text span {
  color: #6b5e52;
  text-align: center;
  font-size: 14px;
}

.feature__text h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(180deg, #1a1614 0%, #6b5e52 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about {
  padding-top: 100px;
  border-top: 1px solid #b9926b;
  margin-bottom: 100px;
}

section header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

h2 {
  font-size: 60px;
  font-weight: 900;
}

.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 20px;
}

.about__text {
  display: flex;
  max-width: 670px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about__text p:nth-child(1) {
  color: #1a1614;
  font-weight: 500;
}

.about__content img {
  max-width: 582px;
  width: 100%;
  height: auto;
}

.services {
  margin-bottom: 100px;
}

.services__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}

.services__item {
  border-radius: 16px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: #fff;
  display: flex;
  width: 100%;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.services__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

h3 {
  color: #1a1614;
  font-size: 24px;
  font-weight: 700;
}

.services__text p {
  font-size: 16px;
  line-height: 162.5%;
}

.services .icon {
  border-radius: 14px;
  border: 1px solid rgba(185, 146, 107, 0.4);
  background: linear-gradient(
    146deg,
    rgba(185, 146, 107, 0.3) 6.5%,
    rgba(0, 0, 0, 0) 93.5%
  );
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
}

.portfolio {
  padding: 100px 0;
  background: linear-gradient(180deg, #2e261f 0%, #41372b 50%, #2e261f 100%);
  margin-bottom: 100px;
}

.portfolio__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.portfolio h2 {
  color: #fff;
}

.portfolio header p {
  color: #99a1af;
}

.portfolio__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}

.portfolio img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.team {
  margin-bottom: 100px;
}
.team__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.team__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.team__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  width: 100%;
}

.team__text {
  border-radius: 0 0 16px 16px;
  border-right: 1px solid rgba(185, 146, 107, 0.2);
  border-bottom: 1px solid rgba(185, 146, 107, 0.2);
  border-left: 1px solid rgba(185, 146, 107, 0.2);
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  flex: 1;
}

.team__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.team__text span {
  color: #b9926b;
  font-weight: 700;
}

.team img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.team__text p {
  font-size: 16px;
}

.team__item .email {
  color: #000;
  font-weight: 500;
}

.careers {
  margin-bottom: 100px;
}

.careers__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.careers__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
}

.careers__item {
  border-radius: 16px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: #fefdfb;
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  justify-self: stretch;
}

.careers__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.careers__header .icon {
  border-radius: 100px;
  border: 1px solid rgba(185, 146, 107, 0.3);
  background: linear-gradient(
    138deg,
    rgba(185, 146, 107, 0.2) 2.32%,
    rgba(0, 0, 0, 0) 97.68%
  );
  display: flex;
  width: 48px;
  height: 48px;
  padding: 14px;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
}

.careers__item p {
  font-size: 16px;
}

.bold {
  color: #000;
  font-weight: 500;
}

.careers__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #b9926b;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.careers__item:nth-child(7) {
  grid-column: 1 / span 2;
}

.careers__mail {
  border-radius: 16px;
  background: linear-gradient(180deg, #b9926b 0.38%, #a17d57 99.62%);
  display: flex;
  width: 100%;
  padding: 48px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.careers__mail span:nth-child(1) {
  font-size: 30px;
}

.testimonials {
  margin-bottom: 100px;
  display: none;
}

.testimonials__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.testimonials__list {
  display: grid;
  row-gap: 32px;
  column-gap: 32px;
  grid-template-columns: 1fr 1fr;
}

.testomial__item {
  border-radius: 16px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: #fff;
  display: flex;
  padding: 42px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  justify-self: stretch;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testomial__item span {
  color: #1a1614;
  font-weight: 700;
}

.contact {
  margin-bottom: 100px;
}

.contact__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  align-self: stretch;
}

.contact__content {
  display: flex;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.contact__tab {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(185, 146, 107, 0.2);
  background: #fefdfb;
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.right__tabs .contact__tab:nth-child(1) {
  padding: 32px;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: linear-gradient(180deg, #fff8ef 0%, #fefdfb 100%);
}

.right__tabs .contact__tab:nth-child(2) {
  padding: 32px;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: linear-gradient(180deg, #b9926b 0%, #a17d57 100%);
}

.right__tabs .contact__tab:nth-child(2) h3 {
  color: #fff;
}

.right__tabs .contact__tab:nth-child(2) span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.contact__header .icon {
  border-radius: 16777200px;
  border: 1px solid rgba(185, 146, 107, 0.4);
  background: linear-gradient(
    135deg,
    rgba(185, 146, 107, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.contact__header span {
  color: #1a1614;
  font-size: 30px;
  font-weight: 800;
}

.right__tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.right__tabs .contact__tab {
  height: 100%;
}

.contact__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.contact__body .icon {
  border-radius: 10px;
  background: rgba(185, 146, 107, 0.1);
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.right__tabs .contact__tab:nth-child(2) .contact__header .icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.contact__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact__body h3 {
  font-size: 18px;
}

.footer {
}
.footer__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.footer img {
  width: 70px;
  height: 55px;
  filter: brightness(1);
}

.footer__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__bottom {
  display: flex;
  padding: 48px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  color: #6b5e52;
  font-size: 16px;
}

.footer__column:nth-child(1) span {
  font-size: 16px;
}

.footer h3 {
  font-size: 20px;
  color: #1a1614;
}

.footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.footer li {
  font-weight: 600;
}

.footer .icon {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 16777200px;
  border: 1px solid rgba(185, 146, 107, 0.2);
  background: rgba(185, 146, 107, 0.1);
}

.footer__column:nth-child(4) li:nth-child(1),
.footer__column:nth-child(4) li:nth-child(2) {
  color: #b9926b;
}

.footer__column:nth-child(4) li:nth-child(3) {
  font-weight: 400;
}

.footer__column a:hover {
  text-decoration: underline;
}

h2 {
  text-align: center;
}

section header p {
  text-align: center;
}

/* =========================
   Responsive (media queries)
   ========================= */

@media (max-width: 1200px) {
  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 48px;
  }

  .services__list {
    grid-template-columns: 1fr 1fr;
  }

  .team__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .home {
    margin-bottom: 80px;
  }

  .features {
    margin-bottom: 80px;
  }

  .about {
    padding-top: 80px;
    margin-bottom: 80px;
  }

  .services,
  .portfolio,
  .team,
  .careers,
  .testimonials,
  .contact {
    margin-bottom: 80px;
  }

  .portfolio {
    padding: 80px 0;
  }

  /* Header -> burger + off-canvas menu */
  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 110;
  }

  .header__right {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 86vw);
    background: #fff8ef;
    border-left: 1px solid rgba(185, 146, 107, 0.4);
    padding: 80px 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    transform: translateX(110%);
    transition: transform 220ms ease;
    z-index: 100;
  }

  .header__right.is-open {
    transform: translateX(0);
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .navbar__item {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .language__buttons {
    justify-content: center;
  }

  .features__container {
    flex-direction: column;
    gap: 36px;
  }

  .about__content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .about__text {
    max-width: 100%;
  }

  .contact__content {
    flex-direction: column;
  }

  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .burger span {
    width: 100%;
  }

  .burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  .home__container {
    gap: 22px;
  }

  .home img {
    max-width: 260px;
  }

  .section__name {
    letter-spacing: 2.4px;
    gap: 12px;
  }

  .home__container p {
    font-size: 18px;
  }

  .services__container,
  .portfolio__container,
  .team__container,
  .careers__container,
  .testimonials__container,
  .contact__container,
  .about__container {
    gap: 56px;
  }

  .services__list {
    grid-template-columns: 1fr;
  }

  .portfolio__list {
    grid-template-columns: 1fr;
  }

  .portfolio img {
    height: 280px;
  }

  .team__list {
    grid-template-columns: 1fr;
  }

  .careers__list {
    grid-template-columns: 1fr;
  }

  .careers__item:nth-child(7) {
    grid-column: auto;
  }

  .testimonials__list {
    grid-template-columns: 1fr;
  }

  .contact__tab {
    padding: 28px;
  }

  .right__tabs .contact__tab:nth-child(1),
  .right__tabs .contact__tab:nth-child(2) {
    padding: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .section__name svg {
    display: none;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
  }

  .services__item,
  .careers__item,
  .testomial__item {
    padding: 24px;
  }

  .contact__tab {
    padding: 22px;
  }

  .contact__header span {
    font-size: 25px;
  }
}
