/* #- ROOT & VARIABLES -# */
:root {
  --color-black: #050505;
  --color-white: #ffffff;
  --color-offwhite: #f9f9f9;
  --color-accent: #c2a176;
  --color-gray: #777777;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --section-padding: clamp(5rem, 12vw, 10rem);
  --container-width: 1280px;

  --ease-lux: cubic-bezier(0.25, 1, 0.2, 1);
}

/* #- RESET & BASE -# */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background-color: var(--color-offwhite);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* #- UTILITIES -# */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: var(--section-padding) 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.eyebrow,
.eyebrow-dark {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.eyebrow {
  color: var(--color-accent);
}

.eyebrow-dark {
  color: var(--color-gray);
}

/* #- BUTTONS -# */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s var(--ease-lux);
  position: relative;
  overflow: hidden;
}

.btn-outline-light {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-outline-dark {
  border: 1px solid var(--color-black);
  color: var(--color-black);
}

.btn-outline-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-link {
  padding: 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 5px;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-link span {
  transition: transform 0.3s ease;
}

.btn-link:hover span {
  transform: translateX(5px);
}

/* #- HEADER & NAVBAR -# */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.5s var(--ease-lux);
}

header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.5s ease;
  z-index: 1001;
}

header.scrolled .logo,
.menu-open .logo {
  color: var(--color-black);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  transition: color 0.5s ease;
}

header.scrolled .nav-links a {
  color: var(--color-black);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.4s var(--ease-lux);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 28px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background-color: var(--color-white);
  transition: all 0.4s var(--ease-lux);
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 40%; }

header.scrolled .hamburger span,
.menu-open .hamburger span {
  background-color: var(--color-black);
}

.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 100%;
}

.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 100%;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease-lux);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 70%;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--color-black);
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s var(--ease-lux);
  letter-spacing: 1px;
}

.mobile-menu-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-menu-footer {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-lux) 0.5s;
  color: var(--color-gray);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2rem;
  width: 200px;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-email {
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.mobile-menu-phone {
  margin-bottom: 1rem;
}

.mobile-menu-socials a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent) !important;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
}

/* #- HERO -# */
.hero {
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/imgs/banner_home-scaled.jpg") center/cover no-repeat;
  z-index: 1;
  animation: zoomOutHero 10s infinite alternate linear;
}

@keyframes zoomOutHero {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

.video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-bg-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-mobile {
  display: none;
}

.video-desktop {
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 5%;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 3rem;
  color: #e0e0e0;
}

@media (max-width: 767px) {
  .video-desktop {
    display: none !important;
  }

  .video-mobile {
    display: block !important;
  }
}

/* #- VISION -# */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.vision-text p {
  margin-bottom: 1.5rem;
  color: var(--color-gray);
  font-size: 1.05rem;
}

.vision-image {
  position: relative;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* #- HERITAGE -# */
.heritage {
  background-color: var(--color-black);
  color: var(--color-white);
}

.heritage h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.heritage-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #aaa;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 5rem;
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* #- SHOP -# */
.shop-promo {
  background-color: var(--color-white);
  overflow: hidden;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.shop-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.shop-content p {
  color: var(--color-gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #888, transparent);
}

.btn-solid-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  display: inline-flex;
  align-items: center;
}

.btn-solid-dark:hover {
  background-color: transparent;
  color: var(--color-black);
}

.btn-solid-dark .arrow {
  margin-left: 10px;
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-lux);
}

.btn-solid-dark:hover .arrow {
  transform: translateX(8px);
}

.shop-image-wrapper {
  position: relative;
  padding-right: 2rem;
  padding-bottom: 2rem;
}

.shop-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinBadge 15s linear infinite;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes spinBadge {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* #- TARGET -# */
.target {
  background-color: var(--color-white);
}

.target-header {
  margin-bottom: 4rem;
}

.target-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.target-card {
  background: var(--color-offwhite);
  display: flex;
  flex-direction: column;
}

.card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-lux);
}

.target-card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: 3rem 2rem;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--color-gray);
  margin-bottom: 2rem;
}

/* #- FOOTER -# */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 5rem 0 2rem;
}

.footer-brand-title{
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color 0.5s ease;
  z-index: 1001;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand p {
  color: #888;
  width: 100%;
  margin-top: 1rem;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul a {
  color: #888;
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--color-white);
}

.footer-links, 
.footer-links h4, 
.footer-links ul {
  text-align: right !important;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem 1.5rem !important;
  }

  .footer-brand {
    grid-column: 1 / span 2 !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 0.5rem 1rem !important;
    width: 100% !important;
  }

  .footer-logo {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    width: 80px !important;
    margin-bottom: 0 !important;
    justify-self: end !important;
  }

  .footer-brand h3 {
    grid-column: 1 !important;
    grid-row: 1 !important;
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }

  .footer-brand p {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }

  .footer-contact {
    grid-column: 1 !important;
    text-align: left !important;
  }

  .footer-contact ul {
    text-align: left !important;
  }

  .footer-links {
    grid-column: 2 !important;
    text-align: right !important;
  }

  .footer-links ul,
  .footer-links h4 {
    text-align: right !important;
  }
}

/* #- ANIMATIONS -# */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s var(--ease-lux), transform 1.2s var(--ease-lux);
}

.reveal-up.active,
.reveal-scale.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* CONTACT */
.contact-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-white);
  line-height: 1.1;
  position: relative;
  z-index: 3;
}

.contact-hero h1 em {
  color: var(--color-accent);
}

.contact-hero p {
  position: relative;
  z-index: 3;
  color: #e0e0e0;
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  background: var(--color-white);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border-left: 2px solid transparent;
  transition: all 0.4s var(--ease-lux);
}

.info-card:hover {
  border-left-color: var(--color-accent);
  transform: translateX(5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.info-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.4s var(--ease-lux);
}

.info-card:hover .info-icon {
  transform: scale(1.15) rotate(-5deg);
}

.info-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-black);
  letter-spacing: 0.5px;
}

.info-card-content p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--color-black) !important;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--color-accent) !important;
  border-bottom-color: var(--color-accent);
}

.contact-form-container {
  background: var(--color-white);
  padding: 3.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s var(--ease-lux);
}

.contact-form-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.form-header p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.luxury-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-black);
  transition: border-color 0.4s ease;
}

.form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: all 0.4s var(--ease-lux);
}

.form-group:focus-within::after {
  width: 100%;
  left: 0;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px;
  padding-right: 24px;
}

.form-group textarea {
  resize: vertical;
}

.w-100 {
  width: 100%;
  text-align: center;
}

.map-section {
  margin-top: 5rem;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.1);
  transition: all 0.6s var(--ease-lux);
}

.map-wrapper:hover iframe {
  filter: grayscale(0.2) invert(0) contrast(1);
}

.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1rem 2rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(120%);
  transition: transform 0.5s var(--ease-lux);
  max-width: calc(100vw - 40px);
}

.notification.hidden {
  display: none;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  background: #8b0000;
}

#close-notification {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.star-red {
  color: #e74c3c;
}

/* #- SECONDARY HEADER -# */
.page-inner header {
  background: rgba(255, 255, 255, 0.98) !important;
  padding: 1rem 0 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.page-inner .logo,
.page-inner .nav-links a {
  color: var(--color-black) !important;
}

.page-inner .hamburger span {
  background-color: var(--color-black) !important;
}

.page-inner .nav-links a:hover {
  color: var(--color-accent) !important;
}

/* #- ABOUT US -# */
.about-hero {
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-white);
  line-height: 1.1;
  position: relative;
  z-index: 3;
}

.about-hero h1 em {
  color: var(--color-accent);
}

.sticky-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.sticky-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.sticky-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-white);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-block {
  margin-bottom: 5rem;
}

.story-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.story-block p {
  color: var(--color-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.dropcap::first-letter {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--color-accent);
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.pillars {
  background-color: var(--color-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding: 3.5rem 2.5rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.5s var(--ease-lux);
}

.pillar-card::before {
  content: attr(data-number);
  position: absolute;
  top: -15px;
  right: -15px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.05;
  line-height: 1;
  z-index: 1;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

.pillar-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
  color: var(--color-black);
  position: relative;
  z-index: 2;
}

.pillar-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(194, 161, 118, 0.2);
}

.cta-consultation {
  background: linear-gradient(135deg, #0f0f0f 0%, #050505 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(194, 161, 118, 0.1);
}

.cta-consultation::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(194, 161, 118, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-consultation .container {
  position: relative;
  z-index: 2;
}

.cta-consultation h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.cta-consultation p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline-dark {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-buttons .btn-outline-dark:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.cta-buttons .btn-solid-dark {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.cta-buttons .btn-solid-dark:hover {
  background: transparent;
  color: var(--color-accent);
}

.about-history {
  background-color: var(--color-offwhite);
}

.history-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(5rem, 10vw, 10rem);
}

.history-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.history-text p {
  color: var(--color-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.history-image {
  position: relative;
  width: 100%;
  overflow: visible;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.history-image::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 1px solid var(--color-accent);
  z-index: -1;
  transition: transform 0.6s var(--ease-lux);
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-lux);
}

.history-row:hover .history-image::before {
  transform: translate(-10px, -10px);
}

.history-row:hover .history-image img {
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .history-row {
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
  }

  .history-image {
    aspect-ratio: 4/5;
  }

  .history-row.reverse .history-text {
    order: 2;
  }

  .history-row.reverse .history-image {
    order: 1;
  }

  .history-row:nth-child(odd) .history-image {
    transform: translateY(30px);
  }

  .history-row:nth-child(even) .history-image {
    transform: translateY(-30px);
  }
}

@media (min-width: 768px) {
  .sticky-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .sticky-col {
    position: sticky;
    top: 120px;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offset-card {
    transform: translateY(40px);
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info {
    border-right: none;
    padding-right: 0;
  }

  .form-row {
    flex-direction: row;
    gap: 2rem;
  }

  .form-row .form-group {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  .vision-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .vision-text {
    order: 1;
  }

  .vision-image {
    order: 2;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-links {
    text-align: right;
  }

  .shop-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-grid {
    gap: 2rem 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .footer-logo {
    width: 100px;
    margin-bottom: 1rem;
  }

  .footer h3 {
    font-size: 1.6rem;
  }

  .footer h4 {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .footer ul li {
    margin-bottom: 0.65rem;
  }

  .footer ul a {
    font-size: 0.85rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .contact-hero {
    height: 60vh;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .map-wrapper {
    height: 280px;
  }
}



/* ==========================================================================
   #- AMBASSADOR THEATER SLIDER (SOLO VIDEO) -#
   ========================================================================== */

.ambassador-body {
  background-color: var(--color-black) !important;
  color: var(--color-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.ambassador-body header {
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8) 0%, transparent 100%) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: none !important;
  box-shadow: none !important;
}

.ambassador-body .logo,
.ambassador-body .nav-links a {
  color: var(--color-white) !important;
}

.ambassador-body .nav-links a:hover {
  color: var(--color-accent) !important;
}

.ambassador-body .hamburger span {
  background-color: var(--color-white) !important;
}

.ambassador-theater {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--color-black);
}

.slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.ambassador-theater {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--color-black);
}

.slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.ambassador-slide {
  flex: 0 0 100vw; 
  width: 100vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-black);
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Su mobile riempie l'intera area */
  display: block;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 5, 5, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-black);
}

.prev-arrow {
  left: 2rem;
}

.next-arrow {
  right: 2rem;
}

.audio-toggle-btn {
  position: absolute;
  bottom: 30px;
  right: 2rem;
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  height: 46px;
  padding: 0 15px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.audio-pulse-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  transition: opacity 0.4s ease;
  animation: audioPulseText 2s infinite alternate;
}

@keyframes audioPulseText {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.audio-toggle-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: scale(1.05);
}

.audio-toggle-btn .hidden {
  display: none !important;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 14px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: var(--color-accent);
  width: 28px;
}

@media (min-width: 992px) {
  .video-container video {
    width: 100%;
    height: 100%;
    max-width: 480px; 
    object-fit: contain; 
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  }
}

@media (max-width: 767px) {
  .nav-arrow {
    display: none !important;
  }

  .audio-toggle-btn {
    bottom: inherit;
    top: 90px;
    right: 1.5rem;
  }
  
  .audio-pulse-hint {
    display: none;
  }

  .slider-dots {
    bottom: 30px;
    width: 80%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 2px;
  }

  .slider-dots .dot.active {
    width: 16px;
  }
}




a, a:hover, a:focus, a:active {
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

abbr[title], abbr[data-original-title] {
    text-decoration: none !important;
    border-bottom: none !important;
}

a {
    -webkit-tap-highlight-color: transparent;
}



/* ==========================================================================
   #- TESTIMONIAL GLOW (Pulsante Nav in risalto) -#
   ========================================================================== */
.nav-testimonial-glow {
  color: var(--color-accent) !important;
  font-weight: 600 !important;
  display: inline-block;
  position: relative;
  text-shadow: 0 0 10px rgba(194, 161, 118, 0.6);
  animation: pulseGlow 2.5s infinite alternate;
  transition: all 0.4s var(--ease-lux);
}

/* Regolazioni quando l'header diventa bianco (scrolled) */
header.scrolled .nav-testimonial-glow {
  text-shadow: 0 0 6px rgba(194, 161, 118, 0.4);
}

.nav-testimonial-glow:hover {
  transform: scale(1.1);
  color: var(--color-white) !important;
  text-shadow: 0 0 15px rgba(194, 161, 118, 1), 0 0 30px rgba(194, 161, 118, 0.8);
}

header.scrolled .nav-testimonial-glow:hover {
  color: var(--color-black) !important;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(194, 161, 118, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(194, 161, 118, 0.9), 0 0 25px rgba(194, 161, 118, 0.6);
  }
}

/* ==========================================================================
   #- FLOATING WHATSAPP BUTTON (A DESTRA) E FIX SOVRAPPOSIZIONE -#
   ========================================================================== */

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  text-decoration: none !important;
  animation: waBounce 3s infinite ease-in-out;
}

.floating-wa svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
  transition: transform 0.4s ease;
}

.wa-tooltip {
  position: absolute;
  right: 80px;
  left: auto;
  top: 50%;
  transform: translateY(-50%) translateX(15px);
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.2, 1);
  pointer-events: none;
}

.floating-wa:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  animation: none;
}

.floating-wa:hover svg {
  transform: rotate(12deg) scale(1.1);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

#sa-music-toggle, .audio-toggle-btn {
  bottom: 110px !important; 
  right: 30px !important;
  z-index: 9998;
}

@keyframes waBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

@media (max-width: 767px) {
  .floating-wa {
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
  }
  .floating-wa svg {
    width: 30px;
    height: 30px;
  }
  .wa-tooltip {
    display: none;
  }
  #sa-music-toggle, .audio-toggle-btn {
    bottom: 95px !important; 
    right: 25px !important;
  }
}