* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  color: #5A6A72;
  overflow-x: hidden;
  background: #F5F3EF;
}

.container-95 {
  width: 95vw;
  max-width: 95vw;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================= */
/* NOISE TEXTURE OVERLAY                         */
/* ============================================= */
.noise-overlay {
  position: relative;
}
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

/* ============================================= */
/* STICKY HEADER                                 */
/* ============================================= */
header {
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

header.scrolled {
  position: fixed;
  top: 0;
  background-color: rgba(26, 42, 56, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem;
}

.scrolled .custom-nav{
  align-items: center;
  padding-block: 16px;
}

header.scrolled .header-logo {
  height: clamp(50px, 4vw, 70px) !important;
  transition: height 0.4s ease;
  display: none;
}
header .header-logo-deco{
  display: none;
}
header.scrolled .header-logo-deco {
  display: initial;
  height: clamp(50px, 4vw, 70px) !important;
  transition: height 0.4s ease;
}

header .header-logo {
  transition: height 0.4s ease;
}

header .header-logo-deco {
  transition: height 0.4s ease;
}

/* ============================================= */
/* MEGAMENU                                      */
/* ============================================= */
.megamenu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: #6C7B82;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.megamenu.active {
  opacity: 1;
  pointer-events: all;
}

.megamenu-link {
  font-family: 'Quarto', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  color: #DCCFB4;
  text-decoration: none;
  transition: opacity 0.3s;
  display: block;
  text-align: center;
  font-weight: 300;
}

.megamenu-link:hover { opacity: 0.7; }


/* ============================================= */
/* GALLERY / SWIPERS                             */
/* ============================================= */
.gallery-swiper {
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.gallery-swiper .swiper-slide {
  cursor: pointer;
}

.gallery-swiper .swiper-slide a {
  display: block;
  text-decoration: none;
}

/* Testimonials Swiper - flush right */
.testimonials-section-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .testimonials-section-layout {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.testimonials-swiper-wrapper {
  overflow: visible;
  min-width: 0;
}

.testimonials-swiper {
  overflow: hidden !important;
  min-width: 0;
}

/* Swiper pagination custom */
.swiper-pagination-testimonials {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}

.swiper-pagination-testimonials .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #9AA4AA;
  opacity: 1;
  border-radius: 50%;
  transition: background 0.3s;
}

.swiper-pagination-testimonials .swiper-pagination-bullet-active {
  background: #2C3E50;
}

/* ============================================= */
/* TYPOGRAPHY                                    */
/* ============================================= */
.font-display { font-family: 'Quarto', Georgia, serif; font-weight: 300 !important; }
.font-body { font-family: 'Montserrat', 'Helvetica Neue', sans-serif; }

.tracking-brand {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  line-height: 1.8;
}

/* ============================================= */
/* HERO                                          */
/* ============================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
}



/* ============================================= */
/* WATERMARKS                                    */
/* ============================================= */
.watermark-text {
  font-family: 'Quarto', Georgia, serif;
  font-size: clamp(5rem, 14vw, 16rem);
  color: rgba(255,255,255,0.08);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.footer-watermark {
  font-family: 'Quarto', Georgia, serif;
  font-size: 300px;
  color: rgba(255,255,255,0.06);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
}



/* ============================================= */
/* BUTTONS                                       */
/* ============================================= */
.btn-outline {
  display: inline-block;
  border: 1px solid #9AA4AA;
  padding: 12px 48px;
  font-family: 'Quarto', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #6C7B82;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 50px;
  min-width: 350px;
  max-width: 100%;
  font-weight: 300;
}

.btn-outline:hover {
  background: #2C3E50;
  border-color: #2C3E50;
  color: #dccfb4;
}

@media (max-width: 1160px) {

  .hero-section{
    min-height: initial;
    height: 89.5vh;
  }

  .btn-outline {
    min-width: initial;
    width: 100%;
  }
  .tracking-brand {
    font-size: 14px;
  }

  .footer-watermark{
    font-size: 124px;
  }
}

.btn-pill {
  display: inline-block;
  background: #dccfb4;
  color: #2C3E50;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background: #bab09b;
}

.btn-submit {
  display: inline-block;
  background: #6C7B82;
  color: #dccfb4;
  padding: 1rem 3.5rem;
  border-radius: 50px;
  font-family: 'Quarto', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #2C3E50;
}

/* ============================================= */
/* BRANDS                                        */
/* ============================================= */
.brand-item {
  filter: grayscale(1);
  opacity: 0.4;
  transition: 300ms all;
}

.brand-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================= */
/* FORMS                                         */
/* ============================================= */
.form-field {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9AA4AA;
  padding: 0.85rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A6A72;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

.form-field::placeholder {
  color: #5A6A72;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field:focus {
  border-bottom-color: #2C3E50;
}

/* ============================================= */
/* SECTION HEADINGS                              */
/* ============================================= */
.section-heading {
  font-family: 'Quarto', serif;
  color: #2C3E50;
  line-height: 1.15;
  font-weight: 300;
}

.section-heading .italic {
  color: #6C7B82;
}

/* ============================================= */
/* WHY / GALLERY                                 */
/* ============================================= */
.why-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  position: relative;
}

/* ============================================= */
/* TESTIMONIALS                                  */
/* ============================================= */
.testimonial-card {
  background: #fff;
  overflow: hidden;
  padding: 24px;
  border-radius: 20px;
  height: 100%;
}

.testimonial-card img {
  width: 100%;
  object-fit: cover;
  max-height: 135px;
  border-radius: 20px;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9AA4AA;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active { background: #2C3E50; }

/* ============================================= */
/* PLAY BUTTON                                   */
/* ============================================= */
.play-btn {
  width: 92px;
  height: 92px;
  background: #DCCFB4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-btn:hover { transform: scale(1.1); }

/* ============================================= */
/* SCROLL REVEAL                                 */
/* ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================= */
/* HAMBURGER                                     */
/* ============================================= */
.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #DCCFB4;
  transition: all 0.3s;
}

/* ============================================= */
/* MISC                                          */
/* ============================================= */
.brand-logo {
  height: 45px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.brand-logo:hover { opacity: 0.8; }

.img-placeholder {
  background: linear-gradient(135deg, #6C7B82 0%, #4a5a62 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DCCFB4;
  text-decoration: none;
  transition: all 0.3s;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #9AA4AA; border-radius: 3px; }

/* Mobile */
@media (max-width: 768px) {
  .container-95 {
    max-width: 90vw;
  }
}

/* ============================================= */
/* LEGAL PAGES                                   */
/* ============================================= */
.legal-content h2 {
  font-family: 'Quarto', Georgia, serif;
  font-weight: 300;
  color: #2C3E50;
  font-size: clamp(20px, 1.5vw, 28px);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-content p {
  font-family: 'Montserrat', sans-serif;
  color: #5A6A72;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.legal-content a {
  color: #2C3E50;
  text-decoration: underline;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: #6C7B82;
}

/* ============================================= */
/* VIDEO PLAY — STATIC + CURSOR FOLLOWER         */
/* ============================================= */
.video-play-static {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.25s ease;
}

@media (min-width: 1024px) {
  .video-play-static {
    top: 72px;
    left: 72px;
  }
}

.video-play-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 92px;
  background: #DCCFB4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  will-change: transform;
}

/* Hovering: hide static, show cursor, hide default cursor */
.video-hover-area.is-hovering .video-play-static {
  opacity: 0;
}

.video-hover-area.is-hovering .video-play-cursor {
  opacity: 1;
}

.video-hover-area.is-hovering {
  cursor: none;
}

.video-hover-area.is-hovering > a {
  cursor: none;
}

/* Touch devices: never activate */
@media (hover: none) {
  .video-play-cursor {
    display: none;
  }
  .video-hover-area > a {
    cursor: pointer !important;
  }
}