@charset "UTF-8";
/* Modern CSS Reset - 2025 version */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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;
}

/* Screen reader only - nasconde visivamente ma mantiene accessibilità */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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: "Source Sans Pro", sans-serif;
  font-size: 18px;
  color: #D4A94A;
  line-height: 1.5;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Akshar", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

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

h2 {
  font-size: 40px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 22px;
  }
}

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 18px;
  max-width: 45rem;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 480px) {
  p {
    font-size: 20px;
  }
}

a {
  color: #D4A94A;
  transition: all 0.3s ease ease;
}
a:hover {
  color: rgb(169.2834821429, 129.0669642857, 40.2165178571);
}

.hero__tagline {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #D4A94A;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero__tagline {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, #ddad64 0%, #cb9b51 24%, #f6e27a 45%, #e8e290 50%, #f6e27a 55%, #cb9b51 75%, #a3793b 100%);
    position: relative;
  }
  .hero__tagline::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 52%, transparent 55%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 8s infinite linear;
  }
}
@media (max-width: 768px) {
  .hero__tagline {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .hero__tagline {
    font-size: 22px;
  }
}

body {
  position: relative;
  background-color: #040404;
  overflow-x: hidden;
}
body > main {
  padding-top: 48px;
}
@media (max-width: 768px) {
  body > main {
    padding-top: 32px;
  }
}
@media (max-width: 480px) {
  body > main {
    padding-top: 32px;
  }
}
body::before, body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  top: 0;
  background-color: rgba(4, 4, 4, 0.05);
  transform-origin: top;
  will-change: opacity, transform;
  transition: opacity 0.8s ease-out;
}
body::after {
  top: 0;
  background-color: rgba(4, 4, 4, 0.05);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.8s ease-out;
}

.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%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animated {
  opacity: 0;
  will-change: transform, opacity;
}
.animated.fade-in-up {
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
.animated.delay-100 {
  animation-delay: 100ms;
}
.animated.delay-200 {
  animation-delay: 200ms;
}
.animated.delay-300 {
  animation-delay: 300ms;
}
.animated.delay-400 {
  animation-delay: 400ms;
}
.animated.delay-500 {
  animation-delay: 500ms;
}
.animated.delay-600 {
  animation-delay: 600ms;
}
.animated.delay-800 {
  animation-delay: 800ms;
}
.animated.delay-1000 {
  animation-delay: 1000ms;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.parallax-slow {
  transition-duration: 1.5s;
}
.reveal.parallax-medium {
  transition-duration: 1.2s;
}
.reveal.parallax-fast {
  transition-duration: 0.8s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 10;
  color: #D4A94A;
  background-color: #040404;
  transition: all 0.3s ease ease;
}
header.scrolled {
  background-color: rgba(4, 4, 4, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  color: #D4A94A;
}
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: #D4A94A;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  font-size: 18px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4A94A;
  transition: width 0.3s ease ease;
}
nav a:not(.nav-button):hover::after, nav a:not(.nav-button).active::after, nav a.active:not(.nav-button)::after {
  width: 100%;
}
nav a.nav-button {
  background-color: #D4A94A;
  color: #040404;
  padding: 4px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(212, 169, 74, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
nav a.nav-button:hover {
  background-color: #FFD700;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}
nav a.nav-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}
nav a.nav-button::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

#nav-button::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  border: none !important;
}
#nav-button:hover::after, #nav-button:active::after, #nav-button:focus::after, #nav-button.active::after {
  display: none !important;
  width: 0 !important;
  content: none !important;
}
#nav-button:hover {
  background-color: #FFD700;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.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;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  position: absolute;
  left: 3px;
  background-color: #D4A94A;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle span:first-child {
  top: 8px;
}
.mobile-menu-toggle span:nth-child(2) {
  top: 14px;
}
.mobile-menu-toggle span:last-child {
  top: 20px;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .mobile-menu-toggle {
    display: block;
  }
}

#nav-button {
  text-decoration: none;
  background-color: #D4A94A;
  color: #040404;
  padding: 4px 16px;
  border-radius: 8px;
}
#nav-button:hover {
  background-color: #FFD700;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}
#nav-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  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: #D4A94A;
  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: #D4A94A;
  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: 16px;
  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-color: rgba(212, 169, 74, 0.03);
  opacity: 0.1;
  z-index: 1;
}
.mobile-menu a {
  font-size: 32px;
  font-weight: 500;
  color: #D4A94A;
  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: #D4A94A;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.mobile-menu a:hover, .mobile-menu a:focus, .mobile-menu a.active {
  color: #D4A94A;
  transform: translateY(-3px);
}
.mobile-menu a:hover::after, .mobile-menu a:focus::after, .mobile-menu a.active::after {
  width: 60%;
}

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: #040404;
  color: #D4A94A;
  padding: 48px 0;
  border-top: 1px solid rgba(212, 169, 74, 0.15);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
footer .footer__main .footer__links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex: 2;
  justify-content: space-around;
}
@media (max-width: 768px) {
  footer .footer__main .footer__info {
    flex: 100%;
    margin-bottom: 16px;
  }
  footer .footer__main .footer__links-wrapper {
    flex: 100%;
  }
}
@media (max-width: 480px) {
  footer .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .footer__section {
  flex: 1;
  min-width: 200px;
}
footer .footer__section h4 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  color: rgb(189.8883928571, 144.7767857143, 45.1116071429);
}
footer .footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer__section ul li {
  margin-bottom: 8px;
}
footer .footer__section ul li a {
  color: #E0E0E0;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer__section ul li a:hover {
  color: #D4A94A;
  text-decoration: underline;
}
footer .footer__info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 480px) {
  footer .footer__info {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer__info .footer__logo {
  flex-shrink: 0;
}
footer .footer__info .footer__company h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}
footer .footer__info .footer__company p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
  color: #E0E0E0;
}
footer .footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 169, 74, 0.1);
  font-size: 16px;
}
@media (max-width: 480px) {
  footer .footer__copyright {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
footer .footer__copyright p {
  margin: 0;
}
footer .footer__copyright a {
  color: #D4A94A;
  text-decoration: none;
}
footer .footer__copyright a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3rem;
}
@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);
  gap: 3rem;
}
@media (max-width: 768px) {
  .grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .grid--3-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  background-color: rgba(4, 4, 4, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  border: 1px solid rgba(244, 234, 213, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.form__group {
  margin-bottom: 24px;
}
.form__label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 18px;
  color: #D4A94A;
  letter-spacing: 0.5px;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(244, 234, 213, 0.15);
  border-radius: 8px;
  background-color: rgba(4, 4, 4, 0.6);
  backdrop-filter: blur(8px);
  font-family: inherit;
  font-size: 18px;
  color: #E0E0E0;
  box-shadow: inset 0 2px 6px rgba(212, 169, 74, 0.2);
  transition: all 0.3s ease;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(212, 169, 74, 0.6);
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: rgba(212, 169, 74, 0.6);
  box-shadow: inset 0 2px 6px rgba(212, 169, 74, 0.3), 0 0 0 2px rgba(212, 169, 74, 0.1);
  background-color: rgba(4, 4, 4, 0.7);
}
.form__input:-webkit-autofill, .form__textarea:-webkit-autofill, .form__input:-webkit-autofill:hover, .form__input:-webkit-autofill:focus, .form__input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #D4A94A !important;
  caret-color: #D4A94A;
  -webkit-box-shadow: inset 0 2px 6px rgba(212, 169, 74, 0.2);
  box-shadow: inset 0 0 0 1000px rgba(4, 4, 4, 0.8) !important;
  -webkit-box-shadow: inset 0 0 0 1000px rgba(4, 4, 4, 0.8) !important;
}
.form__textarea {
  min-height: 150px;
  resize: vertical;
}
.form__error {
  color: #e53935;
  font-size: 16px;
  margin-top: 8px;
  padding-left: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(-8px);
  animation: errorFadeIn 0.3s forwards;
}
.form__error:before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(229, 57, 53, 0.1);
  color: #e53935;
  font-weight: 700;
  font-size: 10px;
}
@keyframes errorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form__group--checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}
.form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(244, 234, 213, 0.2);
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  background-color: rgba(4, 4, 4, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 3px rgba(212, 169, 74, 0.15);
  transition: all 0.3s ease;
}
.form__checkbox:hover {
  border-color: rgba(212, 169, 74, 0.4);
  background-color: rgba(4, 4, 4, 0.6);
}
.form__checkbox:checked {
  background-color: rgba(212, 169, 74, 0.8);
  border-color: rgba(212, 169, 74, 0.6);
  box-shadow: 0 0 6px rgba(212, 169, 74, 0.3);
}
.form__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  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: rgba(212, 169, 74, 0.6);
  box-shadow: inset 0 1px 3px rgba(212, 169, 74, 0.2), 0 0 0 2px rgba(212, 169, 74, 0.15);
}
.form__checkbox-label {
  font-size: 16px;
  line-height: 1.4;
  color: #D4A94A;
  user-select: none;
  cursor: pointer;
}
.form__checkbox-label a {
  color: #E0E0E0;
  text-decoration: underline;
}
.form__checkbox-label a:hover {
  text-decoration: none;
}

.button {
  display: inline-block;
  color: #040404;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.button--primary {
  background-color: #D4A94A;
  color: #040404;
  box-shadow: 0 2px 5px rgba(212, 169, 74, 0.2);
}
.button--primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}
.button--primary:hover {
  background-color: #FFD700;
  color: #040404;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}
.button--primary:hover:before {
  left: 100%;
}
.button--primary:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}
.button--secondary {
  background-color: transparent;
  color: #D4A94A;
  border: 1px solid #D4A94A;
  position: relative;
  z-index: 1;
}
.button--secondary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D4A94A;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.button--secondary:hover {
  color: #040404;
  border-color: #FFD700;
  box-shadow: 0 2px 10px rgba(212, 169, 74, 0.15);
}
.button--secondary:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #FFD700;
}
.button--secondary:active {
  transform: translateY(1px);
}
.button--tertiary {
  background-color: transparent;
  color: #D4A94A;
  padding: 4px 4px;
  border-radius: 0;
  border: none;
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  overflow: visible;
}
.button--tertiary:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #D4A94A, #FFD700);
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.button--tertiary:after {
  content: "→";
  display: inline-block;
  margin-left: 4px;
  font-size: 1.1em;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.button--tertiary:hover {
  color: #D4A94A;
  transform: translateY(-1px);
}
.button--tertiary:hover:before {
  width: 100%;
}
.button--tertiary:hover:after {
  transform: translateX(4px);
}
.button--tertiary:active {
  transform: translateY(0px);
}
.button--large {
  padding: 16px 32px;
  font-size: 20px;
}
.button--small {
  padding: 4px 16px;
  font-size: 16px;
}

.card {
  background-color: rgba(4, 4, 4, 0.8);
  border: 1px solid rgba(244, 234, 213, 0.15);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 169, 74, 0.15);
}
.card:hover .card__image::after {
  opacity: 0.7;
}
.card:hover .card__content h3 {
  color: #D4A94A;
}
.card:hover .card__content h3::before {
  transform: scaleX(1);
  transform-origin: left;
}
.card__image {
  position: relative;
  padding-top: 60%;
  background-color: #040404;
  overflow: hidden;
}
.card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(212, 169, 74, 0.2) 100%);
  opacity: 0.3;
  transition: opacity 0.6s ease, transform 0.8s ease;
}
.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.card__image:empty {
  background-color: rgba(4, 4, 4, 0.7);
}
.card__image:empty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(212, 169, 74, 0.1) 25%, transparent 25%, transparent 75%, rgba(212, 169, 74, 0.1) 75%);
  background-size: 60px 60px;
  opacity: 0.2;
  z-index: 1;
}
.card__image:empty::after {
  background: linear-gradient(-45deg, rgba(212, 169, 74, 0.1) 0%, transparent 40%, rgba(212, 169, 74, 0.1) 100%);
}
.card__content {
  padding: 16px 16px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card__content h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #D4A94A;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.card__content h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #D4A94A, #FFD700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card__content h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: radial-gradient(circle at center, rgba(212, 169, 74, 0.15) 0%, transparent 70%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.card__content h3:hover::after {
  opacity: 1;
}
.card__content p {
  font-size: 16px;
  color: #E0E0E0;
  margin-top: 16px;
  line-height: 1.6;
  position: relative;
}

.card:nth-child(3n+1) .card__image:empty {
  background-color: rgba(4, 4, 4, 0.9);
}

.card:nth-child(3n+2) .card__image:empty {
  background-color: rgba(0, 0, 0, 0.9);
}

.card:nth-child(3n+3) .card__image:empty {
  background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .card__content {
    padding: 16px 16px;
  }
  .card__content h3 {
    font-size: 18px;
  }
}
.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.about-card--reverse {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .about-card {
    padding: 8px 0;
  }
}
.about-card__placeholder {
  flex: 0 0 45%;
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card__placeholder dotlottie-wc {
  display: block;
  margin: 0 auto;
}
.about-card__content {
  flex: 1;
}
.about-card__content h3 {
  font-size: 26px;
  color: #D4A94A;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
.about-card__content p {
  color: #E0E0E0;
  margin-bottom: 16px;
  max-width: 38rem;
  line-height: 1.7;
}
.about-card__content p:last-child {
  margin-bottom: 0;
}
.about-card__subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #D4A94A;
  max-width: 38rem;
}
@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: 20px;
  }
}
@media (max-width: 480px) {
  .about-card {
    gap: 24px;
  }
  .about-card__placeholder {
    height: 200px;
  }
  .about-card__content h3 {
    font-size: 20px;
  }
  .about-card__content p {
    font-size: 16px;
  }
}

.about-paragraph {
  max-width: 800px;
  margin: 1.5rem auto 3rem;
  padding: calc(24px * 1) 16px;
  text-align: center;
  position: relative;
  opacity: 1 !important;
}
.about-paragraph p {
  font-size: calc(20px + 0.15rem);
  line-height: 1.8;
  color: #E0E0E0;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}
.about-paragraph p strong {
  color: #D4A94A;
  font-weight: 500;
}
.about-paragraph::before, .about-paragraph::after {
  content: "";
  display: block;
  height: 3px;
  width: 150px;
  background: linear-gradient(to right, transparent, #D4A94A, transparent);
  opacity: 0.9;
}
.about-paragraph::before {
  margin: 0 auto calc(16px * 1.5);
}
.about-paragraph::after {
  margin: calc(16px * 1.5) auto 0;
}
.about-paragraph.reveal {
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.about-paragraph.reveal.animate {
  opacity: 0;
  transform: translateY(20px);
}
.about-paragraph.reveal.animate.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .about-paragraph {
    padding: 16px 0;
  }
  .about-paragraph p {
    font-size: calc(16px + 0.1rem);
    line-height: 1.7;
  }
  .about-paragraph::before, .about-paragraph::after {
    width: 80px;
  }
}
@media (max-width: 480px) {
  .about-paragraph {
    padding: 8px 0;
  }
  .about-paragraph p {
    font-size: 18px;
    line-height: 1.7;
    padding: 0 8px;
  }
  .about-paragraph::before, .about-paragraph::after {
    width: 60px;
  }
}

.servizi-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}
.servizi-card--reverse {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .servizi-card {
    padding: 8px 0;
  }
}
.servizi-card__placeholder {
  flex: 0 0 45%;
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.servizi-card__placeholder dotlottie-wc {
  display: block;
  margin: 0 auto;
}
.servizi-card__content {
  flex: 1;
}
.servizi-card__content h3 {
  font-size: 26px;
  color: #D4A94A;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}
.servizi-card__content p {
  color: #E0E0E0;
  margin-bottom: 16px;
  max-width: 38rem;
  line-height: 1.7;
}
.servizi-card__content p:last-child {
  margin-bottom: 0;
}
.servizi-card__subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #D4A94A;
  max-width: 38rem;
}
@media (max-width: 768px) {
  .servizi-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .servizi-card--reverse {
    flex-direction: column;
  }
  .servizi-card__placeholder {
    width: 100%;
    flex: 0 0 220px;
    margin-bottom: 24px;
  }
  .servizi-card__content h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .servizi-card {
    gap: 24px;
  }
  .servizi-card__placeholder {
    height: 200px;
  }
  .servizi-card__content h3 {
    font-size: 20px;
  }
  .servizi-card__content p {
    font-size: 18px;
    line-height: 1.7;
  }
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .profile {
    margin-bottom: 3.5rem !important;
  }
}
@media (max-width: 576px) {
  .profile {
    margin-bottom: 4.5rem !important;
  }
}
.profile__logo {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile__logo {
    max-width: 320px;
  }
}
@media (max-width: 576px) {
  .profile__logo {
    max-width: 240px;
  }
}
.profile__logo-svg {
  width: 100%;
  height: auto;
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
}
nav li {
  position: relative;
}
nav a {
  color: #D4A94A;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0.2rem;
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
nav a:not(.nav-button):before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #D4A94A, #FFD700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
nav a:not(.nav-button):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 169, 74, 0.1) 0%, transparent 80%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
nav a:hover {
  color: #D4A94A;
}
nav a:not(.nav-button):hover:before {
  transform: scaleX(1);
  transform-origin: left;
}
nav a:not(.nav-button):hover:after {
  opacity: 1;
}
nav a:not(.nav-button).active {
  color: #D4A94A;
  font-weight: 600;
}
nav a:not(.nav-button).active:before {
  transform: scaleX(1);
  background: #D4A94A;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
  }
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #D4A94A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(4, 4, 4, 0.98);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__container {
  text-align: center;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  margin: 24px 0;
}
.mobile-menu a {
  font-size: 32px;
  color: #D4A94A;
  text-decoration: none;
  position: relative;
  padding: 4px;
  transition: color 0.3s ease;
}
.mobile-menu a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #D4A94A, #FFD700);
  transition: width 0.4s ease, left 0.4s ease;
}
.mobile-menu a:hover {
  color: #D4A94A;
}
.mobile-menu a:hover:before {
  width: 100%;
  left: 0;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobile-menu__close span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #D4A94A;
  position: absolute;
  top: 50%;
  left: 0;
}
.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.testimonial-ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  margin: 24px 0;
  position: relative;
}
.testimonial-ticker-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(212, 169, 74, 0.03);
  opacity: 0.05;
  z-index: -1;
}

.testimonial-ticker {
  position: relative;
}
.testimonial-ticker__wrapper {
  display: flex;
  animation: ticker 60s linear infinite;
  width: max-content;
}

.testimonial-item {
  padding: 0 16px;
  min-width: 320px;
  max-width: 320px;
}
@media (max-width: 480px) {
  .testimonial-item {
    min-width: 280px;
    max-width: 280px;
  }
}
.testimonial-item__content {
  background-color: rgba(4, 4, 4, 0.7);
  border: 1px solid rgba(212, 169, 74, 0.3);
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-item__content:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #D4A94A;
}
.testimonial-item__content p {
  font-size: 16px;
  line-height: 1.5;
  color: #E0E0E0;
  margin-bottom: 8px;
  position: relative;
  padding: 8px 16px;
}
.testimonial-item__content p::before, .testimonial-item__content p::after {
  font-family: Georgia, serif;
  font-size: 32px;
  position: absolute;
  opacity: 0.3;
  color: #D4A94A;
}
.testimonial-item__content p::before {
  content: '"';
  left: -8px;
  top: -8px;
}
.testimonial-item__content p::after {
  content: '"';
  right: -8px;
  bottom: -24px;
}
.testimonial-item__author {
  font-size: 14px;
  color: #D4A94A;
  align-self: flex-end;
  font-weight: 500;
  font-style: italic;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  padding: 32px 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 64px;
  }
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 992px) {
  .hero__content {
    flex-direction: column;
    gap: 54px;
  }
}
@media (max-width: 576px) {
  .hero__content {
    flex-direction: column;
    gap: 54px;
  }
}
.hero__text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  max-width: 550px;
}
@media (max-width: 992px) {
  .hero__text-content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
}
.hero #title {
  margin-bottom: 16px;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 600;
  color: #D4A94A;
  /* Chiusura del blocco @supports */
}
@media (max-width: 576px) {
  .hero #title {
    font-size: 44.8px;
  }
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero #title {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, #ddad64 0%, #cb9b51 24%, #f6e27a 45%, #e8e290 50%, #f6e27a 55%, #cb9b51 75%, #a3793b 100%);
    position: relative;
  }
  .hero #title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(45deg, transparent 0%, transparent 45%, rgba(255, 255, 255, 0.3) 48%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 52%, transparent 55%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 8s infinite linear;
  }
}
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.hero h2 {
  margin-bottom: 24px;
  color: #E0E0E0;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: normal;
}
.hero p {
  margin-bottom: 32px;
  font-size: 20px;
  color: #E0E0E0;
}
@media (max-width: 576px) {
  .hero p {
    font-size: 18px;
    line-height: 1.7;
  }
}
.hero__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .hero__buttons {
    justify-content: center;
  }
}

.section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background-color: #040404;
}
.section__title {
  text-align: center;
  margin-bottom: 48px;
  color: #D4A94A;
}
@media (max-width: 480px) {
  .section__title {
    font-size: 48px;
  }
}
.section__footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 32px;
}
.section--contact {
  background-color: #040404;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.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: 26px;
  margin-bottom: 8px;
  color: #D4A94A;
}
.profile__title {
  color: #E0E0E0;
  margin-bottom: 16px;
  font-size: 18px;
}

.project-card {
  background-color: #040404;
  border: 1px solid #f4ead5;
  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: #D4A94A;
}
.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(231.5803571429, 208.1607142857, 156.4196428571);
}
.project-card__image:empty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #D4A94A 25%, transparent 25%, transparent 75%, #D4A94A 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: 20px;
  margin-bottom: 8px;
  color: #D4A94A;
}
.project-card__content p {
  font-size: 16px;
  color: #E0E0E0;
  margin-bottom: 0;
}

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

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

.project-card:nth-child(3n+3) .project-card__image:empty {
  background-color: rgba(212, 169, 74, 0.2);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

/* 
 * Legal pages (Privacy, Cookie, Terms)
 */
.legal-section {
  padding: 64px 0;
  padding-top: 64px;
}
.legal-section .section__title {
  margin-bottom: 24px;
  color: #e0e0e0;
  font-family: "Akshar", sans-serif;
  font-weight: 600;
}
.legal-section .legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}
.legal-section .legal-content h2 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #e0e0e0;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}
.legal-section .legal-content h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  color: #e0e0e0;
  font-family: "Akshar", sans-serif;
  font-weight: 500;
}
.legal-section .legal-content p {
  margin-bottom: 8px;
  line-height: 1.6;
}
.legal-section .legal-content ul {
  margin-bottom: 16px;
  padding-left: 16px;
}
.legal-section .legal-content ul li {
  margin-bottom: 4px;
  line-height: 1.6;
}
.legal-section .legal-content ul ul {
  margin-top: 4px;
  margin-bottom: 8px;
}
.legal-section .legal-content strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .legal-section {
    padding: 24px 0;
    padding-top: 72px;
  }
}
@media (max-width: 480px) {
  .legal-section {
    padding: 16px 0;
    padding-top: 96px;
  }
  .legal-section .legal-content h2 {
    font-size: 20px;
  }
  .legal-section .legal-content h3 {
    font-size: 16px;
  }
  .legal-section .legal-content p, .legal-section .legal-content ul li {
    font-size: 16px;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  padding: 32px;
  position: relative;
  z-index: 1;
  background-color: #040404;
}
.error-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}
.error-content h1 {
  font-size: 8rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(45deg, #ddad64 0%, #cb9b51 24%, #f6e27a 45%, #e8e290 50%, #f6e27a 55%, #cb9b51 75%, #a3793b 100%);
}
.error-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #D4A94A;
}
.error-content p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #E0E0E0;
}
.error-content .error-animation {
  max-width: 300px;
  margin: 0 auto 24px;
}
.error-content .error-animation dotlottie-wc {
  width: 100%;
  height: 300px;
}
.error-content .button {
  margin-top: 24px;
}

.article {
  background-color: #040404;
  color: #E0E0E0;
  padding: 120px 0 48px 0;
}
@media (max-width: 480px) {
  .article {
    padding: 100px 0 32px 0;
  }
}
.article .container {
  max-width: 900px;
}
.article__header {
  margin-bottom: 32px;
}
.article__header h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .article__header h1 {
    font-size: 32px;
  }
}
.article__header .article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #E0E0E0;
}
.article__header .article__meta .date {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article__header .article__meta .author {
  display: flex;
  align-items: center;
  gap: 4px;
}
.article__header .article__meta .author::before {
  content: "•";
  margin-right: 4px;
}
.article__featured-image {
  width: 100%;
  height: 400px;
  background-color: rgba(212, 169, 74, 0.1);
  margin-bottom: 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.article__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__featured-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 169, 74, 0.1);
}
.article__featured-image.placeholder::after {
  content: "Placeholder";
  color: rgba(212, 169, 74, 0.4);
  font-size: 26px;
  font-weight: 500;
}
.article__content {
  margin-bottom: 48px;
}
.article__content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}
.article__content h2 {
  font-size: 32px;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #D4A94A;
}
@media (max-width: 480px) {
  .article__content h2 {
    font-size: 26px;
  }
}
.article__content h3 {
  font-size: 26px;
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .article__content h3 {
    font-size: 20px;
  }
}
.article__content ul, .article__content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.article__content ul li, .article__content ol li {
  margin-bottom: 8px;
}
.article__content blockquote {
  margin: 32px 0;
  padding: 24px;
  border-left: 4px solid #D4A94A;
  background-color: rgba(212, 169, 74, 0.05);
  font-style: italic;
}
.article__content blockquote p {
  margin-bottom: 0;
}
.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.article__tags .tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: rgba(212, 169, 74, 0.1);
  color: #D4A94A;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.article__credits {
  margin-bottom: 32px;
  font-size: 8px;
  color: #E0E0E0;
  font-style: italic;
  text-align: right;
  opacity: 0.8;
}
.article__share {
  margin-bottom: 32px;
}
.article__share h4 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E0E0E0;
}
.article__share .share-links {
  display: flex;
  gap: 16px;
}
.article__share .share-links a {
  color: #E0E0E0;
  font-size: 18px;
}
.article__share .share-links a:hover {
  color: #D4A94A;
}
.article__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 224, 224, 0.1);
}
@media (max-width: 480px) {
  .article__navigation {
    flex-direction: column;
    gap: 16px;
  }
}
.article__navigation .prev-link, .article__navigation .next-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.article__navigation .prev-link span, .article__navigation .next-link span {
  font-size: 14px;
  color: #E0E0E0;
  margin-bottom: 4px;
}
.article__navigation .prev-link p, .article__navigation .next-link p {
  color: #D4A94A;
  font-weight: 500;
  transition: color 0.3s ease;
}
.article__navigation .prev-link:hover p, .article__navigation .next-link:hover p {
  color: #E0E0E0;
}
.article__navigation .next-link {
  text-align: right;
}
@media (max-width: 480px) {
  .article__navigation .next-link {
    text-align: left;
  }
}

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(4, 4, 4, 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);
}

/* ===== Lottie sizing fixes: prevent top/bottom cropping on mobile ===== */
.about-card__placeholder,
.servizi-card__placeholder {
  overflow: visible; /* avoid clipping */
}

.about-card__placeholder dotlottie-wc,
.servizi-card__placeholder dotlottie-wc {
  display: block;
  width: 100% !important;   /* override inline sizes (e.g. 300px) */
  height: 100% !important;  /* fill placeholder */
  object-fit: contain;      /* preserve aspect ratio without stretching */
  max-width: 100%;
  max-height: 100%;
}

/* Bump heights on tablets/phones */
@media (max-width: 768px) {
  .about-card__placeholder,
  .servizi-card__placeholder {
    min-height: 300px; /* was ~220px via flex-basis; give more vertical space */
  }
}

/* Override any fixed 200px height at small phones */
@media (max-width: 480px) {
  .about-card__placeholder,
  .servizi-card__placeholder {
    height: auto;        /* override previous height:200px */
    min-height: 260px;   /* ensure enough room to avoid cropping */
  }
}

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