
  /* ===== HOME PAGE STYLES ===== */

  /* ---- CREATIVE HERO SLIDER ---- */
  .hero-creative {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
    background: var(--c-navy);
    color: #fff;
  }

  .hero-creative__slider {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
    /* Buffer for controls */
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s linear;
  }

  .hero-slide.active .hero-slide__bg {
    transform: scale(1);
  }

  .hero-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* Global subtle dimming */
    z-index: 1;
  }

  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 10, 15, 0.9) 0%, rgba(20, 10, 15, 0.6) 40%, rgba(20, 10, 15, 0.2) 100%);
    z-index: 2;
  }

  .hero-slide__container {
    position: relative;
    z-index: 10;
    padding-top: var(--nav-h);
  }

  .hero-slide__content {
    max-width: 700px;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s var(--ease) 0.4s, opacity 0.8s var(--ease) 0.4s;
  }

  .hero-slide.active .hero-slide__content {
    transform: translateY(0);
    opacity: 1;
  }

  .hero-slide__label {
    display: block;
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    /* Increased for luxury feel */
    text-transform: uppercase;
    color: var(--c-gold-lt);
    margin-bottom: 24px;
    opacity: 0.9;
  }

  .hero-slide__title {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    /* Reduced scale */
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  }

  .hero-slide__title em {
    font-style: normal;
    color: var(--c-gold-lt);
  }

  .hero-slide__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 460px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
  }

  .hero-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(193, 160, 88, 0.15);
    border: 1px solid rgba(193, 160, 88, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    margin-bottom: 40px;
    border-radius: 4px;
    animation: fadeIn 1s var(--ease) 0.6s both;
  }

  .hero-offer-tag span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
  }

  .hero-offer-tag strong {
    color: var(--c-gold-lt);
    font-weight: 600;
  }

  .hero-slide__btns {
    display: flex;
    gap: 20px;
  }

  /* Controls */
  .hero-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 20;
  }

  .hero-controls__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hero-pagination {
    display: flex;
    gap: 12px;
  }

  .hero-pagination__dash {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .hero-pagination__dash::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--c-gold);
  }

  .hero-pagination__dash.active::after {
    animation: heroProgress 5s linear forwards;
  }

  @keyframes heroProgress {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .hero-nav {
    display: flex;
    gap: 15px;
  }

  .hero-nav__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }

  .hero-nav__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
  }

  .hero-nav__btn svg {
    width: 20px;
    height: 20px;
  }

  /* Scroll Down */
  .hero-scroll {
    position: absolute;
    bottom: 20px;
    /* Lowered */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    /* Tighter gap */
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.55rem;
    /* Slightly smaller */
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: opacity 0.4s, color 0.4s;
  }

  .hero-scroll:hover {
    color: #fff;
  }

  .hero-scroll__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--c-gold), transparent);
    position: relative;
    overflow: hidden;
  }

  .hero-scroll__line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s infinite cubic-bezier(0.7, 0, 0.3, 1);
  }

  @media (max-width: 640px) {
    .hero-offer-tag {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 10px 16px;
    }

    .hero-offer-tag div {
      display: none;
    }

    .hero-slide__text {
      font-size: 0.85rem;
      margin-bottom: 24px;
    }
  }

  @keyframes scrollLine {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(100%);
    }
  }

  /* ---- EDITORIAL STATS ---- */
  .stats-editorial {
    background: var(--c-bg2);
    padding: 80px 0;
    border-bottom: 1px solid var(--c-border);
  }

  .stats-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin-inline: auto;
  }

  .stats-editorial__item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid var(--c-border);
  }

  .stats-editorial__item:last-child {
    border-right: none;
  }

  .stats-editorial__val {
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--c-navy);
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .stats-editorial__lbl {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
  }

  /* ---- PREMIUM ABOUT (THE STORY) ---- */
  .about-premium {
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
  }

  .about-premium__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
  }

  .about-premium__label {
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 24px;
    display: block;
  }

  .about-premium__title {
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 4.5vw, 2.22rem);
    color: var(--c-navy);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .about-premium__title em {
    font-style: normal;
    display: block;
    margin-top: 5px;
  }

  .about-premium__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
  }

  .about-premium__visual {
    position: relative;
    border-radius: 400px 400px 0 0;
    overflow: hidden;
    aspect-ratio: 3/4.2;
  }

  .about-premium__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease);
  }

  .about-premium:hover .about-premium__visual img {
    transform: scale(1.05);
  }

  @media (max-width: 991px) {
    .about-premium__grid {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .about-premium__visual {
      aspect-ratio: 4/5;
      max-width: 500px;
      margin-inline: auto;
    }

    .stats-editorial__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .stats-editorial__item {
      border-bottom: 1px solid var(--c-border);
      padding: 30px;
    }

    .stats-editorial__item:last-child {
      border-bottom: none;
    }
  }

  /* ---- ARCHITECTURE ---- */
  .arch-section {
    background: #fff;
    position: relative;
    overflow: hidden;
  }

  .arch-section__big-heading {
    font-family: var(--ff-serif);
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    color: var(--c-navy);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: clamp(30px, 5vw, 50px);
  }

  .arch-section__visual {
    position: relative;
    height: clamp(300px, 40vw, 550px);
    border-radius: 0;
    overflow: hidden;
  }

  .arch-section__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .arch-section__text-col p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.2rem;
  }

  /* ---- AMENITIES (Reference Match) ---- */
  .amenities-ref {
    background: var(--c-navy);
    position: relative;
    overflow: hidden;
  }

  .amenities-ref::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 20px,
        rgba(255, 255, 255, 0.015) 20px, rgba(255, 255, 255, 0.015) 21px);
    pointer-events: none;
  }

  .amenities-ref__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(500px, 65vw, 800px);
    position: relative;
    z-index: 1;
  }

  /* Left text block */
  .amenities-ref__text {
    padding: clamp(60px, 8vw, 120px) clamp(30px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .amenities-ref__label {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
  }

  .amenities-ref__heading {
    font-family: var(--ff-serif);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .amenities-ref__body {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    max-width: 440px;
    margin-bottom: 32px;
  }

  .amenities-ref__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .amenities-ref__list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .amenities-ref__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--c-gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .amenities-ref__btn {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 36px;
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 60px;
    transition: background 0.3s, border-color 0.3s;
    align-self: flex-start;
    text-decoration: none;
  }

  .amenities-ref__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
  }

  /* Right images */
  .amenities-ref__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 1.5vw, 20px);
    padding: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 40px) clamp(40px, 6vw, 80px) clamp(10px, 2vw, 20px);
    align-items: end;
  }

  .amenities-ref__img-wrap {
    overflow: hidden;
    border-radius: 200px 200px 0 0;
    /* arch top */
    transition-delay: var(--delay, 0s);
  }

  .amenities-ref__img-wrap--tall {
    height: clamp(300px, 40vw, 580px);
    align-self: end;
  }

  .amenities-ref__img-wrap--short {
    height: clamp(220px, 30vw, 400px);
    align-self: end;
    border-radius: 160px 160px 0 0;
  }

  .amenities-ref__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .amenities-ref__inner {
      grid-template-columns: 1fr;
    }

    .amenities-ref__imgs {
      grid-template-columns: 1fr 1fr;
      padding: 20px 20px 0;
    }

    .amenities-ref__img-wrap--tall {
      height: 220px;
    }

    .amenities-ref__img-wrap--short {
      height: 160px;
    }
  }

  /* ---- LUXURY LOCATION NARRATIVE ---- */
  .loc-narrative {
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
  }

  .loc-narrative__header {
    max-width: 800px;
    margin-bottom: 80px;
  }

  .loc-narrative__header .label {
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 24px;
    display: block;
  }

  .loc-narrative__title {
    font-family: var(--ff-serif);
    font-size: clamp(1.5rem, 4.5vw, 2.4rem);
    color: var(--c-navy);
    font-weight: 400;
    line-height: 1.1;
  }

  .loc-narrative__title em {
    font-style: normal;
    color: var(--c-gold);
  }

  /* Stylized Map Visual */
  .loc-narrative__map-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
    aspect-ratio: 16/9;
    margin-bottom: 80px;
    background: var(--c-navy);
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--c-border);
  }

  .location-visual {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .location-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
  }

  .location-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(43, 15, 5, 0.15) 100%);
  }

  /* Map Markers */
  .map-marker {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-marker__dot {
    width: 12px;
    height: 12px;
    background: var(--c-gold);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 15px rgba(184, 140, 88, 0.5);
  }

  .map-marker__pulse {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid var(--c-gold);
    border-radius: 50%;
    animation: markerPulse 2s infinite ease-out;
  }

  @keyframes markerPulse {
    0% {
      width: 12px;
      height: 12px;
      opacity: 1;
    }

    100% {
      width: 60px;
      height: 60px;
      opacity: 0;
    }
  }

  .map-marker__label {
    margin-top: 15px;
    text-align: center;
    color: var(--c-navy);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .map-marker__label strong {
    display: block;
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .map-marker__label span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent-red);
    font-weight: 600;
  }

  .marker-fb {
    top: 45%;
    left: 40%;
  }

  .marker-wynn {
    top: 35%;
    left: 58%;
  }

  /* Editorial Landmark List */
  .landmark-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }

  .landmark-cat {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 43, 61, 0.08);
  }

  .landmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .landmark-list li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 43, 61, 0.04);
    font-size: 1.05rem;
    color: var(--c-navy);
  }

  .landmark-list li span {
    font-family: var(--ff-serif);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--c-gold);
    font-weight: 600;
    min-width: 70px;
  }

  @media (max-width: 991px) {
    .loc-narrative__map-wrap {
      aspect-ratio: 16/9;
    }

    .landmark-editorial {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .marker-fb {
      left: 35%;
    }

    .marker-wynn {
      left: 65%;
    }
  }

  /* ---- FOOTER ---- */
  .footer-v2 {
    background: #6D4A2A; /* Premium Bronze/Brown */
    padding: clamp(60px, 8vw, 100px) 0 0;
    position: relative;
    overflow: hidden;
  }

  .contact-section {
    background: #fff;
  }

  .contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: start;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 43, 61, 0.2);
    padding: 12px 4px;
    font-family: var(--ff-sans);
    font-size: 0.88rem;
    color: var(--c-navy);
    outline: none;
    transition: border-color 0.3s;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: var(--c-muted);
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--c-navy);
  }

  .contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .contact-form .btn-submit {
    display: inline-block;
    border: 1px solid var(--c-navy);
    background: transparent;
    color: var(--c-navy);
    padding: 14px 48px;
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 60px;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
  }

  .contact-form .btn-submit:hover {
    background: var(--c-navy);
    color: #fff;
  }

  .contact-info h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--c-navy);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .contact-info-block {
    margin-bottom: 30px;
  }

  .contact-info-block .lbl {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 8px;
    display: block;
  }

  .contact-info-block p,
  .contact-info-block a {
    font-size: 0.9rem;
    color: var(--c-navy);
    line-height: 1.7;
  }


  /* ---- RESPONSIVE ---- */
  @media (max-width: 1024px) {
    .amen-split {
      grid-template-columns: 1fr;
    }

    .contact-section .contact-grid {
      grid-template-columns: 1fr;
    }

    .footer-v2__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .hero-slide-card {
      width: 85vw;
      height: 55vw;
      border-radius: 20px;
    }

    .stats-bar__grid {
      grid-template-columns: 1fr;
    }

    .stats-bar__item {
      border-right: none;
      border-bottom: 1px solid var(--c-border);
      padding: 16px;
    }

    .stats-bar__item:last-child {
      border-bottom: none;
    }

    .footer-v2__grid {
      grid-template-columns: 1fr;
    }

    .contact-form .form-row {
      grid-template-columns: 1fr;
    }
  }
  }

  /* ---- LOCATION SECTION (Force Reliable Load) ---- */
  .loc-section {
    background: #fff;
    padding: clamp(60px, 8vw, 120px) 0;
    position: relative;
    z-index: 1;
  }

  .loc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }

  .fb-loc-key {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    pointer-events: none;
    z-index: 10;
  }

  .fb-loc-key__car {
    color: #ffffff !important;
    margin-bottom: -8px;
    opacity: 1;
    display: block;
  }

  .fb-loc-key__car svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
  }

  .fb-loc-key__item {
    display: flex !important;
    flex-direction: column !important;
    font-size: 0.72rem;
    font-family: var(--ff-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.2;
    position: relative !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .fb-loc-key__item span {
    display: block;
    font-weight: 500;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-top: 4px;
  }

  .fb-loc-pin {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0;
    pointer-events: none;
  }

  .fb-loc-pin__dot {
    width: 12px;
    height: 12px;
    background: #ffffff !important;
    border-radius: 50%;
    border: 2.5px solid var(--c-navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .fb-loc-pin::after {
    content: '';
    height: 1px;
    background: rgba(255, 255, 255, 0.5) !important;
    width: 40px;
    margin-top: 1px;
  }

  .fb-loc-pin--wynn::after {
    order: 1;
    margin-left: -2px;
  }

  .fb-loc-pin--fb::after {
    order: 2;
    margin-right: -2px;
    width: 30px;
  }

  .fb-loc-pin__label {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
    position: relative;
    z-index: 2;
  }

  .fb-loc-pin--wynn .fb-loc-pin__label {
    order: 2;
    text-align: left;
  }

  .fb-loc-pin--fb .fb-loc-pin__label {
    order: 1;
    text-align: right;
  }

  .fb-loc-pin__name {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .fb-loc-pin__sub {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.05em;
  }

  .fb-loc-pin--fb {
    bottom: 28%;
    left: 22%;
  }

  .fb-loc-pin--wynn {
    top: 38%;
    right: 18%;
  }

  .loc-map-img {
    position: relative;
    border-radius: 60% 60% 0 0 / 30% 30% 0 0;
    overflow: hidden;
    background: #b8d8d8;
    height: clamp(400px, 52vw, 680px);
  }

  .loc-map-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) hue-rotate(160deg) brightness(1.1);
    mix-blend-mode: multiply;
  }

  @media (max-width: 900px) {
    .loc-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .loc-map-img {
      height: clamp(260px, 60vw, 400px);
      border-radius: 40% 40% 0 0 / 20% 20% 0 0;
    }
  }

  /* ---- FLOOR PLANS (Horizontal Grid + Premium BG) ---- */
  .plans-section {
    background-color: #6D4A2A !important; 
  }
  
  .plans-section .section-header .label, 
  .plans-section .section-header h2 {
    color: #fff !important;
  }
  .plans-section .section-header .divider-h {
    background: rgba(255, 255, 255, 0.3) !important;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .plan-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  }

  .plan-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
  }

  .plan-card__header h3 {
    font-family: var(--ff-sans);
    font-size: 1.4rem;
    color: var(--c-navy);
    margin: 0;
    font-weight: 600;
  }

  .plan-card__header .tag {
    background: #F7F7F7;
    color: #888;
    font-size: 0.65rem;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .plan-card__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .plan-card__details .detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .plan-card__details .lbl {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .plan-card__details .val {
    font-size: 1.1rem;
    color: var(--c-navy);
    font-weight: 500;
  }

  .plan-card__action {
    margin-top: 10px;
  }

  .plan-card__action .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--c-navy);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 16px;
  }

  .plan-card__action .btn:hover {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
  }

  @media (max-width: 768px) {
    .plans-grid {
      grid-template-columns: 1fr;
    }
  }
