/* 
  LA FABIANNA - Landing Page Styling
  Designed with rich aesthetics, premium spacing, and custom-tailored animations.
*/

:root {
  /* Colors */
  --bg-frame: #eef0f2;
  --bg-page: #faf8f5;
  --bg-card: #ffffff;

  --primary-dark: #231009;
  /* --primary-light: #231009; */

  --accent-blue: #009eff;
  /* The beautiful electric blue from the image */
  --accent-rust: #8B2000;
  /* The rust/terracotta color of the CTA button */
  --accent-rust-hover: #6C1A01;

  --green-wait: #2D3418;
  /* Fonts */
  --font-sans: 'Libre Franklin', sans-serif;

  /* Borders & Shadows */
  --border-color: #e2dcd5;
  --shadow-sm: 0 2px 4px rgba(27, 25, 24, 0.02);
  --shadow-md: 0 8px 30px rgba(27, 25, 24, 0.06);
  --shadow-lg: 0 20px 50px rgba(27, 25, 24, 0.1);
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-sans);
  color: var(--primary-dark);
  line-height: 1.6;
  overflow-x: hidden;
  /* background: linear-gradient(180deg,
      #FFFFFF 0%,
      #F8F2EA 100%); */
}

.site {
  background-color: #F8F2EA;
}

.section-padding {
  padding: 0px 56px;
}

.padding-global {
  padding: 85px 0px;
}

/* Main Header & Navbar */
.main-header {
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border-bottom: 1px solid rgba(234, 229, 223, 0.5); */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 16px;
}

.main-header.scrolled {
  /* background-color: rgba(255, 255, 255, 0.75); */
  /* box-shadow: var(--shadow-md); */
}

.header-container {
  max-width: 1164px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  z-index: 10;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.8;
}

/* Navigation Bar */
.nav-container {
  flex-grow: 1;
  margin: 0 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  /* Premium spacing between clustered links */
  width: auto;
  position: relative;
  z-index: 5;
}

ul#menu-header-menu {
  margin: 0;
}

.nav-links li {
  transition: var(--transition);
}

.nav-link {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  /* 150% */
  letter-spacing: 0;
  text-align: center;
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-rust-hover);
}

/* CTA Button ("Agendá tu visita") */
.cta-btn {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  /* 150% */
  color: var(--accent-rust);
  background: transparent;
  border: 1px solid var(--accent-rust);
  padding: 10px 22px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  z-index: 10;
  text-decoration: none;
  letter-spacing: 0;
}

.cta-btn:hover {
  background-color: var(--accent-rust);
  color: #F5EDE3;
  box-shadow: 0 4px 15px rgba(143, 61, 42, 0.2);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--primary-dark);
  cursor: pointer;
}

/* Tablet */
@media (max-width: 991px) {
  .nav-links {
    gap: 30px;
  }

  .main-header {
    padding: 0 16px;
  }

  .nav-container {
    margin: 0 35px;
  }

  .logo-img {
    max-width: 147px;
    width: 100%;
  }

}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1100;
    order: 3;
  }

  .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #F5EDE3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* z-index: 10000; */
    /* transition: max-height 0.3s ease, opacity 0.3s ease; */
    /* overflow: hidden; */
    height: 222px;
    opacity: 0;
  }

  .nav-container.active {
    display: block;
    max-height: 400px;
    /* enough for all links */
    opacity: 1;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    display: block;
    max-height: 420px;
    padding: 15px 20px;
  }

  .nav-links li a {
    display: block;
    padding: 10px;
    color: var(--primary-dark);
    text-align: left;
  }

  .cta-btn {
    padding: 10px 16px;
    font-size: 14px;
    display: inline-block;
  }
}

/* Hero Section */
.container {
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section */
.hero-section {
  padding: 80px 0px 0;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(360deg, #F8F2EA 6.92%, #FFFFFF 97.44%);
}

.hero-content-wrapper {
  padding: 116px 0px 58px;
}

.hero-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.hero-heading-block {
  flex-grow: 1;
}

.hero-title-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.title-top-line {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 8px;
}

.text-large {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  /* 100% */
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.text-large-bottom {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  /* 100% */
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.hero-inline-cta {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-rust);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-rust);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 10px 13px 10px 5px;
}

.hero-inline-cta .arrow {
  transition: transform 0.3s ease;
}

.hero-inline-cta:hover {
  color: var(--accent-rust-hover);
  border-bottom-color: var(--accent-rust-hover);
}

.hero-inline-cta:hover .arrow {
  transform: translateX(4px);
}

.hero-description-block {
  max-width: 440px;
  padding-bottom: 6px;
}

.hero-description-block p {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 400;
}

.hero-video-container {
  /* width: 100%; */
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background-color: #0d0c0c;
  display: block;
  /* margin: auto 40px; */
  margin: 0 16px;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-highlights-bar {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  background: #fff;
  padding: 10px 0;
}

.highlights-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.hero-highlights-bar .highlights-list li {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--accent-rust);
}

.swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--accent-rust);
  font-family: "Libre Franklin", sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.ticker {
  background: transparent;
  color: var(--accent-rust);
  overflow: hidden;
  white-space: nowrap;
  padding: 32px 0 14px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Libre Franklin", sans-serif;

}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  animation: marquee 25s linear infinite;
}

/* UL styling */
.ticker-list {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* spacing between items */
.ticker-list li {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* dot separator */
.ticker-list li:not(:last-child)::after {
  content: "•";
  margin: 0 15px;
  font-size: 20px;
  color: #000;
  opacity: 0.7;
}

/* pause on hover */
.ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* smooth loop */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */

@media (max-width: 991px) {
  .hero-content-wrapper {
    padding: 36px 0px 48px;
  }

}

@media (max-width: 768px) {
  .ticker {
    font-size: 16px;
    padding: 32px 0;
  }

  .ticker-list li:not(:last-child)::after {
    margin: 0 25px;
  }

  .hero-section {
    padding: 97.5px 0px 0;
  }

  .hero-content-wrapper {
    padding: 0px 0px 48px;
  }
}

/* Responsive adjustments for new hero section */
@media (max-width: 1024px) {

  .text-large,
  .text-large-bottom {
    font-size: 64px;
  }

  .hero-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-description-block {
    max-width: 100%;
  }

  .hero-video-container {
    aspect-ratio: 16 / 9;
  }
}

.hero-mobile-cta {
  display: none;
}

@media (max-width: 768px) {

  /* hide desktop CTA */
  .hero-desktop-cta {
    display: none !important;
  }

  /* show mobile CTA */
  .hero-mobile-cta {
    display: inline-flex;
    margin-top: 10px;
  }

  .text-large,
  .text-large-bottom {
    font-size: 48px;
  }

  .title-top-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hero-inline-cta {
    margin: 0;
    background-color: var(--accent-rust);
    color: #F5EDE3;
    padding: 12.05px 16.07px;
  }

  .highlights-list {
    justify-content: center;
    gap: 10px;
  }

  .highlights-list li.bullet {
    display: none;
  }
}


/* .padding-global {
  padding: 168px 0px 0px 0px;
} */

.project-overview {
  padding: 168px 0px 0px 0px;

}


.section-title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;

}

.project-overview-content-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 176px;
}

.feature-list {
  width: 100%;
}

.feature-item {
  display: grid;
  grid-template-columns: 0.80fr 1fr;
  gap: 67px;
  padding: 35px 0;
  border-top: 0.4px solid #231009;
}

.feature-item:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 29px;
}


.feature-heading h3 {
  margin: 0;
  color: #231009;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-family: "Big Shoulders", sans-serif;
}

.feature-description {
  color: #231009;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  font-family: "Libre Franklin", sans-serif;
}

/* Responsive */
@media (max-width: 991px) {
  .project-overview {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .feature-heading h3 {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 1%;
  }

  .feature-description {
    max-width: 100%;
    font-size: 15px;
  }
}


.fabx-section-wrap {
  width: 100%;
  padding: 60px 40px;
}

.fabx-container-wrap {
  max-width: 1400px;
  margin: auto;
}

/* =========================
   TOP CONTENT
========================= */

.fabx-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.fabx-left-content {
  max-width: 720px;
}

.fabx-main-title {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  color: #1b120d;
  margin-bottom: 30px;
  letter-spacing: -3px;
}

.fabx-description-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4f4742;
  max-width: 650px;
}

/* =========================
   BUTTON
========================= */

.fabx-visit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8b3000;
  color: #fff;
  text-decoration: none;
  padding: 18px 34px;
  min-width: 210px;
  font-size: 18px;
  transition: 0.3s ease;
}

.fabx-visit-button:hover {
  background: #6c2400;
}

/* =========================
   INTRO SECTION (Title + Content + CTA)
========================= */

.fabx-intro-section {
  width: 100%;
  padding: 133px 16px 44px;
}

.fabx-intro-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 72px;
}

.fabx-intro-left {
  flex: 1;
}

.fabx-intro-title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 28px;
  max-width: 654px;
  width: 100%;
}

.fabx-intro-body {
  max-width: 745px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.fabx-intro-body p {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--primary-dark);
}

.fabx-intro-right {
  flex-shrink: 0;
  padding-bottom: 4px;
}

.fabx-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #F5EDE3;
  background-color: var(--accent-rust);
  border: 1.5px solid #8f3d2a;
  padding: 12px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.fabx-intro-cta:hover {
  background: var(--accent-rust-hover);;
  color: #ffffff;
}

.fabx-cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.fabx-intro-cta:hover .fabx-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .fabx-intro-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .fabx-intro-title {
    font-size: 48px;
  }

  .fabx-intro-body {
    gap: 20px;
  }

  .fabx-intro-section {
    padding: 48px 0px 40px;
  }
}

/* =========================
   HERO IMAGE
========================= */

.fabx-hero-gallery {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #000;
  cursor: pointer;
}

/* Dark overlay on top of video */
.fabx-hero-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 5;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Fade overlay when playing */
.fabx-hero-gallery.is-playing::after {
  opacity: 0;
}

.fabx-gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.fabx-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* =========================
   PLAY BUTTON WRAP
========================= */

.fabx-video-button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 10;
}

/* Hide button when video is playing */
.fabx-video-button-wrap.fabx-hide-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =========================
   ROTATING TEXT
========================= */

.fabx-rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fabxRotateText 12s linear infinite;
}

.fabx-rotating-text text {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================
   CENTER PLAY BUTTON
========================= */

.fabx-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 12px), -50%);
  width: 71px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.fabx-play-svg {
  width: 71px;
  height: 87px;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

/* =========================
   MARQUEE SLIDER
========================= 

.fabx-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.fabx-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: fabxMarquee 80s linear infinite;
}


.fabx-marquee-wrapper:hover .fabx-marquee-track {
  animation-play-state: paused;
}


.fabx-slide-item {
  width: 360px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.fabx-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}


.fabx-slide-item:hover img {
  transform: scale(1.08);
}

*/


.fabx-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.fabx-marquee-track {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

/* Optional: pause on hover */
.fabx-marquee-wrapper:hover .swiper-wrapper {
  transition-duration: 0ms !important;
}

.fabx-slide-item {
  width: 360px !important;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.fabx-slide-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

/* Hover Effect */

.fabx-slide-item:hover img {
  transform: scale(1.08);
}

/* Hide pagination by default */
.fabx-pagination {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
  .fabx-marquee-wrapper .swiper-wrapper {
    padding-bottom: 36px;
  }

  .fabx-pagination {
    display: block;
    position: relative;
    bottom: -6px !important;
  }

  .fabx-marquee-wrapper .swiper-pagination-bullet {
    background-color: #DBCDBA;
    opacity: 1;
    margin: 0 8px !important;
  }

  .fabx-marquee-wrapper .swiper-pagination-bullet-active {
    background-color: var(--green-wait);
    width: 17px;
    border-radius: 0;
    height: 9px;
  }


}


/* =========================
   ANIMATIONS
========================= */

/* ROTATING TEXT */

@keyframes fabxRotateText {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* CONTINUOUS MARQUEE */

/* @keyframes fabxMarquee {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
} */

/* =========================
   LIGHTBOX
========================= */

.fabx-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 40px;
}

.fabx-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fabx-lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.35s ease;
}

.fabx-lightbox-overlay.active .fabx-lightbox-image {
  transform: scale(1);
}

.fabx-lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10000;
  font-style: normal;
  user-select: none;
}

.fabx-lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .fabx-main-title {
    font-size: 60px;
  }

  .fabx-hero-gallery {
    height: 620px;
  }
}

@media(max-width:992px) {

  .fabx-top-flex {
    flex-direction: column;
  }

  .fabx-main-title {
    font-size: 52px;
  }

  .fabx-hero-gallery {
    height: 520px;
  }

  .fabx-video-button-wrap {
    width: 230px;
    height: 230px;
  }

  .fabx-play-center {
    width: 100px;
    height: 100px;
  }

  .fabx-play-center::before {
    border-left: 34px solid #f5efe9;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
}

@media screen and (max-width:767px) {

  .fabx-section-wrap {
    padding: 40px 20px;
  }

  .fabx-main-title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .fabx-description-text {
    font-size: 16px;
  }

  .fabx-hero-gallery {
    height: 450px;
  }

  .fabx-slide-item {
    width: 100% !important;
    height: auto;
  }

  .fabx-video-button-wrap {
    width: 137px;
    height: 137px;
  }

  .fabx-play-svg {
    width: 37px;
    height: 45px;
  }

  .fabx-play-center {
    width: 80px;
    height: 80px;
    transform: translate(calc(-50% + 4px), -50%);
  }


  .fabx-rotating-text text {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

@media(max-width:480px) {

  .fabx-main-title {
    font-size: 32px;
  }

  .fabx-slide-item {
    width: 220px;
    height: 150px;
  }

  .fabx-visit-button {
    width: 100%;
  }
}

.house-model-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #2D3418;

}

/* Background Glow */
.house-model-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(128, 160, 0, 0.35), transparent 30%),
    radial-gradient(circle at 80% 40%, rgba(128, 160, 0, 0.35), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(128, 160, 0, 0.25), transparent 40%);
  filter: blur(40px);
  z-index: 0;
}

/* TOP IMAGES */
.house-model-images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.model-image-card {
  flex: 1;
}

.model-image-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* BOTTOM CONTENT */
.house-model-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT CONTENT */
.house-model-left-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.small-title {
  font-family: "Big Shoulders", sans-serif;
  display: inline-block;
  margin-bottom: 25px;
  color: #d9d1bc;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.house-model-left-content h2 {
  font-family: "Big Shoulders", sans-serif;
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  color: #f2ead8;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.house-model-left-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #d7d2c5;
  max-width: 500px;
  font-family: "Libre Franklin", sans-serif;
}

/* RIGHT CONTENT */
.house-model-right-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  align-content: start;
}

.info-box span {
  display: block;
  margin-bottom: 10px;
  color: #b7aa84;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Libre Franklin", sans-serif;
}

.info-box h3 {
  color: #f5f0e6;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  font-family: "Libre Franklin", sans-serif;
}

.info-box p {
  color: #d6d1c7;
  margin-top: 8px;
  font-size: 16px;
  font-family: "Libre Franklin", sans-serif;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .house-model-images {
    flex-direction: column;
  }

  .house-model-content {
    flex-direction: column;
  }

  .house-model-left-content h2 {
    font-size: 48px;
  }

  .house-model-right-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}


/* Sections Common Layout */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
  border-top: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
}



.section-subtitle {
  font-size: 16px;
  color: var(--primary-dark);
  font-weight: 300;
}

/* Model Section (Modelo) */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.model-visual {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.model-img:hover {
  transform: scale(1.03);
}

.model-details {
  max-width: 500px;
}

.model-title {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 20px;
}

.model-text {
  color: var(--primary-dark);
  font-weight: 300;
  margin-bottom: 30px;
}

.specs-list {
  list-style: none;
}

.specs-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0eae4;
  font-size: 15px;
}

.specs-list li strong {
  font-weight: 500;
  display: inline-block;
  width: 120px;
}

/* Amenities Section (Amenidades) */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.amenity-card {
  background-color: var(--bg-card);
  padding: 40px;
  border: 1px solid #eae5df;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-rust);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-rust);
  margin-bottom: 24px;
}

.amenity-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
}

.amenity-desc {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 300;
}

/* Location Section (Ubicación) */
.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.location-title {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 20px;
}

.location-text {
  color: var(--primary-dark);
  font-weight: 300;
  margin-bottom: 40px;
}

.proximity-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proximity-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.proximity-item .time {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--accent-rust);
  font-size: 24px;
  width: 80px;
}

.proximity-item .place {
  font-size: 15px;
  color: var(--primary-dark);
}

.location-map {
  position: relative;
}

.map-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

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

/* Map Pulsing Pin Overlay */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.pin-dot {
  width: 12px;
  height: 12px;
  background-color: var(--accent-rust);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pin-pulse {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-rust);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse 2s infinite ease-out;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ==========================================================================
   FAQ SECTION (Accordion Interaction)
   ========================================================================== */

.faq {
  padding: 120px 16px;
  background-color: #F8F2EA;
}

.faq-container {
  max-width: 871px;
  width: 100%;
  margin: 0 auto;
}

.faq-heading {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 58px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary-dark);
  max-width: 666px;
  margin: 0 auto 25px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 0.4px solid var(--primary-dark);
  padding: 32px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding-bottom: 16px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--primary-dark);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: opacity 0.3s ease;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 20px;
}

/* Horizontal Line (always visible) */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-rust);
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* Vertical Line (hidden when expanded) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--accent-rust);
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Toggled States */
.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Initially open the first active item */
.faq-item.active .faq-answer {
  max-height: 300px;
  /* Secure height that fits the longest text */
}

.faq-answer-content {
  padding-bottom: 7px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark);
  max-width: 760px;
}

.faq-item:last-child {
  border: none;
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 16px 120px;
  }

  .faq-heading {
    font-size: 48px;
    margin-bottom: 18px;
    text-align: left;
  }

  .faq-question {
    font-size: 18px;
    padding-bottom: 0px;
  }

  .faq-item.active .faq-question {
    padding-bottom: 15px;
  }

  .faq-answer-content {
    padding-bottom: 0;
    font-size: 15px;
  }
}

/*contact css*/

.contact-section {
  padding: 168px 0 0;
  background-color: #F8F2EA;
}

.form-content-wrapper {
  display: grid;
  align-items: flex-start;
  gap: 86px;
  grid-template-columns: 1fr 1fr;
}

/* LEFT STICKY */
.form-content-wrapper .left {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  max-width: 510px;
  width: 100%;
}

/* Left Side */
/* .left {
  padding: 60px 50px;
} */

.left h2 {
  font-size: 58px;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: #231009;
  margin-bottom: 25px;
}

.left p {
  color: var(--accent-rust);
  font-size: 28px;
  line-height: 150%;
  font-family: "Big Shoulders", sans-serif;
  font-weight: 400;
}

/* Right Side */
.form-wrapper-right {
  flex: 1;
  padding: 31px 35px 38px 36px;
  border: 0.6px solid var(--primary-dark);
  background-color: #F8F2EA;
  max-width: 572px;
  width: 100%;
}

.form-wrapper-right h3 {
  font-size: 18px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
  color: #000000;
}

.wpcf7-form-control {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
  padding: 16px 17px;
  width: 100%;
  border: 1px solid #C4A88280;
	cursor:pointer;
}

.wpcf7-list-item-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--primary-dark);
  font-family: "Libre Franklin", sans-serif;
	cursor:pointer;
}

.wpcf7-list-item label {
  display: flex;
  margin: 0;
  gap: 12px;
  align-items: center;
}

.wpcf7-spinner {
  position: absolute !important;
}

.radio-group {
  margin-bottom: 39px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  border: 1px solid var(--border-color);
  padding: 10px;
}

input[type="radio"] {
  width: 13px;
  height: 13px;
  accent-color: var(--accent-rust);
}

.form-group {
  margin-bottom: 32px;
}


label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1e2937;
}

.radio-option p {
  color: #231009;
  font-weight: 400;
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-bottom: 2px solid #cbd5e1;
  font-size: 17px;
  background: transparent;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  border-color: #b91c1c;
}

.submit-btn {
  background: var(--accent-rust);
  color: #F5EDE3;
  border: none;
  padding: 16px 40px;
  font-size: 20px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  border-radius: 0px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  transition: all 0.3s;
  /* background-image: url("../img/light-arrow.png");
  background-position: 71.80% 50%;
  background-repeat: no-repeat; */
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.submit-btn:hover {
  background-color: var(--accent-rust-hover);
}

.submit-btn svg {
  transition: all 0.3s ease-in;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .form-content-wrapper {
    gap: 36px;
  }
}

@media (max-width: 991px) {
  /* .form-content-wrapper .left {
    max-width: 400px;
  } */

  .form-content-wrapper {
    grid-template-columns: 1fr;
    margin: 0 0px 44px;
    gap: 27px;
  }



  .form-content-wrapper .left {
    position: relative;
    top: 0;
  }



}

@media (max-width: 768px) {
  .contact-section {
    padding: 90px 0 0;
  }

  .left h2 {
    font-size: 48px;
  }

  .left p {
    font-size: 22px;
  }

  .form-wrapper-right {
    padding: 31px 20px 38px 20px;
    max-width: 100%;
  }

  .wpcf7-list-item-label {
    font-size: 15px;
  }
}



/* Modal Overlay & Box */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(27, 25, 24, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: #ffffff;
  padding: 50px;
  max-width: 550px;
  width: 90%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-dark);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary-dark);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--primary-dark);
  font-size: 14px;
  margin-bottom: 30px;
  font-weight: 300;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark);
}

.form-group input {
  font-family: var(--font-sans);
  padding: 12px 16px;
  border-bottom: 1px solid #C4A882;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--accent-rust);
}

.form-submit-btn {
  background-color: var(--primary-dark);
  color: #ffffff;
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 20px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.form-submit-btn:hover {
  background-color: var(--accent-rust);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .model-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {


  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    margin-top: 16px;
  }

  .hero-title-container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .header-container {
    padding: 0 20px;
  }

  .nav-container {
    margin: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .cta-btn {
    padding: 8px 14px;
    font-size: 13px;
    margin-right: 16px;
    margin-left: auto;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-container {
    padding: 60px 20px;
  }

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

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }

  .modal-container {
    padding: 30px;
  }
}

@media (max-width: 768px) {

  /* Stack the navigation on extremely small devices */
  .header-container {
    flex-direction: row;
    height: auto;
    padding: 12px 0;
    gap: 15px;
  }

  .nav-container {
    width: 100%;
    margin: 0;
  }

  .nav-links {
    justify-content: space-around;
  }
}

.lf-footer {
  padding: 16px;
}

.footer-inner {
  border: 0.6px solid #231009;
  width: 100%;
  font-family: 'Barlow', sans-serif;
}

/* .lf-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
} */

/* ── TOP SECTION ── */
.lf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0 38px;
}

.lf-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo / Brand name */
.lf-logo img {
  max-height: 48px;
  width: auto;
}

/* Fallback text logo when no image */
.lf-left p,
.lf-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  /* ~40px */
  color: #1a1410;
  letter-spacing: -0.5px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}

/* "CONDOMINIO SAN RAFAEL DE ALAJUELA" subtitle */
.lf-left p:last-of-type,
.lf-subtitle {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 400;
  line-height: 150%;
  font-size: 22.5px;
  color: var(--green-wait);
  text-transform: uppercase;
  margin: 0;
}

/* RIGHT — Vidicon logo */
.lf-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lf-right img {
  height: auto;
  width: 94px;
}

/* Mobile disclaimer (hidden on desktop) */
.mobile-disclaimer {
  display: none;
}

/* ── DIVIDER ── */
.lf-footer hr {
  border: none;
  border-top: 0.6px solid #000;
  margin: 0;
}

/* ── BOTTOM SECTION ── */
.lf-bottom {
  display: grid;
  justify-content: space-between;
  padding: 38px 0 31px;
  gap: 48px;
  grid-template-columns: 0.75fr 1fr;
}

.lf-copy {
  font-family: "Libre Franklin", sans-serif;
  font-size: 17px;
  color: #231009;
  font-weight: 400;
}

.lf-disclaimer {
  font-family: "Libre Franklin", sans-serif;
  font-size: 10px;
  color: #5a5248;
  line-height: 1.6;
  text-align: right;
  max-width: 572px;
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .lf-container {
    padding: 0 20px;
  }

  .lf-top {
    flex-wrap: wrap;
    gap: 16px;
  }

  .mobile-disclaimer {
    display: block;
    width: 100%;
    font-size: 10px;
    color: #5a5248;
    line-height: 1.6;
    margin-top: 8px;
  }

  .mobile-disclaimer p {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    text-transform: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
  }

  .desktop-disclaimer {
    display: none;
  }

  .lf-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .lf-copy {
    font-size: 16px;
    text-align: center;
  }
}

.promo-banner {
  position: relative;
  min-height: 634px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 16px 0px;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: #2D3418;
}

.promo-content {
  position: relative;
  z-index: 2;
}


.promo-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.promo-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4A882;
  margin-bottom: 25px;
  font-family: "Big Shoulders", sans-serif;
}

.promo-content h2 {
  font-family: "Big Shoulders", sans-serif;
  font-size: 58px;
  line-height: 110%;
  font-weight: 700;
  text-transform: uppercase;
  color: #F5EDE3;
  margin: 0 auto 30px;
  max-width: 800px;
}

.promo-content p {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #F3EEE6;
  font-family: 'Libre Franklin', sans-serif;
  text-align: center;

}

.promo-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background: #F5EDE3;
  color: #231009;
  border: 1px solid #F5EDE3;
  max-width: 227px;
}

.btn-primary-custom .arrow {
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover .arrow {
  transform: translateX(4px);
}

.btn-primary-custom:hover {
  background: #C4A882;
  color: #231009;
  border-color: #C4A882;
}

.btn-secondary-custom {
  border: 1px solid #F5EDE3;
  color: #F5EDE3;
  max-width: 229px;
}

.btn-secondary-custom:hover {
  background: #C4A882;
  color: #231009;
  border-color: #C4A882;
}

@media (max-width: 991px) {
  .promo-content h2 {
    font-size: 48px;

  }
}

@media (max-width: 768px) {

  .promo-banner {
    position: relative;
    min-height: 709px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
  }

  .promo-content h2 {
    font-size: 42px;
    line-height: 1.1;
    width: 100%;
    margin-bottom: 20px;
  }

  .promo-content p {
    font-size: 16px;
    margin-bottom: 68px;
  }

  .promo-buttons {
    flex-direction: column;
    gap: 32px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    padding: 15px 20px;
    justify-content: center;
  }
}

/* ==========================================================================
   SPACES DESIGNED SECTION (Sticky Scroll Gallery Layout)
   ========================================================================== */

.spaces-design-section {
  padding: 166px 0px 0;
  background-color: #F8F2EA;
}

/* Section Header styling */
.spaces-header {
  max-width: 869px;
  width: 100%;
  margin-bottom: 16px;
}

.spaces-heading {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.spaces-copy {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--primary-dark);
  max-width: 824px;
  width: 100%;
}

/* Card List Layout */
.spaces-cards-list {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.spaces-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: flex-start;
  border-bottom: 0.6px solid var(--primary-dark);
  position: sticky;
  top: 140px;
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 40px 56px 40px;
  background-color: #F8F2EA;
}

.spaces-card:last-child {
  border-bottom: none;
  /* No bottom border for last card */
}

/* Sticky Left Side: Big Image Container */
.spaces-card-left {
  width: 100%;
  height: 100%;
}

.spaces-card-big-img {
  max-width: 572px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.spaces-card-big-img img {
  width: 100%;
  max-height: 344px;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
}



/* Scrolling Right Side: Content & Small Image */
.spaces-card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  max-width: 380px;
  margin-right: 0;
  margin-left: auto;
  height: 100%;
}

.spaces-card-title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.spaces-card-copy {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--primary-dark);
  max-width: 480px;
}

.spaces-card-subimg {
  max-width: 380px;
  width: 100%;
  aspect-ratio: 380 / 150;
  overflow: hidden;
  border-radius: 1px;
}

.spaces-card-subimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}



@media (max-width: 1024px) {
  .spaces-card {
    gap: 30px;
  }
}

/* Responsive styles */
@media (max-width: 991px) {
  .spaces-header {
    margin-bottom: 21px;
  }

  .spaces-heading {
    font-size: 44px;
  }

  .spaces-card {
    max-width: 100%;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    padding: 56px 0;
    top: 40px;
  }

  .spaces-card-left {
    position: relative;
    top: 0;
  }

  .spaces-card-big-img {
    margin-bottom: 8px;
  }

  .spaces-card-right {
    padding-top: 0;
  }

  .spaces-card-copy {
    max-width: 100%;
  }

  .spaces-card-subimg {
    max-width: 100%;
    aspect-ratio: 2.5 / 1;
  }
}

@media (max-width: 767px) {
  .spaces-design-section {
    padding-bottom: 53px;
    padding-top: 100px;
  }

  .spaces-card {
    grid-template-columns: 1fr;
  }

  .spaces-card-right {
    margin-left: 0px;
    margin-right: auto;
  }

  .spaces-card-big-img {
    max-width: 100%;
  }

  .spaces-card-subimg {
    display: none;
  }

  .spaces-heading {
    font-size: 48px;
  }
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */

.location-section {
  padding: 80px 0 0;
  background-color: #F8F2EA;
  position: relative;
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.location-title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin: 0;
  max-width: 721px;
}

.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  background-color: var(--accent-rust);
  /* Uses custom color variable */
  padding: 16px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.location-cta:hover {
  background-color: var(--accent-rust-hover);
  transform: translateY(-2px);
}

.location-cta .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.location-cta:hover .arrow {
  transform: translateX(4px);
}

.location-map-container {
  width: 100%;
  margin-bottom: 72px;
  margin-top: 50px;
  /* margin-top: -16px; */
}

.location-content-wrapper {
  position: relative;
  overflow: hidden;
}

.location-content-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 432px;
  /* background: linear-gradient(180deg, #F8F2EA 55.08%, rgba(248, 242, 234, 0) 100%); */
  pointer-events: none;
  z-index: 2;
}

.location-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.location-highlights-grid {
  max-width: 1189px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 16px;
  gap: 38px;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
}

.location-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.location-card-title {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin: 0;
}

.location-card-desc {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--primary-dark);
  margin: 0;
  opacity: 0.85;
  min-height: 48px;
  /* Ensures desc columns align nicely */
}

.location-card-time {
  font-family: "Big Shoulders", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--green-wait);
  margin-top: 4px;
}

.section-image-wrapper {
  padding: 171px 16px 0;
  background-color: #F8F2EA;
}



.full-width-image {
  max-width: 100%;
  object-fit: cover;
  min-height: 540px;
  width: 100%;
  max-height: 540px;
  object-position: 0 76%;
}

@media screen and (min-width:1400px) {
  .full-width-image {
    max-height: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .section-image-wrapper {
    padding: 90px 5px 0;
  }
}

@media (max-width: 767px) {
  .full-width-image {
    min-height: 325px;
    height: auto;
  }
}

/* Responsive location section */
@media (max-width: 1024px) {
  .location-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .location-card-desc {
    min-height: auto;
  }

  .location-title {
    font-size: 48px;
  }
}

@media screen and (max-width:991px) {
  .container {
    padding: 0 16px;
  }

  .project-overview {
    padding: 80px 0px;
  }

  .feature-heading {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .feature-list {
    padding-left: 68px;
    max-width: 792px;
    margin-left: auto;
  }

  .project-overview-content-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-card-desc {
    font-size: 16px;
  }

  .location-section {
    padding: 56px 0 0;
  }
}


@media (max-width: 767px) {


  .location-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 0;
  }

  .location-map-container {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .location-map-container::after {
    display: none;
  }

  .location-highlights-grid {
    gap: 28px;
    padding: 0 25px;
  }
}

@media (max-width: 576px) {
  .location-highlights-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-card-time {
    text-align: right;
    margin-top: 18px;
    font-size: 20px;
  }
}




/* ==========================================================================
   THE HOUSE MODEL SECTION
   ========================================================================== */
.relative {
  position: relative;
  z-index: 5;
}

.the-house-model-section {
  padding: 0 0px 154px 0px;
  margin-top: 200px;
  position: relative;
}

.the-house-model-bg-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  background-color: #2D3418;
  height: 100%;
  z-index: 0;
}

.the-house-model-bg-image-wrapper img {
  position: relative;
  height: 100%;
  width: 100%;
  opacity: 10%;
  z-index: 2;
  object-fit: cover;

}

.the-house-model-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2D3418;
  z-index: 1;
}

.the-house-model-image-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  bottom: 80px;
  margin-bottom: 100px;
  position: relative;
  z-index: 3;
  padding: 0 40px;
  width: 100%;
}

.the-house-model-image-wrapper img {
  width: calc(68% - 20px);
  height: auto;
  max-width: 663px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.model-img-1 {
  left: 110px;
  position: relative;
}

.model-img-2 {
  top: 110px;
  right: 110px;
  left: auto;
  position: relative;
}

.the-house-model-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 92px;
}

.the-house-model-info {
  flex: 1;
  max-width: 596 px;
}

.the-house-model-label {
  display: inline-block;
  font-family: "Big Shoulders", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #C4A882;
  /* Tan/Gold color */
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.the-house-model-title {
  font-family: "Big Shoulders", sans-serif;
  font-size: 58px;
  line-height: 110%;
  font-weight: 900;
  text-transform: uppercase;
  color: #F5EDE3;
  margin-bottom: 20px;
}

.the-house-model-description {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F5EDE3;
  font-weight: 400;
  max-width: 480px;
}

.the-house-model-specs {
  flex: 1;
  max-width: 480px;
}

.the-house-model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-family: "Libre Franklin", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #C4A882;
  letter-spacing: 1px;
}

.spec-value {
  font-family: "Libre Franklin", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #F5EDE3;
}

.spec-value-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-subvalue {
  font-family: "Libre Franklin", sans-serif;
  font-size: 15px;
  color: #F5EDE3;
  font-weight: 400;
  margin-top: -6px;
}

/* Responsive Design for Max-width: 991px */
@media (max-width: 991px) {
  .the-house-model-section {
    margin-top: 132px;
    padding-bottom: 92px;
  }

  .the-house-model-image-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
    bottom: 62px;
    padding: 0px;
  }

  .the-house-model-content-wrapper {
    gap: 52px;
  }


  .the-house-model-image-wrapper img {
    width: 100%;
    max-width: 560px;
  }

  .model-img-1 {
    left: 0px;
  }

  .model-img-2 {
    top: -110px;
    right: 0px;
    left: 0;
  }

  .the-house-model-content-wrapper {
    flex-direction: column;
    gap: 42px;
  }

  .the-house-model-info {
    max-width: 100%;
  }

  .the-house-model-title {
    font-size: 48px;
  }

  .the-house-model-description {
    max-width: 572px;
    font-size: 15px;
  }

  .the-house-model-specs {
    max-width: 100%;
    width: 100%;
  }

  .the-house-model-grid {
    gap: 36px 20px;
  }

  .spec-value {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .spec-label {
    font-size: 15px;
  }

  .spec-subvalue {
    font-size: 14px;
  }

  .lf-footer {
    padding: 32px 5px 5px 5px;
  }
}

@media (max-width: 576px) {
  .the-house-model-image-wrapper {
    bottom: 61px;
  }

  .model-img-2 {
    top: -97px;
  }

  .lf-top {
    flex-direction: column;
    align-items: center;
  }

  .mobile-disclaimer p {
    text-align: center;
  }

  .lf-bottom {
    align-items: center;
  }

  .lf-top {
    gap: 0;
  }

  .lf-left {
    margin-bottom: 40px;
  }

  .lf-right {
    margin-bottom: 22px;
  }

  .lf-copy span {
    display: block;
  }
}