@import url("https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&family=Poppins:wght@300;400;500;600;700&display=swap");
/* Modern CSS Reset - 2025 version */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arvo", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 32px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: #fc771e;
  transition: all 0.3s ease ease;
}
a:hover {
  color: white;
}

.hero__tagline {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__tagline {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .hero__tagline {
    font-size: 18px;
  }
}

html {
  height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #020202;
  overflow-x: hidden;
}
body::before, body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  top: 0;
  transform-origin: top;
  will-change: opacity, transform;
  transition: opacity 0.8s ease-out;
}
body::after {
  top: 0;
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.8s ease-out;
}

main {
  padding-top: 64px;
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

body.page--home main {
  padding-top: 112px;
}

.logo-badge {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #020202;
  overflow: hidden;
}

.logo-badge--nav {
  width: 44px;
  height: 44px;
}

.logo-badge--hero {
  width: 240px;
  height: 240px;
}

.logo-badge img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.scrolling-down::before {
  opacity: 0;
}
.scrolling-down::after {
  opacity: 0.7;
}
.scrolling-contact::before {
  opacity: 0;
}
.scrolling-contact::after {
  opacity: 0.7;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .container {
    max-width: 90%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 10;
  color: #ffffff;
  background-color: #fc771e;
  transition: all 0.3s ease ease;
}
header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header.scrolled {
  background-color: #fc771e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  color: #ffffff;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}
@media (max-width: 480px) {
  nav ul {
    display: none;
  }
}
nav li {
  position: relative;
}
nav a {
  color: #020202;
  font-weight: 500;
  padding: 4px 8px;
  position: relative;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease ease;
  will-change: transform, color, background-color;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease ease;
}
nav a:hover {
  color: #ffffff;
}
nav a:hover::after {
  width: 100%;
}
nav .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 10000;
  padding: 0;
  margin-left: auto;
}
nav .mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  position: absolute;
  left: 3px;
  background-color: #020202;
  transition: all 0.3s ease;
  transform-origin: center;
}
nav .mobile-menu-toggle span:first-child {
  top: 8px;
}
nav .mobile-menu-toggle span:nth-child(2) {
  top: 14px;
}
nav .mobile-menu-toggle span:last-child {
  top: 20px;
}
@media (max-width: 768px) {
  nav .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  nav .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: #fc771e;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow: hidden;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.mobile-menu__close span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #020202;
  position: absolute;
  left: 5px;
  top: 19px;
  transition: all 0.3s ease;
}
.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}
.mobile-menu__close:hover span {
  background-color: rgba(2, 2, 2, 0.85);
  transform-origin: center;
}
.mobile-menu__close:hover span:first-child {
  transform: rotate(45deg) scale(1.2);
}
.mobile-menu__close:hover span:last-child {
  transform: rotate(-45deg) scale(1.2);
}
.mobile-menu__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
.mobile-menu li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.1s;
  list-style: none;
}
.mobile-menu li:nth-child(1) {
  transition-delay: 0.18s;
}
.mobile-menu li:nth-child(2) {
  transition-delay: 0.26s;
}
.mobile-menu li:nth-child(3) {
  transition-delay: 0.34s;
}
.mobile-menu li:nth-child(4) {
  transition-delay: 0.42s;
}
.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/dallebg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 1;
}
.mobile-menu a {
  font-size: 32px;
  font-weight: 500;
  color: #020202;
  padding: 8px 16px;
  display: block;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #020202;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  color: rgba(2, 2, 2, 0.85);
  transform: translateY(-3px);
}
.mobile-menu a:hover::after, .mobile-menu a:focus::after {
  width: 60%;
}
.mobile-menu a.active {
  color: #020202;
  transform: translateY(-3px);
}

body.mobile-menu-open {
  overflow: hidden;
}
body.mobile-menu-open .mobile-menu-toggle span:first-child {
  top: 14px;
  transform: rotate(45deg);
}
body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
body.mobile-menu-open .mobile-menu-toggle span:last-child {
  top: 14px;
  transform: rotate(-45deg);
}

footer {
  background-color: #020202;
  color: #fc771e;
  padding: 48px 0;
  border-top: 1px solid rgba(252, 119, 30, 0.25);
}
footer .footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}
footer .footer__col {
  flex: 1 1 200px;
  text-align: center;
}
footer .footer__col--brand {
  flex: 1.4 1 240px;
  text-align: left;
}
footer .footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
footer .footer__col--brand .footer__brand {
  justify-content: flex-start;
}
footer .footer__brand-name {
  font-weight: 700;
  font-size: 18px;
  color: #fc771e;
}
footer .footer__tagline,
footer .footer__address {
  margin: 0;
  color: #fc771e;
}
footer .footer__tagline {
  margin-bottom: 8px;
  font-weight: 600;
}
footer .footer__title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fc771e;
}
footer .footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
footer .footer__links a {
  color: #fc771e;
  text-decoration: none;
  transition: all 0.3s ease ease;
}
footer .footer__links a:hover, footer .footer__links a:focus {
  opacity: 0.85;
  text-decoration: underline;
}
footer .footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(252, 119, 30, 0.25);
  text-align: center;
}
footer .footer__credit {
  margin-top: 8px;
  font-size: 14px;
}
footer .footer__credit a {
  color: #fc771e;
  text-decoration: none;
}
footer .footer__credit a:hover, footer .footer__credit a:focus {
  text-decoration: underline;
  opacity: 0.85;
}
footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  footer .footer__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  footer .footer__col {
    flex: 1 1 auto;
    width: 100%;
    text-align: center;
  }
  footer .footer__col--brand {
    text-align: left;
  }
  footer .footer__links {
    align-items: center;
  }
  footer .footer__brand {
    justify-content: center;
  }
  footer .footer__col--brand .footer__brand {
    justify-content: flex-start;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 480px) {
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid--3-cols {
    grid-template-columns: 1fr;
  }
}

.form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.form__group {
  margin-bottom: 24px;
}
.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  background-color: white;
  font-family: inherit;
  font-size: 16px;
  color: #020202;
  transition: all 0.3s ease ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #fc771e;
  box-shadow: 0 0 0 2px rgba(252, 119, 30, 0.1);
}
.form__textarea {
  min-height: 150px;
  resize: vertical;
}
.form__error {
  color: #e53935;
  font-size: 14px;
  margin-top: 4px;
}
.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  background-color: white;
  transition: all 0.3s ease;
}
.form__checkbox:hover {
  border-color: rgb(212.5, 212.5, 212.5);
}
.form__checkbox:checked {
  background-color: #fc771e;
  border-color: #fc771e;
}
.form__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
.form__checkbox:focus {
  outline: none;
  border-color: #fc771e;
  box-shadow: 0 0 0 2px rgba(252, 119, 30, 0.1);
}
.form__checkbox-label {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  user-select: none;
  cursor: pointer;
}
.form__checkbox-label a {
  color: #fc771e;
  text-decoration: underline;
}
.form__checkbox-label a:hover {
  text-decoration: none;
}

.button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 0;
  transition: all 0.3s ease ease;
  will-change: transform, background-position, box-shadow;
}
.button--primary {
  background-color: #fc771e;
  color: white;
  background-image: linear-gradient(120deg, rgb(248.0921052632, 101.4421052632, 3.3078947368) 0%, #fc771e 50%, rgb(252.4026315789, 137.2526315789, 60.1973684211) 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
}
.button--primary:hover {
  background-position: 100% 50%;
  transform: scale(1.1) ease 0.3s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  color: white;
}
.button--secondary {
  background-color: transparent;
  color: #fc771e;
  border: 1px solid #fc771e;
  background-image: linear-gradient(120deg, transparent 0%, rgba(252, 119, 30, 0.1) 50%, transparent 100%);
  background-size: 260% 100%;
  background-position: 0% 50%;
}
.button--secondary:hover {
  background-position: 100% 50%;
  background-color: rgba(252, 119, 30, 0.04);
  transform: scale(1.1) ease 0.3s;
}
.button--large {
  padding: 16px 32px;
  font-size: 18px;
}
.button--small {
  padding: 4px 16px;
  font-size: 14px;
}

.card {
  background-color: #2a2a2a;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.card:hover {
  background-position: 100% 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.card__image {
  position: relative;
  padding-top: 60%;
  background-color: #fc771e;
}
.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease ease;
}
.card__image:empty {
  background-color: rgb(253.3421052632, 179.8421052632, 130.6578947368);
}
.card__image:empty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fc771e 25%, transparent 25%, transparent 75%, #fc771e 75%);
  background-size: 60px 60px;
  opacity: 0.2;
}
.card__content {
  padding: 16px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card__content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}
.card__content p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .card__content {
    padding: 8px 16px;
  }
  .card__content h3 {
    font-size: 18px;
  }
}
.card:nth-child(3n+1) .card__image:empty {
  background-color: rgb(253.3421052632, 179.8421052632, 130.6578947368);
}

.card:nth-child(3n+2) .card__image:empty {
  background-color: #686868;
}

.card:nth-child(3n+3) .card__image:empty {
  background-color: rgba(252, 119, 30, 0.2);
}

.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.about-card--reverse {
  flex-direction: row-reverse;
}
.about-card__placeholder {
  flex: 0 0 45%;
  position: relative;
  height: 300px;
  border-radius: 8px;
  background-color: rgb(254.3486842105, 225.4736842105, 206.1513157895);
  overflow: hidden;
}
.about-card__placeholder--image {
  background-color: transparent;
}
.about-card__placeholder--image::after {
  content: none;
}
.about-card__placeholder--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-card__placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(252, 119, 30, 0.1) 25%, transparent 25%, transparent 75%, rgba(252, 119, 30, 0.1) 75%);
  background-size: 60px 60px;
  opacity: 0.3;
}
.about-card:nth-child(2) .about-card__placeholder {
  background-color: rgb(180.5, 180.5, 180.5);
}
.about-card:nth-child(2) .about-card__placeholder::after {
  background-image: linear-gradient(45deg, rgba(2, 2, 2, 0.1) 25%, transparent 25%, transparent 75%, rgba(2, 2, 2, 0.1) 75%);
}
.about-card:nth-child(3) .about-card__placeholder {
  background-color: rgba(252, 119, 30, 0.1);
}
.about-card:nth-child(3) .about-card__placeholder::after {
  background-image: linear-gradient(-45deg, rgba(252, 119, 30, 0.1) 25%, transparent 25%, transparent 75%, rgba(252, 119, 30, 0.1) 75%);
}
.about-card__content {
  flex: 1;
}
.about-card__content h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}
.about-card__content p {
  color: #ffffff;
  margin-bottom: 16px;
}
.about-card__content p:last-child {
  margin-bottom: 0;
}
.about-card__subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #fc771e;
}
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .about-card--reverse {
    flex-direction: column;
  }
  .about-card__placeholder {
    width: 100%;
    flex: 0 0 220px;
    margin-bottom: 24px;
  }
  .about-card__content h3 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about-card {
    gap: 24px;
  }
  .about-card__placeholder {
    height: 200px;
  }
  .about-card__content h3 {
    font-size: 18px;
  }
  .about-card__content p {
    font-size: 16px;
  }
}

.layer-card {
  background-color: #2a2a2a;
  border-radius: 48px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  color: #ffffff;
}
.layer-card h1,
.layer-card h2,
.layer-card h3,
.layer-card p,
.layer-card label {
  color: #ffffff;
}
.layer-card input,
.layer-card textarea,
.layer-card select {
  color: #020202;
}

.hero-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  min-height: 60vh;
}

.hero-card__media {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card__media .logo-badge {
  flex: 0 0 auto;
}
.hero-card__media > img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.hero-card__body {
  flex: 1 1 66.6667%;
  max-width: 66.6667%;
  text-align: left;
}

.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: left;
  padding: 0 16px;
  margin: 0;
  margin-bottom: 128px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.hero__content {
  width: 100%;
  margin-top: 24px;
  background-image: url(../img/bgmtg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(2, 2, 2, 0.55);
  border-radius: inherit;
  z-index: 0;
}
.hero__content > * {
  position: relative;
  z-index: 1;
}
.hero .layer-card {
  padding: 32px;
}
.hero .profile {
  margin-bottom: 8px;
  align-items: start;
  text-align: left;
}
.hero .profile__name {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero .profile__title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  text-align: left;
}
.hero__tagline {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
.hero__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background-color: #020202;
}
.section.section--layered {
  background-color: transparent;
}
.section__title {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}
.section--contact {
  background-color: #020202;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.home-products__footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.home-products__all {
  color: #fc771e;
  text-decoration: none;
  font-weight: 600;
}
.home-products__all:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  body.page--home .container {
    max-width: 100%;
    padding: 0 16px;
  }
  body.page--home #home .container {
    padding: 0;
  }
  .layer-card {
    border-radius: 16px;
    padding: 32px;
  }
  .hero-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .hero {
    margin-top: 128px;
    margin-bottom: 152px;
  }
  .hero-card__body {
    text-align: left;
    max-width: 100%;
  }
  .hero-card__media {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .hero__buttons {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  body.page--home .hero-card__media {
    display: none;
  }
  body.page--home .hero {
    margin-top: 96px;
  }
  body.page--home .profile__name {
    font-size: 40px;
  }
  body.page--home .profile__title {
    font-size: 16px;
  }
  body.page--home .hero__tagline {
    font-size: 18px;
  }
}
.profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  margin-bottom: 32px;
}
.profile__image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border: 4px solid white;
}
.profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile__name {
  font-size: 24px;
  margin-bottom: 8px;
  color: #ffffff;
}
.profile__title {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
}

.project-card {
  background-color: #020202;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.project-card__image {
  position: relative;
  padding-top: 60%;
  background-color: #fc771e;
}
.project-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease ease;
}
.project-card__image:empty {
  background-color: rgb(253.3421052632, 179.8421052632, 130.6578947368);
}
.project-card__image:empty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #fc771e 25%, transparent 25%, transparent 75%, #fc771e 75%);
  background-size: 60px 60px;
  opacity: 0.2;
}
.project-card__content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.project-card__content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}
.project-card__content p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .project-card__content {
    padding: 8px;
  }
  .project-card__content h3 {
    font-size: 18px;
  }
}
.project-card:nth-child(3n+1) .project-card__image:empty {
  background-color: rgb(253.3421052632, 179.8421052632, 130.6578947368);
}

.project-card:nth-child(3n+2) .project-card__image:empty {
  background-color: #686868;
}

.project-card:nth-child(3n+3) .project-card__image:empty {
  background-color: rgba(252, 119, 30, 0.2);
}

.breadcrumb {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: #fc771e;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.product-detail {
  display: grid;
  gap: 24px;
}
.product-detail__image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  background: rgba(252, 119, 30, 0.08);
}
.product-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.product-detail__content h1 {
  margin-bottom: 16px;
}
.product-detail__content p {
  color: #ffffff;
  margin-bottom: 16px;
}
.product-detail__price {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.tournament-detail__title {
  margin-bottom: 24px;
}
.tournament-detail__list {
  display: grid;
  gap: 0;
  background-color: #2a2a2a;
  border-radius: 16px;
  padding: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.tournament-detail__header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tournament-detail__header-name, .tournament-detail__header-score, .tournament-detail__header-stages {
  font-weight: 600;
  color: #fc771e;
}
.tournament-detail__header-score, .tournament-detail__header-stages {
  text-align: right;
  white-space: nowrap;
}
.tournament-detail__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.tournament-detail__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tournament-detail__row-name {
  font-weight: 600;
  color: #ffffff;
}
.tournament-detail__row-score {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-align: right;
}
.tournament-detail__row-stages {
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  text-align: right;
}

.card-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.card-link:focus-visible {
  outline: 2px solid #fc771e;
  outline-offset: 3px;
  border-radius: 8px;
}

.products-category:not(:last-child) {
  margin-bottom: 32px;
}

.products-category__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.products-category__title {
  margin-bottom: 0;
}

.products-category__link {
  color: #fc771e;
  text-decoration: none;
  font-weight: 600;
}
.products-category__link:hover {
  text-decoration: underline;
}

.events__subtitle {
  text-align: left;
  margin-top: 16px;
  margin-bottom: 24px;
}

.weekly-calendar {
  text-align: left;
  margin-bottom: 64px;
}

.weekly-calendar__week-title {
  margin-bottom: 24px;
}

.weekly-calendar__days {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.weekly-calendar__day {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.weekly-calendar__day:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.weekly-calendar__day-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 600;
}

.weekly-calendar__day-name {
  color: #fc771e;
}

.weekly-calendar__events {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.weekly-calendar__event {
  background-color: rgba(42, 42, 42, 0.25);
  border-radius: 8px;
  padding: 16px 24px;
  flex: 1 1 260px;
  min-width: 240px;
}

.weekly-calendar__day-date {
  color: #fc771e;
}

.weekly-calendar__day-hours {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.weekly-calendar__event-time {
  font-weight: 600;
  margin-bottom: 4px;
}

.weekly-calendar__event-title {
  font-weight: 500;
  margin-bottom: 4px;
}

.weekly-calendar__event-meta {
  font-size: 14px;
  color: #ffffff;
}

#tournament-cards .card {
  background-color: #2a2a2a;
  border: 0;
}

@media (max-width: 768px) {
  .weekly-calendar__events {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .weekly-calendar__event {
    flex: 0 0 auto;
    min-width: 0;
  }
}
.contact-extras {
  margin-top: 64px;
  gap: 88px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}

.contact-extras > * {
  width: 100%;
}

.contact-extras > .card {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-extras .form-container {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-extras .form {
  max-width: 500px;
}

.card__content-telefono {
  margin-bottom: 32px;
}

.contact-phone {
  margin-bottom: 24px;
}

.contact-map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 16px 0;
}
.contact-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {
  .contact-extras {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .contact-extras .form {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-map iframe {
    height: 280px;
  }
}
body.dark-theme {
  --background-color: $dark-background;
  --text-color: $light-color;
  --light-text-color: $light-text-color;
  --header-bg-color: $dark-background;
  --footer-bg-color: $dark-background;
  --border-color: rgba(255, 255, 255, 0.1);
  background-color: var(--background-color);
  color: var(--text-color);
}
body.dark-theme header.scrolled {
  background-color: rgba(18, 18, 18, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
body.dark-theme .button--secondary {
  border-color: #f5f5f5;
  color: #f5f5f5;
}
body.dark-theme input, body.dark-theme textarea, body.dark-theme select {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color);
  color: var(--text-color);
}

/*# sourceMappingURL=main.css.map */
