  :root {
      --navy: #0a1628;
      --blue: #1046a6;
      --sky: #1a6dcc;
      --ice: #d6eaff;
      --orange: #e85d04;
      --amber: #f48c06;
      --cream: #fdf8f3;
      --white: #ffffff;
      --text: #1c2b40;
      --muted: #607898;
      --border: rgba(10, 22, 40, 0.08);
      --gold: #f4a623;
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Barlow', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
  }

  .br-4 {
      border-radius: 4px;
  }

  /* ── NAVBAR ── */
  .navbar-brand-logo {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.35rem;
      color: var(--white) !important;
      letter-spacing: 0.02em;
      line-height: 1.2;
  }

  .navbar-brand-logo span {
      color: var(--orange);
  }

  .site-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      padding: 1rem 0;
      background: transparent;
      transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  }

  .site-nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
      padding: 0.6rem 0;
  }

  .site-nav .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 1rem !important;
      transition: color 0.2s;
  }

  .site-nav .nav-link:hover {
      color: var(--orange) !important;
  }

  .btn-nav {
      background: var(--orange);
      color: #fff !important;
      border-radius: 2px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 0.85rem;
      padding: 0.5rem 1.4rem !important;
      transition: background 0.2s, transform 0.15s;
  }

  .btn-nav:hover {
      background: var(--amber) !important;
      transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
      min-height: 100vh;
      background:
          linear-gradient(to bottom, rgba(10, 22, 40, 0.62) 0%, rgba(10, 22, 40, 0.30) 60%, rgba(10, 22, 40, 0.75) 100%),
          url('https://images.unsplash.com/photo-1605540436563-5bca919ae766?w=1800&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
  }

  .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 140px;
      background: linear-gradient(to bottom, transparent, var(--cream));
  }

  .hero-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      border-radius: 1px;
      margin-bottom: 1.5rem;
      animation: fadeDown 0.8s 0.1s both;
  }

  .hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.05;
      animation: fadeDown 0.8s 0.25s both;
  }

  .hero h1 em {
      font-style: italic;
      color: var(--orange);
  }

  .hero-sub {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.15rem;
      font-weight: 300;
      max-width: 560px;
      line-height: 1.7;
      animation: fadeDown 0.8s 0.4s both;
  }

  .hero-actions {
      animation: fadeDown 0.8s 0.55s both;
  }

  .btn-primary-orange {
      background: var(--orange);
      border: 2px solid var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 2.4rem;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary-orange:hover {
      background: var(--amber);
      border-color: var(--amber);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(232, 93, 4, 0.4);
  }

  .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.6);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.85rem 2.4rem;
      border-radius: 2px;
      transition: border-color 0.2s, background 0.2s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-outline-white:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
  }

  .hero-stats {
      position: absolute;
      bottom: 160px;
      right: 60px;
      display: flex;
      gap: 2rem;
      animation: fadeLeft 0.8s 0.7s both;
  }

  .hero-stat {
      text-align: center;
  }

  .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 2.2rem;
      color: var(--orange);
      line-height: 1;
  }

  .hero-stat .lbl {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0.3rem;
  }

  @keyframes fadeDown {
      from {
          opacity: 0;
          transform: translateY(-24px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeLeft {
      from {
          opacity: 0;
          transform: translateX(24px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(24px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes scrollLine {
      0% {
          transform: scaleY(0);
          transform-origin: top;
          opacity: 1;
      }

      50% {
          transform: scaleY(1);
          transform-origin: top;
          opacity: 1;
      }

      51% {
          transform: scaleY(1);
          transform-origin: bottom;
          opacity: 1;
      }

      100% {
          transform: scaleY(0);
          transform-origin: bottom;
          opacity: 0;
      }
  }

  @keyframes bounceArrow {

      0%,
      100% {
          transform: translateY(0);
          opacity: 0.6;
      }

      50% {
          transform: translateY(6px);
          opacity: 1;
      }
  }

  /* ── BOOKING BAR ── */
  #bannerBookingBar {
      animation: fadeUp 0.8s 0.75s both;
      margin-top: 3rem;
  }

  .booking-bar {
      display: flex;
      align-items: stretch;
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 6px;
      overflow: hidden;
      max-width: 780px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  }

  .booking-field {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 0.85rem 1.2rem;
      gap: 0.25rem;
      position: relative;
  }

  .booking-field:hover {
      background: rgba(255, 255, 255, 0.07);
  }

  .booking-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
  }

  .booking-input {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      font-size: 0.92rem;
      font-weight: 500;
      width: 100%;
      cursor: pointer;
      -webkit-appearance: none;
  }

  .booking-input option {
      background: var(--navy);
      color: #fff;
  }

  .booking-input::-webkit-calendar-picker-indicator {
      filter: invert(1) opacity(0.6);
      cursor: pointer;
  }

  .booking-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.15);
      margin: 0.6rem 0;
      flex-shrink: 0;
  }

  .btn-avail {
      background: var(--orange);
      border: none;
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0 1.8rem;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, box-shadow 0.2s;
      flex-shrink: 0;
  }

  .btn-avail:hover {
      background: var(--amber);
      box-shadow: 0 0 24px rgba(232, 93, 4, 0.5);
  }

  .questions-link {
      margin: 0.7rem 0 0 0.3rem;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.45);
  }

  .questions-link a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
  }

  .questions-link a:hover {
      color: var(--orange);
  }

  /* ── SCROLL HINT ── */
  .vb-scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      z-index: 2;
      animation: fadeUp 0.8s 1.1s both;
      cursor: pointer;
      text-decoration: none;
  }

  .vb-scroll-hint span {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.5);
  }

  .vb-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
      position: relative;
      overflow: hidden;
  }

  .vb-scroll-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--orange);
      transform: scaleY(0);
      transform-origin: top;
      animation: scrollLine 2s ease-in-out infinite;
  }

  .vb-scroll-arrow {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.8rem;
      animation: bounceArrow 1.8s ease-in-out infinite;
  }

  @media (max-width: 767px) {
      .booking-bar {
          flex-direction: column;
      }

      .booking-divider {
          width: auto;
          height: 1px;
          margin: 0 0.6rem;
      }

      .btn-avail {
          padding: 1rem;
          border-radius: 0;
      }

      .vb-scroll-hint {
          display: none;
      }
  }

  /* ── SECTION UTILS ── */
  .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.7rem;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      color: var(--navy);
  }

  .section-title em {
      font-style: italic;
      color: var(--sky);
  }

  .divider-orange {
      width: 56px;
      height: 3px;
      background: var(--orange);
      margin: 1.2rem 0 1.5rem;
  }

  /* ── ABOUT IMAGE COMPOSITION ── */
  /* wrapper sits inside col-lg-6 — stretch to fill the full column height */
  .about-img-outer {
      height: 100%;
      min-height: 680px;
      display: flex;
      flex-direction: column;
  }

  .about-img-composition {
      position: relative;
      flex: 1;
      /* grow to fill whatever the left column is */
      min-height: 680px;
  }

  .about-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 80%;
      bottom: 200px;
      /* leave room for secondary at bottom */
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(10, 22, 40, 0.18);
  }

  .about-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
  }

  .about-img-main:hover img {
      transform: scale(1.04);
  }

  .about-img-badge {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border-radius: 2px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .about-img-secondary {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 52%;
      height: 190px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(10, 22, 40, 0.20);
      border: 4px solid var(--cream);
  }

  .about-img-secondary img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
  }

  .about-img-secondary:hover img {
      transform: scale(1.06);
  }

  /* third decorative image — fills bottom-left gap */
  .about-img-third {
      position: absolute;
      bottom: 0;
      left: 0;
      width: calc(80% - 180px - 16px);
      /* aligns with main-image edge minus gap */
      height: 190px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(10, 22, 40, 0.16);
      border: 4px solid var(--cream);
  }

  .about-img-third img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
  }

  .about-img-third:hover img {
      transform: scale(1.06);
  }

  .about-img-accent {
      position: absolute;
      top: 38%;
      right: -8px;
      transform: translateY(-50%);
      z-index: 2;
  }

  .about-img-stat {
      background: var(--navy);
      border-radius: 6px;
      padding: 1.1rem 1.4rem;
      text-align: center;
      box-shadow: 0 8px 28px rgba(10, 22, 40, 0.30);
      border-left: 3px solid var(--orange);
  }

  .astat-num {
      display: block;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.3rem;
      color: var(--white);
      line-height: 1.2;
  }

  .astat-lbl {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 0.3rem;
  }

  @media (max-width: 1199px) {
      .about-img-composition {
          min-height: 580px;
      }

      .about-img-outer {
          min-height: 580px;
      }
  }

  @media (max-width: 991px) {
      .about-img-composition {
          min-height: 420px;
      }

      .about-img-outer {
          min-height: 420px;
      }

      .about-img-main {
          bottom: 160px;
      }

      .about-img-secondary,
      .about-img-third {
          height: 150px;
      }
  }

  @media (max-width: 575px) {
      .about-img-composition {
          min-height: 320px;
      }

      .about-img-outer {
          min-height: 320px;
      }

      .about-img-accent,
      .about-img-third {
          display: none;
      }

      .about-img-main {
          bottom: 120px;
          width: 100%;
      }

      .about-img-secondary {
          width: 60%;
          height: 110px;
      }
  }

  /* ── ABOUT (existing) ── */
  .about-section {
      padding: 100px 0;
  }

  .about-card {
      background: var(--white);
      border-radius: 4px;
      padding: 2rem;
      box-shadow: 0 4px 32px rgba(10, 22, 40, 0.07);
      border-left: 4px solid var(--orange);
      height: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
  }

  .about-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
  }

  .about-card .icon {
      width: 52px;
      height: 52px;
      background: var(--ice);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--blue);
      margin-bottom: 1rem;
  }

  .about-card h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--navy);
  }

  .about-card p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
  }

  /* ── PROPERTY HIGHLIGHT ── */
  /* ── Property Section Overrides & New Styles ── */
  .property-section {
      background: var(--navy, #0a1628);
      padding: 100px 0;
      overflow: hidden;
  }

  /* Tab switcher */
  .prop-tabs {
      display: flex;
      gap: 0;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 50px;
      padding: 5px;
      width: fit-content;
      margin: 0 auto 3.5rem;
  }

  .prop-tab {
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, 0.55);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 10px 28px;
      border-radius: 50px;
      cursor: pointer;
      transition: all .3s;
      white-space: nowrap;
  }

  .prop-tab.active {
      background: var(--orange, #f4621f);
      color: #fff;
      box-shadow: 0 4px 18px rgba(244, 98, 31, 0.4);
  }

  /* Info banner */
  .prop-info-banner {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 4px solid var(--orange, #f4621f);
      border-radius: 12px;
      padding: 1.5rem 2rem;
      margin-bottom: 3rem;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.95rem;
      line-height: 1.75;
      display: none;
  }

  .prop-info-banner.active {
      display: block;
  }

  .prop-info-banner strong {
      color: #fff;
  }

  /* Carousel container */
  .prop-carousel-outer {
      position: relative;
      overflow: hidden;
  }

  .prop-carousel-track-wrap {
      overflow: hidden;
  }

  .prop-carousel-track {
      display: flex;
      gap: 24px;
      transition: transform .5s cubic-bezier(.25, .8, .25, 1);
      will-change: transform;
  }

  /* Property card */
  .prop-card {
      flex: 0 0 calc(33.333% - 16px);
      min-width: 0;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      overflow: hidden;
      transition: transform .3s, border-color .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
  }

  .prop-card:hover {
      transform: translateY(-6px);
      border-color: rgba(244, 98, 31, 0.5);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .prop-card-img {
      width: 100%;
      height: 195px;
      object-fit: cover;
      display: block;
      background: rgba(255, 255, 255, 0.07);
  }

  .prop-card-img-placeholder {
      width: 100%;
      height: 195px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
  }

  .prop-card-body {
      padding: 1.25rem 1.4rem;
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .prop-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .5rem;
      line-height: 1.35;
  }

  .prop-card-stars {
      color: var(--orange, #f4621f);
      font-size: .85rem;
      letter-spacing: .05em;
      margin-bottom: .3rem;
  }

  .prop-card-reviews {
      color: rgba(255, 255, 255, 0.4);
      font-size: .78rem;
      margin-bottom: .8rem;
  }

  .prop-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      margin-top: auto;
      padding-top: .8rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .prop-meta-pill {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 3px 10px;
      font-size: .76rem;
      color: rgba(255, 255, 255, 0.7);
      white-space: nowrap;
  }

  .prop-meta-pill i {
      margin-right: 4px;
      color: var(--orange, #f4621f);
  }

  /* Carousel nav */
  .prop-carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 2.5rem;
  }

  .prop-nav-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s;
  }

  .prop-nav-btn:hover {
      background: var(--orange, #f4621f);
      border-color: var(--orange, #f4621f);
  }

  .prop-nav-btn:disabled {
      opacity: .3;
      cursor: default;
  }

  .prop-nav-dots {
      display: flex;
      gap: 8px;
  }

  .prop-nav-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      border: none;
      cursor: pointer;
      transition: all .3s;
      padding: 0;
  }

  .prop-nav-dot.active {
      background: var(--orange, #f4621f);
      width: 24px;
      border-radius: 4px;
  }

  /* Big Bear info grid */
  .bigbear-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 2rem;
  }

  .bigbear-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 1.5rem;
      transition: border-color .3s, transform .3s;
  }

  .bigbear-card:hover {
      border-color: rgba(244, 98, 31, 0.4);
      transform: translateY(-3px);
  }

  .bigbear-card-icon {
      font-size: 1.6rem;
      margin-bottom: .75rem;
  }

  .bigbear-card h5 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .5rem;
  }

  .bigbear-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: .875rem;
      line-height: 1.65;
      margin: 0;
  }

  .bigbear-card a {
      display: inline-block;
      margin-top: .6rem;
      color: var(--orange, #f4621f);
      font-size: .8rem;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: .04em;
  }

  .bigbear-card a:hover {
      text-decoration: underline;
  }

  @media (max-width: 991px) {
      .prop-card {
          flex: 0 0 calc(50% - 12px);
      }

      .bigbear-grid {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 600px) {
      .prop-card {
          flex: 0 0 85%;
      }

      .prop-tabs {
          flex-wrap: wrap;
          border-radius: 12px;
      }
  }

  /* ── Lake Havasu Panel Styles ── */
  .havasu-hero-strip {
      display: flex;
      gap: 16px;
      margin-bottom: 2rem;
      border-radius: 16px;
      overflow: hidden;
  }

  .havasu-img-main {
      position: relative;
      flex: 2;
  }

  .havasu-img-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .havasu-img-placeholder {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      height: 100%;
      min-height: 160px;
      border: 1px solid rgba(255, 255, 255, 0.09);
  }

  .havasu-img-placeholder.main {
      min-height: 340px;
      font-size: 5rem;
  }

  .havasu-hero-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: var(--orange, #f4621f);
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 6px 14px;
      border-radius: 20px;
  }

  .havasu-details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 2rem;
  }

  .havasu-detail-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 1.5rem;
      transition: border-color .3s, transform .3s;
  }

  .havasu-detail-card:hover {
      border-color: rgba(244, 98, 31, 0.4);
      transform: translateY(-3px);
  }

  .havasu-detail-icon {
      font-size: 1.6rem;
      margin-bottom: .6rem;
  }

  .havasu-detail-card h5 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .6rem;
  }

  .havasu-detail-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .havasu-detail-card ul li {
      color: rgba(255, 255, 255, 0.65);
      font-size: .875rem;
      line-height: 1.6;
      padding: 3px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .havasu-detail-card ul li:last-child {
      border-bottom: none;
  }

  .havasu-detail-card ul li strong {
      color: rgba(255, 255, 255, 0.9);
  }

  .havasu-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-bottom: 2rem;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
  }

  .havasu-hl {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 30px;
      padding: 8px 18px;
      color: rgba(255, 255, 255, 0.8);
      font-size: .85rem;
      font-weight: 600;
  }

  .havasu-hl i {
      color: var(--orange, #f4621f);
  }

  @media (max-width: 767px) {
      .havasu-hero-strip {
          flex-direction: column;
      }

      .havasu-img-side {
          flex-direction: row;
      }

      .havasu-details-grid {
          grid-template-columns: 1fr;
      }
  }



  /* ── ACTIVITIES ── */
  .activities-section {
      padding: 100px 0;
  }

  .season-card {
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 32px rgba(10, 22, 40, 0.07);
      height: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
  }

  .season-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(10, 22, 40, 0.13);
  }

  .season-card-header {
      padding: 2rem 2rem 1.5rem;
      position: relative;
  }

  .season-card-header.winter {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  }

  .season-card-header.summer {
      background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  }

  .season-card-header h3 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.7rem;
      color: #fff;
  }

  .season-card-header .season-icon {
      font-size: 2.8rem;
      position: absolute;
      right: 1.5rem;
      top: 1.5rem;
      opacity: 0.3;
  }

  .peak-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 0.65rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.2rem 0.7rem;
      border-radius: 1px;
      margin-top: 0.5rem;
  }

  .season-card-body {
      padding: 2rem;
  }

  .activity-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.93rem;
      color: var(--text);
  }

  .activity-item:last-child {
      border-bottom: none;
  }

  .activity-item i {
      color: var(--orange);
      width: 18px;
      text-align: center;
  }

  .activity-item.highlight {
      color: var(--blue);
      font-weight: 600;
  }

  /* ── Keep existing base styles, add image-card overrides ── */
  .activities-section {
      padding: 100px 0;
      background: #fff;
  }

  /* Season toggle tabs */
  .act-season-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      background: rgba(10, 22, 40, 0.06);
      border-radius: 50px;
      padding: 5px;
      width: fit-content;
      margin: 0 auto 3.5rem;
  }

  .act-season-tab {
      background: transparent;
      border: none;
      color: rgba(10, 22, 40, 0.5);
      font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 10px 32px;
      border-radius: 50px;
      cursor: pointer;
      transition: all .3s;
      white-space: nowrap;
  }

  .act-season-tab.active-winter {
      background: var(--navy, #0a1628);
      color: #fff;
      box-shadow: 0 4px 18px rgba(10, 22, 40, 0.3);
  }

  .act-season-tab.active-summer {
      background: var(--orange, #f4621f);
      color: #fff;
      box-shadow: 0 4px 18px rgba(244, 98, 31, 0.4);
  }

  /* Activity grid — image cards */
  .act-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      transition: opacity .35s, transform .35s;
  }

  .act-grid.hidden {
      display: none;
  }

  .act-card {
      border-radius: 14px;
      overflow: hidden;
      background: var(--white, #fff);
      box-shadow: 0 3px 20px rgba(10, 22, 40, 0.08);
      transition: transform .28s, box-shadow .28s;
      cursor: pointer;
      position: relative;
  }

  .act-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 16px 42px rgba(10, 22, 40, 0.15);
  }

  .act-card-img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
  }

  .act-card-img-placeholder {
      width: 100%;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
  }

  .act-card-img-placeholder.winter-bg {
      background: linear-gradient(135deg, var(--navy, #0a1628) 0%, var(--blue, #1a3560) 100%);
  }

  .act-card-img-placeholder.summer-bg {
      background: linear-gradient(135deg, var(--blue, #1a3560) 0%, var(--sky, #2d7fc1) 100%);
  }

  /* Highlight badge on card */
  .act-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--orange, #f4621f);
      color: #fff;
      font-size: 0.62rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 2px;
      z-index: 2;
  }

  .act-card-body {
      padding: 1.1rem 1.2rem 1.3rem;
  }

  .act-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy, #0a1628);
      margin-bottom: .35rem;
      line-height: 1.35;
  }

  .act-card-desc {
      font-size: .82rem;
      color: #6b7280;
      line-height: 1.55;
      margin: 0;
  }

  /* Peak season full-width banner */
  .act-peak-banner {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(90deg, var(--navy, #0a1628) 0%, #1a3560 100%);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      margin-bottom: 2rem;
      color: #fff;
  }

  .act-peak-banner .peak-badge {
      background: var(--orange, #f4621f);
      font-size: .7rem;
      padding: .25rem .8rem;
      border-radius: 2px;
      white-space: nowrap;
      flex-shrink: 0;
  }

  .act-peak-banner span {
      font-size: .88rem;
      color: rgba(255, 255, 255, 0.72);
  }

  @media (max-width: 991px) {
      .act-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 540px) {
      .act-grid {
          grid-template-columns: 1fr;
      }

      .act-season-tabs {
          flex-wrap: wrap;
          border-radius: 14px;
      }
  }


  /* ── REVIEWS ── */
  .reviews-section {
      padding: 100px 0;
      background: var(--navy);
  }

  .reviews-section .section-title {
      color: #fff;
  }

  .reviews-section .section-label {
      color: var(--orange);
  }

  .rating-summary {
      text-align: center;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 3rem;
  }

  .rating-number {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 4.5rem;
      color: var(--orange);
      line-height: 1;
  }

  .stars-row {
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0.5rem 0;
  }

  .rating-sub {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.88rem;
  }

  .review-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 4px;
      padding: 1.8rem;
      height: 100%;
      transition: background 0.2s, border-color 0.2s;
      position: relative;
  }

  .review-card:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(232, 93, 4, 0.4);
  }

  .review-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      color: var(--orange);
      opacity: 0.25;
      position: absolute;
      top: 0.5rem;
      left: 1.2rem;
      line-height: 1;
  }

  .review-stars {
      color: var(--gold);
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
  }

  .review-text {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 1.2rem;
  }

  .reviewer-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.05em;
      color: var(--white);
  }

  .reviewer-location {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 0.1rem;
  }

  .reviewer-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      flex-shrink: 0;
  }

  /* ── LINKS/RELATED ── */
  .related-section {
      padding: 100px 0;
  }

  .related-card {
      background: var(--white);
      border-radius: 4px;
      padding: 2.5rem 2rem;
      box-shadow: 0 4px 32px rgba(10, 22, 40, 0.07);
      height: 100%;
      text-align: center;
      border-top: 4px solid var(--blue);
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }

  .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(10, 22, 40, 0.13);
      border-color: var(--orange);
  }

  .related-card .icon {
      width: 64px;
      height: 64px;
      background: var(--ice);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--blue);
      margin: 0 auto 1.5rem;
  }

  .related-card h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 0.8rem;
  }

  .related-card p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.7;
  }

  .related-card a {
      display: inline-block;
      margin-top: 1.2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      text-decoration: none;
      border-bottom: 2px solid var(--orange);
      padding-bottom: 2px;
      transition: color 0.2s;
  }

  .related-card a:hover {
      color: var(--blue);
      border-color: var(--blue);
  }

  /* ── CTA ── */
  .cta-section {
      padding: 120px 0;
      background:
          linear-gradient(135deg, rgba(10, 22, 40, 0.90) 0%, rgba(16, 70, 166, 0.85) 100%),
          url('https://images.unsplash.com/photo-1516655855035-d521ea294b3b?w=1600&q=80') center/cover no-repeat;
      text-align: center;
  }

  .cta-section h2 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      color: #fff;
      margin-bottom: 1rem;
  }

  .cta-section p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
  }

  /* ── FOOTER ── */
  footer {
      background: #060f1e;
      padding: 60px 0 30px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.88rem;
  }

  footer .footer-brand {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 0.8rem;
  }

  footer .footer-brand span {
      color: var(--orange);
  }

  footer a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color 0.2s;
  }

  footer a:hover {
      color: var(--orange);
  }

  footer .footer-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 1rem;
  }

  footer ul {
      list-style: none;
      padding: 0;
  }

  footer ul li {
      margin-bottom: 0.55rem;
  }

  footer hr {
      border-color: rgba(255, 255, 255, 0.08);
      margin: 2.5rem 0 1.5rem;
  }

  .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.55);
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .social-link:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s, transform 0.65s;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-delay-1 {
      transition-delay: 0.1s;
  }

  .reveal-delay-2 {
      transition-delay: 0.2s;
  }

  .reveal-delay-3 {
      transition-delay: 0.3s;
  }

  /* ── REVIEWS CAROUSEL ── */
  .reviews-carousel-wrap {
      position: relative;
      overflow: hidden;
  }

  .reviews-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
  }

  .review-slide {
      flex: 0 0 calc(33.333% - 1rem);
      min-width: 0;
  }

  @media (max-width: 991px) {
      .review-slide {
          flex: 0 0 calc(50% - 0.75rem);
      }
  }

  @media (max-width: 600px) {
      .review-slide {
          flex: 0 0 100%;
      }
  }

  .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 2.5rem;
  }

  .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.2);
      background: transparent;
      color: rgba(255, 255, 255, 0.7);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  }

  .carousel-btn:hover:not(:disabled) {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: scale(1.08);
  }

  .carousel-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
  }

  .carousel-dots {
      display: flex;
      gap: 0.45rem;
  }

  .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
  }

  .carousel-dot.active {
      background: var(--orange);
      transform: scale(1.35);
  }

  .carousel-counter {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.45);
      min-width: 56px;
      text-align: center;
  }

  /* mobile tweaks */
  @media (max-width: 767px) {
      .hero-stats {
          position: static;
          flex-wrap: wrap;
          justify-content: center;
          margin-top: 2rem;
      }

      .hero {
          padding: 120px 0 80px;
          min-height: auto;
      }
  }