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

html {
  font-size: 16px;
}

body {
  font-family: "Helvetika Now Display", sans-serif;
  line-height: 1.6;
  color: #F13210;
  background-color: #FFFEF6;
  padding-top: 70px;
}

@font-face {
  font-family: "Helvetika Now Display";
  src: url("/fonts/helvetika-now-display/HelveticaNowDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetika Now Display";
  src: url("/fonts/helvetika-now-display/HelveticaNowDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetika Now Display";
  src: url("/fonts/helvetika-now-display/HelveticaNowDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetika Now Display";
  src: url("/fonts/helvetika-now-display/HelveticaNowDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetika Now Display";
  src: url("/fonts/helvetika-now-display/HelveticaNowDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monte Carlo";
  src: url("/fonts/monte-carlo/MonteCarlo-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #F13210;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #F13210;
}

li {
  list-style: none;
}

.italic-font {
  font-family: "Monte Carlo", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.italic-font {
  font-family: "Monte Carlo", cursive;
  font-style: normal;
}

.text-cta {
  text-decoration: underline;
  color: #F13210;
  text-transform: uppercase;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: #FFFEF6;
  max-width: 100vw;
}
.header__container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
}
.header__logo-title {
  font-family: "Helvetika Now Display", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1em, 3vh, 5vh);
  font-weight: 700;
  color: #F13210;
  margin: 0;
  padding: 0;
}
.header__menu-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  order: -1;
}
.header__menu-button-line {
  width: 100%;
  height: 3px;
  background: #F13210;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__menu-button--open .header__menu-button-line {
  background: #FFFEF6;
}
.header__menu-button--open .header__menu-button-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__menu-button--open .header__menu-button-line:nth-child(2) {
  opacity: 0;
}
.header__menu-button--open .header__menu-button-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F13210;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__overlay--open {
  opacity: 1;
  visibility: visible;
}
.header__nav {
  display: none;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 3.5rem;
  color: #FFFEF6;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFFEF6;
  transition: width 0.3s ease;
}
.header__nav-link:hover {
  color: #FFFEF6;
}
.header__nav-link:hover::after {
  width: 100%;
}
.header__overlay--open .header__nav {
  display: flex;
  width: 90%;
}
.header__lang {
  flex-shrink: 0;
  margin-left: auto;
}
.header__lang-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid #F13210;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 0.875rem;
  color: #F13210;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.header__lang-button:hover {
  background: #F13210;
  color: #FFFEF6;
}
.header__lang-current {
  font-weight: 700;
}
.header__lang-separator {
  color: #F13210;
}
.header__lang-option {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .header__logo-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .header__container {
    padding: 0 1rem;
  }
  .header__logo-image {
    height: 40px;
  }
  .header__lang-button {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  .header__nav-link {
    font-size: 1.25rem;
  }
}
.footer {
  background: #F13210;
  color: #FFFEF6;
  padding: 5rem 1.5rem;
  position: relative;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.footer__left {
  flex: 1;
}
.footer__title {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #FFFEF6;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.05em;
}
.footer__copyright {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 0.875rem;
  color: #FFFEF6;
  margin: 0;
}
.footer__right {
  display: flex;
  gap: 5rem;
  flex: 1;
  justify-content: center;
}
.footer__nav-column {
  display: flex;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__nav-item {
  margin: 0;
}
.footer__nav-link {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 1.4em;
  color: #FFFEF6;
  text-decoration: underline;
  text-transform: none;
  transition: opacity 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.8;
}
.footer__scroll-top {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid #FFFEF6;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFEF6;
  transition: all 0.3s ease;
  padding: 0;
}
.footer__scroll-top:hover {
  background: #FFFEF6;
  color: #F13210;
}
.footer__scroll-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__title {
    font-size: 2rem;
  }
  .footer__right {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  .footer__scroll-top {
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
  .footer__scroll-top svg {
    width: 20px;
    height: 20px;
  }
}
.home_hero-image {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.home_hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_hero-image::before {
  content: "(";
  position: absolute;
  color: #F13210;
  font-size: 40vh;
  font-family: "Monte Carlo", cursive;
  line-height: 1;
  top: -10%;
  left: 8%;
}
.home_hero-image::after {
  content: ")";
  position: absolute;
  color: #F13210;
  font-family: "Monte Carlo", cursive;
  font-size: 40vh;
  line-height: 1;
  top: -10%;
  right: 8%;
}

.home__hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 1em;
}
.home__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.home__hero-title {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #F13210;
  line-height: 1;
}
.home__hero-subtitle {
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 1.5rem;
  color: #F13210;
  font-weight: 300;
}
.home__about-us {
  margin: 5rem auto;
  max-width: 95%;
}
.home__about-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.home__about-us-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__about-us-txt {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.home__about-us-txt h3 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 0.6;
  color: #F13210;
}
.home__about-us #double {
  grid-column: span 2;
}
.home__our-team {
  background: #F13210;
  color: #FFFEF6;
  min-height: 100vh;
  padding: 3rem;
}
.home__our-team h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 0.6;
  color: #FFFEF6;
}
.home__our-team h2 {
  font-size: 22vh;
  font-weight: 600;
  text-transform: uppercase;
  font-stretch: condensed;
  line-height: 1;
  color: #FFFEF6;
  letter-spacing: -11px;
}
.home__our-team-grid {
  display: grid;
  grid-template-columns: repeat(6, 16.6666666667%);
  grid-template-rows: repeat(3, 33.3333333333%);
  position: relative;
}
.home__our-team-grid h2:nth-child(1) {
  grid-column: 1/span 3;
  grid-row: 1/span 1;
  margin-bottom: 0;
}
.home__our-team-grid h2:nth-child(2) {
  grid-column: 6/span 2;
  grid-row: span 1;
  margin-left: -10px;
  justify-self: flex-end;
  text-align: right;
}
.home__our-team-grid h2:nth-child(3) {
  grid-column: 4/span 3;
  grid-row: 3/span 1;
  z-index: 20;
  align-self: flex-end;
  margin-left: -40px;
}
.home__our-team-grid .home__our-team-image {
  height: 89%;
  rotate: -16deg;
  position: absolute;
  top: 32%;
  left: 34%;
}
.home__our-team-grid .home__our-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__our-team-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__services {
  min-height: 100vh;
  margin: 5rem auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.home__services i {
  font-size: 10vh;
}
.home__services h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 0.6;
  text-transform: uppercase;
  color: #F13210;
}
.home__services h2 {
  font-size: 3.5rem;
  font-weight: 400;
  position: sticky;
  left: 0;
  width: 50%;
  line-height: 0.6;
}
.home__services a {
  text-decoration: underline;
  color: #F13210;
  text-transform: uppercase;
  font-size: 1rem;
}
.home__services-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.home__services-slider-wrapper {
  width: 100%;
  overflow: hidden;
}
.home__services-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.home__services-slider-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem 0;
}
.home__services-slider-slide h2 {
  font-size: clamp(1.5em, 6vh, 5.5em);
  font-weight: 400;
  line-height: 0.6;
  margin-bottom: -130px;
  z-index: 10;
  position: relative;
  color: #F13210;
}
@media screen and (max-width: 768px) {
  .home__services-slider-slide h2 {
    margin-bottom: 0;
  }
}
.home__services-slider-item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .home__services-slider-item {
    gap: 1rem;
  }
}
.home__services-slider-item-text {
  width: 50%;
  min-width: 200px;
  flex-grow: 2;
  flex: 0 0 50%;
  padding: 1rem 1rem 0 1rem;
  display: flex;
  align-items: flex-end;
  background: #FFFEF6;
}
@media screen and (max-width: 768px) {
  .home__services-slider-item-text {
    width: 100%;
    flex-grow: 1;
    flex: 0 0 100%;
  }
}
.home__services-slider-item-text p {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.home__services-slider-item-image {
  width: 50%;
  flex: 0 0 50%;
  overflow: hidden;
  background: #FFFEF6;
}
@media screen and (max-width: 768px) {
  .home__services-slider-item-image {
    width: 100%;
    flex-grow: 1;
    flex: 0 0 100%;
  }
}
.home__services-slider-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home__services-slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
  position: absolute;
  gap: 1rem;
  top: 50%;
  width: 100%;
}
.home__services-slider-button {
  background: transparent;
  border: 2px solid #F13210;
  color: #F13210;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
}
.home__services-slider-button:hover {
  background: #F13210;
  color: #FFFEF6;
}
.home__services-slider-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.home__services-slider-button span {
  display: block;
  line-height: 1;
}
.home__services-slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.home__services-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #F13210;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.home__services-slider-dot:hover, .home__services-slider-dot.active {
  background: #F13210;
}
@media (max-width: 768px) {
  .home__services-item {
    flex-direction: column;
    min-height: auto;
  }
  .home__services-item-text {
    width: 100%;
    flex: 0 0 100%;
    padding: 1.5rem;
  }
  .home__services-item-image {
    width: 100%;
    flex: 0 0 100%;
    min-height: 300px;
  }
  .home__services-slide h2 {
    font-size: 1.8em;
  }
}
.home__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 1.5rem;
  flex-direction: column;
}
.home__section-title {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 4 0;
  color: #F13210;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.home__projects {
  padding: 5rem 0;
  background: #FFFEF6;
}
.home__projects-categories {
  display: flex;
  row-gap: 0;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home__projects-categories li {
  font-size: calc(1.3em + 1vh);
  font-weight: 300;
}
.home__projects-categories-link {
  color: #F13210;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.home__projects-categories-link:hover {
  opacity: 0.7;
}
.home__projects-categories-link.active {
  font-weight: 600;
  opacity: 1;
}
.home__projects-preview {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.home__projects-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.home__projects-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  transition: opacity 0.3s ease;
}
.home__projects p {
  font-size: 1rem;
  font-weight: 400;
  width: 50%;
  line-height: 1.2;
  margin: 0;
}
.home__projects .text-cta {
  display: block;
  width: fit-content;
  align-self: flex-end;
}
.home__projects-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
.home__project-card {
  background: #FFFEF6;
}
.home__project-image {
  margin: 0 auto;
  background: #FFFEF6;
  display: flex;
  justify-content: center;
  max-width: 500px;
  max-height: 700px;
  width: 100%;
  height: 100%;
}
.home__project-image img {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.home__project-image-content {
  padding: 1.5rem;
}
.home__project-image-category {
  display: inline-block;
  font-size: 0.875rem;
  color: #F13210;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.home__project-image-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F13210;
  margin-bottom: 1rem;
}
.home__project-image-description {
  font-family: "Helvetika Now Display", sans-serif;
  color: #F13210;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.home__project-image-link {
  display: inline-block;
  font-family: "Helvetika Now Display", sans-serif;
  color: #F13210;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid #F13210;
  transition: color 0.3s ease;
}
.home__project-image-link:hover {
  color: #F13210;
}
.home__no-projects {
  text-align: center;
  font-family: "Helvetika Now Display", sans-serif;
  color: #F13210;
  font-size: 1.25rem;
  padding: 3rem 0;
}
.home__newsletter {
  background: #F13210;
  color: #FFFEF6;
  padding: 5rem 1.5rem;
}
.home__newsletter p {
  margin: 0 auto 2em auto;
}
.home__newsletter h1 {
  color: #FFFEF6;
  font-size: 12vw;
  font-weight: 400;
  line-height: 0.6;
  text-transform: uppercase;
}
.home__newsletter form {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5rem;
}
.home__newsletter form input {
  appearance: none;
  border: none;
  background: none;
  padding-bottom: 1rem;
  border-bottom: 2px solid #FFFEF6;
  font-size: 1.8em;
}
.home__newsletter form input::placeholder {
  color: #FFFEF6 !important;
}
.home__newsletter form a {
  width: fit-content;
  grid-column-start: 2;
  grid-row-start: 2;
  justify-self: flex-end;
}
.home__newsletter form a button {
  background: none;
  color: #FFFEF6 !important;
  border: none;
  font-size: 1.8em;
  text-decoration: underline;
  text-transform: uppercase;
}
.home__faq {
  padding: 5rem 0;
  background: #FFFEF6;
  margin: 5rem auto;
  max-width: 95%;
}
.home__faq-container {
  margin: 0 auto;
  padding: 0 1.5rem;
}
.home__faq h1 {
  color: #F13210;
  font-size: 7.5vw;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-align: left;
}
.home__faq-item {
  border-bottom: 1px solid #F13210;
  transition: all 0.3s ease;
}
.home__faq-item:last-child {
  border-bottom: none;
}
.home__faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
  transition: all 0.3s ease;
}
.home__faq-button:hover {
  opacity: 0.8;
}
.home__faq-button:focus {
  outline: 2px solid #F13210;
  outline-offset: 2px;
}
.home__faq-question {
  font-size: 1.8em;
  font-weight: 400;
  color: #F13210;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}
.home__faq-icon {
  font-size: 1.5rem;
  color: #F13210;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
  transform: rotate(240deg);
  line-height: 1;
}
.home__faq-icon--open {
  transform: rotate(360deg);
}
.home__faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.home__faq-answer {
  padding: 0 0 1.5rem 0;
  font-size: 1.125rem;
  font-weight: 300;
  color: #F13210;
  line-height: 1.6;
  margin: 0;
}
.home__contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 5rem 0;
  background: #FFFEF6;
  margin: 5rem auto;
  justify-content: space-between;
  max-width: 95%;
}
.home__contact h1 {
  font-size: 2.5rem;
  width: 100%;
}
.home__contact > *:not(h1) {
  width: 31.25%;
  flex-grow: 2;
}
.home__contact .paragraph {
  line-height: 1;
}
.home__contact .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__contact .social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  line-height: 1;
}
.home__contact .social-links li {
  text-align: right;
  width: fit-content;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  color: #F13210;
  transition: all 0.3s ease;
}
.home__contact .social-links li:hover {
  color: #F13210;
  text-decoration: none;
}

@media (max-width: 768px) {
  .home__hero-title {
    font-size: 2.5rem;
  }
  .home__hero-subtitle {
    font-size: 1.25rem;
  }
  .home__section-title {
    font-size: 2rem;
  }
  .home__projects-grid {
    grid-template-columns: 1fr;
  }
  .home__categories-list {
    grid-template-columns: 1fr;
  }
  .home__faq-question {
    font-size: 1.5rem;
  }
  .home__faq-answer {
    font-size: 1rem;
  }
}
.home__projects-category-link {
  transition: all 0.3s ease;
  text-decoration: none;
}
.home__projects-category-link:hover {
  text-decoration: underline;
}

.admin-body {
  margin: 0;
  padding: 0;
  font-family: "Helvetika Now Display", sans-serif;
  background: #FFFEF6;
  color: #F13210;
}

.admin-nav {
  background: #F13210;
  color: #FFFEF6;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.admin-nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-nav__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.admin-nav__title a {
  color: #FFFEF6;
  text-decoration: none;
}
.admin-nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.admin-nav__menu li {
  margin: 0;
}
.admin-nav__menu a {
  color: #FFFEF6;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.admin-nav__menu a:hover {
  opacity: 0.8;
}

.admin-main {
  min-height: calc(100vh - 80px);
  padding: 3rem 0;
}

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.admin-header__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.admin-header__actions {
  display: flex;
  gap: 1rem;
}

.admin-alert {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-weight: 500;
}
.admin-alert--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.admin-alert--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.admin-button {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #F13210;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #F13210;
}
.admin-button--primary {
  background: #F13210;
  color: #FFFEF6;
}
.admin-button--primary:hover {
  background: rgb(194.6007905138, 39.0830039526, 11.3992094862);
  border-color: rgb(194.6007905138, 39.0830039526, 11.3992094862);
}
.admin-button--secondary {
  background: transparent;
  color: #F13210;
}
.admin-button--secondary:hover {
  background: #F13210;
  color: #FFFEF6;
}
.admin-button--danger {
  background: #dc3545;
  color: #FFFEF6;
  border-color: #dc3545;
}
.admin-button--danger:hover {
  background: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.admin-button--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.admin-table-container {
  overflow-x: auto;
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 4px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table thead {
  background: #F13210;
  color: #FFFEF6;
}
.admin-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.admin-table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(241, 50, 16, 0.2);
}
.admin-table tbody tr:hover {
  background: rgba(241, 50, 16, 0.05);
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table__image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.admin-table__no-image {
  color: rgba(241, 50, 16, 0.5);
  font-style: italic;
}
.admin-table__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.admin-table__empty {
  text-align: center;
  padding: 3rem;
  color: rgba(241, 50, 16, 0.5);
  font-style: italic;
}

.admin-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}
.admin-badge--success {
  background: #d4edda;
  color: #155724;
}
.admin-badge--warning {
  background: #fff3cd;
  color: #856404;
}

.admin-form-container {
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 4px;
  padding: 3rem;
}

.admin-form__group {
  margin-bottom: 2rem;
}
.admin-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #F13210;
}
.admin-form__input, .admin-form__select, .admin-form__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #F13210;
  border-radius: 4px;
  font-family: "Helvetika Now Display", sans-serif;
  font-size: 1rem;
  color: #F13210;
  background: #FFFEF6;
  transition: border-color 0.3s ease;
}
.admin-form__input:focus, .admin-form__select:focus, .admin-form__textarea:focus {
  outline: none;
  border-color: rgb(194.6007905138, 39.0830039526, 11.3992094862);
}
.admin-form__textarea {
  resize: vertical;
  min-height: 120px;
}
.admin-form__file {
  width: 100%;
  padding: 1rem;
  border: 2px dashed #F13210;
  border-radius: 4px;
  background: rgba(241, 50, 16, 0.05);
  cursor: pointer;
}
.admin-form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-form__checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.admin-form__help {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(241, 50, 16, 0.7);
}
.admin-form__current-image, .admin-form__gallery-preview {
  margin-bottom: 1.5rem;
}
.admin-form__current-label {
  font-weight: 500;
  margin-bottom: 1rem;
  color: #F13210;
}
.admin-form__preview {
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #F13210;
  margin-bottom: 1rem;
}
.admin-form__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-form__gallery-item {
  position: relative;
}
.admin-form__actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(241, 50, 16, 0.2);
}
.admin-form .form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.admin-detail {
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 4px;
  padding: 3rem;
}
.admin-detail__section {
  margin-bottom: 3rem;
}
.admin-detail__section:last-child {
  margin-bottom: 0;
}
.admin-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #F13210;
  border-bottom: 2px solid #F13210;
  padding-bottom: 0.5rem;
}
.admin-detail__list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem 1.5rem;
}
.admin-detail__list dt {
  font-weight: 700;
  color: #F13210;
}
.admin-detail__list dd {
  margin: 0;
}
.admin-detail__text {
  line-height: 1.6;
  color: #F13210;
}
.admin-detail__image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 2px solid #F13210;
}
.admin-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.admin-detail__gallery-item {
  position: relative;
}
.admin-detail__gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid #F13210;
}

@media (max-width: 768px) {
  .admin-nav__container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .admin-nav__menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .admin-table {
    font-size: 0.875rem;
  }
  .admin-table th,
  .admin-table td {
    padding: 1rem;
  }
  .admin-table__actions {
    flex-direction: column;
  }
  .admin-detail__list {
    grid-template-columns: 1fr;
  }
  .admin-detail__list dt {
    margin-top: 1rem;
  }
}
.admin-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem;
}

.admin-login-card {
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 8px;
  padding: 5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #F13210;
  text-align: center;
  margin-bottom: 0.5rem;
}

.admin-login-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #F13210;
  text-align: center;
  margin-bottom: 3rem;
}

.admin-login-form .admin-form__group {
  margin-bottom: 2rem;
}
.admin-login-form .admin-form__actions {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 0;
  border-top: none;
}

.admin-button--full {
  width: 100%;
  text-align: center;
}

.admin-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}
.admin-dashboard__stat-card {
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
}
.admin-dashboard__stat-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #F13210;
  margin-bottom: 1.5rem;
}
.admin-dashboard__stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #F13210;
  margin: 1.5rem 0;
  line-height: 1;
}
.admin-dashboard__stat-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #F13210;
  text-decoration: underline;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}
.admin-dashboard__stat-link:hover {
  opacity: 0.8;
}
.admin-dashboard__actions {
  background: #FFFEF6;
  border: 2px solid #F13210;
  border-radius: 4px;
  padding: 3rem;
}
.admin-dashboard__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F13210;
  margin-bottom: 2rem;
}
.admin-dashboard__action-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/*# sourceMappingURL=app.css-NQBtsvz.map */
