*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0a1628;
      --deep:   #0d1f3c;
      --mid:    #1a3455;
      --gold:   #c9a84c;
      --gold2:  #e8c97a;
      --sand:   #f5efe6;
      --white:  #ffffff;
      --red-sea:#1a6b8a;
      --teal:   #0e7c8b;
      --text:   #2c3e50;
      --muted:  #6b7c93;
      --r:      0.75rem;
      --section-pad: clamp(4rem, 8vw, 8rem);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.25rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    nav.scrolled {
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(12px);
      padding: 0.9rem 2rem;
      box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    }
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 64px; width: auto; display: block;
      transition: height 0.4s;
    }
    nav.scrolled .nav-logo img { height: 50px; }
    .nav-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.8); text-decoration: none;
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold); color: var(--navy) !important;
      padding: 0.55rem 1.4rem; border-radius: 2rem;
      font-weight: 600 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); transition: 0.3s;
    }

    /* ── HERO ── */
    #hero {
      position: relative; height: 100vh; min-height: 680px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: #0a1628;
    }
    .hero-img {
      position: absolute; inset: 0;
      background: url('https://orgwan-resort.com/wp-content/uploads/2026/06/orgwan-poolside.jpg') center/cover no-repeat;
      opacity: 1;
      animation: heroZoom 14s ease-out forwards;
      transform-origin: center;
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to   { transform: scale(1); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-img { animation: none; }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom,
          rgba(10,22,40,0.55) 0%,
          rgba(10,22,40,0.30) 35%,
          rgba(10,22,40,0.72) 80%,
          rgba(10,22,40,0.92) 100%),
        radial-gradient(ellipse at 50% 42%, rgba(10,22,40,0) 0%, rgba(10,22,40,0.45) 100%);
    }
    .hero-logo {
      width: clamp(150px, 22vw, 230px);
      height: auto; margin: 0 auto 1.25rem;
      display: block;
      filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
    }
    .hero-particles {
      position: absolute; inset: 0; pointer-events: none;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 900px; padding: 0 2rem;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold2);
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      padding: 0.5rem 1.4rem; border-radius: 2rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(8px);
    }
    .hero-title {
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 300; color: var(--white);
      line-height: 1.05; letter-spacing: -0.01em;
      margin-bottom: 0.25rem;
    }
    .hero-title strong {
      font-weight: 700; color: var(--gold);
      display: block;
    }
    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.35rem);
      color: rgba(255,255,255,0.75);
      font-weight: 300; letter-spacing: 0.06em;
      margin-bottom: 2.5rem;
    }
    .hero-stats {
      display: flex; gap: 2.5rem; justify-content: center;
      margin-bottom: 3rem; flex-wrap: wrap;
    }
    .hero-stat {
      text-align: center;
    }
    .hero-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--gold);
      display: block; line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.72rem; color: rgba(255,255,255,0.55);
      letter-spacing: 0.16em; text-transform: uppercase;
      display: block; margin-top: 0.3rem;
    }
    .hero-stat-divider {
      width: 1px; background: rgba(255,255,255,0.15);
      align-self: stretch; margin: 0.2rem 0;
    }
    .hero-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 1rem 2.5rem;
      border-radius: 3rem; font-weight: 600;
      font-size: 0.9rem; letter-spacing: 0.06em;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .btn-primary:hover {
      background: var(--gold2);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(201,168,76,0.35);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 1rem 2.5rem;
      border-radius: 3rem; font-weight: 500;
      font-size: 0.9rem; letter-spacing: 0.06em;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .btn-outline:hover {
      border-color: var(--gold);
      background: rgba(201,168,76,0.08);
      transform: translateY(-2px);
    }
    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center;
      gap: 0.5rem; z-index: 2;
      color: rgba(255,255,255,0.45); font-size: 0.68rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      animation: bounceDown 2.5s infinite;
    }
    .hero-scroll::after {
      content: ''; display: block;
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    }
    @keyframes bounceDown {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ── SECTION COMMONS ── */
    section { padding: var(--section-pad) 2rem; }
    .container { max-width: 1180px; margin: 0 auto; }
    .section-label {
      display: block; font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600; line-height: 1.15;
      color: var(--navy); margin-bottom: 1.25rem;
    }
    .section-title.light { color: var(--white); }
    .section-lead {
      font-size: 1.05rem; line-height: 1.75;
      color: var(--muted); max-width: 640px;
    }
    .section-lead.light { color: rgba(255,255,255,0.7); }
    .divider {
      width: 3rem; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 1.5rem 0;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--sand);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-images {
      position: relative; height: 540px;
    }
    .about-img-main {
      position: absolute; top: 0; left: 0;
      width: 75%; height: 80%;
      object-fit: cover; border-radius: 1rem;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    }
    .about-img-accent {
      position: absolute; bottom: 0; right: 0;
      width: 55%; height: 55%;
      object-fit: cover; border-radius: 1rem;
      box-shadow: 0 16px 48px rgba(0,0,0,0.15);
      border: 5px solid var(--white);
    }
    .about-badge {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: var(--navy);
      color: var(--white); border-radius: 50%;
      width: 110px; height: 110px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; z-index: 3;
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }
    .about-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 700; color: var(--gold);
      line-height: 1;
    }
    .about-badge .lbl {
      font-size: 0.6rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.65);
      line-height: 1.3; margin-top: 0.2rem;
    }
    .about-features {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.25rem; margin-top: 2.5rem;
    }
    .about-feature {
      background: var(--white);
      border-radius: var(--r);
      padding: 1.25rem;
      border-left: 3px solid var(--gold);
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .about-feature h4 {
      font-size: 1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.35rem;
    }
    .about-feature p {
      font-size: 0.82rem; color: var(--muted); line-height: 1.55;
    }

    /* ── SHOWCASE BAND (full-bleed image) ── */
    .showcase-band {
      position: relative; height: 70vh; min-height: 420px;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 2rem;
    }
    .showcase-band .sc-img {
      position: absolute; inset: 0;
      background-position: center; background-size: cover;
    }
    .showcase-band .sc-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(10,22,40,0.45), rgba(10,22,40,0.55));
    }
    .showcase-band .sc-content {
      position: relative; z-index: 2; max-width: 760px;
    }
    .showcase-band .sc-eyebrow {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.24em;
      text-transform: uppercase; color: var(--gold2); margin-bottom: 1rem;
    }
    .showcase-band h2 {
      font-size: clamp(1.9rem, 4.5vw, 3.4rem); font-weight: 600;
      color: var(--white); line-height: 1.18; margin-bottom: 1rem;
    }
    .showcase-band p {
      font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7;
    }
    /* ── DEVELOPER TRACK RECORD ── */
    #developer {
      background:
        linear-gradient(rgba(10,22,40,0.92), rgba(10,22,40,0.96)),
        url('https://orgwan-resort.com/wp-content/uploads/2026/06/orgwan-evening-street.jpg') center/cover no-repeat;
      position: relative; overflow: hidden;
    }
    #developer::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(26,107,138,0.25) 0%, transparent 60%);
    }
    .dev-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .dev-timeline {
      display: flex; flex-direction: column; gap: 0;
      margin-top: 2rem; position: relative;
    }
    .dev-timeline::before {
      content: '';
      position: absolute; left: 12px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
    }
    .dev-item {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding-bottom: 1.75rem; position: relative;
    }
    .dev-dot {
      width: 26px; height: 26px; flex-shrink: 0;
      background: var(--gold); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700; color: var(--navy);
      position: relative; z-index: 1;
    }
    .dev-item.current .dev-dot {
      background: var(--teal);
      box-shadow: 0 0 0 4px rgba(14,124,139,0.25);
      width: 30px; height: 30px; margin-top: -2px;
    }
    .dev-item.current .dev-dot::after {
      content: ''; position: absolute; inset: -5px;
      border-radius: 50%; border: 2px solid rgba(14,124,139,0.4);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0; transform: scale(1.3); }
    }
    .dev-info {}
    .dev-info h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600; color: var(--white);
      line-height: 1.2;
    }
    .dev-info span {
      font-size: 0.75rem; color: var(--gold); font-weight: 500;
      letter-spacing: 0.1em;
    }
    .dev-pillars {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 2rem;
    }
    .dev-pillar {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r); padding: 1.25rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .dev-pillar:hover {
      background: rgba(201,168,76,0.08);
      border-color: rgba(201,168,76,0.25);
    }
    .dev-pillar .icon {
      font-size: 1.5rem; margin-bottom: 0.6rem;
    }
    .dev-pillar h4 {
      font-size: 0.88rem; font-weight: 600;
      color: var(--white); margin-bottom: 0.3rem;
    }
    .dev-pillar p {
      font-size: 0.78rem; color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }

    /* ── LOCATION ── */
    #location {
      background: var(--white);
    }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
    }
    .location-distances {
      display: flex; flex-direction: column; gap: 0;
      margin-top: 2rem;
    }
    .loc-item {
      display: flex; align-items: center; gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .loc-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--sand); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .loc-text { flex: 1; }
    .loc-text strong {
      display: block; font-size: 0.9rem;
      color: var(--navy); font-weight: 600;
    }
    .loc-text span {
      font-size: 0.78rem; color: var(--muted);
    }
    .loc-time {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700; color: var(--gold);
    }
    .map-container {
      border-radius: 1.25rem; overflow: hidden;
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
      height: 440px; position: relative;
    }
    .map-container iframe {
      width: 100%; height: 100%; border: none;
    }
    .map-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, #1a3455 0%, #1a6b8a 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--white); text-align: center; gap: 1rem;
    }
    .map-placeholder .map-pin { font-size: 3rem; }
    .map-placeholder h3 {
      font-size: 1.5rem; color: var(--gold);
    }
    .map-placeholder p {
      font-size: 0.85rem; color: rgba(255,255,255,0.6);
    }

    /* ── UNITS / PRICING ── */
    #pricing {
      background: var(--sand);
    }
    .pricing-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 3rem;
      flex-wrap: wrap; gap: 1rem;
    }
    .pricing-toggle {
      display: flex; gap: 0; background: var(--white);
      border-radius: 2rem; padding: 4px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    .toggle-btn {
      padding: 0.55rem 1.25rem;
      border-radius: 2rem; border: none; cursor: pointer;
      font-size: 0.82rem; font-weight: 500;
      background: transparent; color: var(--muted);
      transition: 0.2s;
    }
    .toggle-btn.active {
      background: var(--navy); color: var(--white);
    }
    .units-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .unit-card {
      background: var(--white);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform 0.25s, box-shadow 0.25s;
      position: relative;
    }
    .unit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.13);
    }
    .unit-card.featured::before {
      content: 'Most Popular';
      position: absolute; top: 1rem; right: 1rem;
      background: var(--gold); color: var(--navy);
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.3rem 0.75rem; border-radius: 2rem;
    }
    .unit-header {
      background: linear-gradient(135deg, var(--navy), var(--mid));
      padding: 1.75rem 1.5rem;
      text-align: center;
    }
    .unit-type {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--white);
    }
    .unit-size {
      font-size: 0.78rem; color: rgba(255,255,255,0.55);
      letter-spacing: 0.1em; margin-top: 0.25rem;
    }
    .unit-body { padding: 1.75rem 1.5rem; }
    .unit-price-block { margin-bottom: 1.25rem; }
    .unit-price-label {
      font-size: 0.7rem; color: var(--muted);
      text-transform: uppercase; letter-spacing: 0.15em;
    }
    .unit-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700; color: var(--navy);
      line-height: 1;
    }
    .unit-price sup { font-size: 1rem; vertical-align: super; }
    .unit-price-cash {
      display: flex; align-items: center; gap: 0.5rem;
      margin-top: 0.5rem;
    }
    .cash-badge {
      background: rgba(14,124,139,0.1); color: var(--teal);
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.2rem 0.5rem; border-radius: 0.3rem;
    }
    .unit-cash-price {
      font-size: 1.1rem; font-weight: 600; color: var(--teal);
    }
    .unit-savings {
      font-size: 0.78rem; color: var(--muted);
      text-decoration: line-through;
    }
    .unit-divider {
      height: 1px; background: rgba(0,0,0,0.07); margin: 1rem 0;
    }
    .unit-specs {
      display: flex; flex-direction: column; gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .unit-spec {
      display: flex; justify-content: space-between;
      font-size: 0.82rem;
    }
    .unit-spec span:first-child { color: var(--muted); }
    .unit-spec span:last-child { color: var(--navy); font-weight: 500; }
    .unit-cta {
      display: block; width: 100%;
      padding: 0.85rem; border-radius: 0.6rem;
      background: var(--navy); color: var(--white);
      text-align: center; text-decoration: none;
      font-size: 0.85rem; font-weight: 600;
      letter-spacing: 0.06em;
      transition: background 0.2s, transform 0.15s;
    }
    .unit-cta:hover {
      background: var(--gold); color: var(--navy);
      transform: translateY(-1px);
    }

    /* ── PAYMENT PLANS ── */
    #payment {
      background:
        linear-gradient(160deg, rgba(10,22,40,0.93) 0%, rgba(13,45,74,0.95) 100%),
        url('https://orgwan-resort.com/wp-content/uploads/2026/06/orgwan-promenade.jpg') center/cover no-repeat;
      position: relative; overflow: hidden;
    }
    #payment::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
    }
    .payment-intro {
      text-align: center; max-width: 620px; margin: 0 auto 4rem;
    }
    .payment-intro .section-lead { margin: 0 auto; }
    .plans-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; max-width: 900px; margin: 0 auto;
    }
    .plan-card {
      border-radius: 1.5rem; padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .plan-card.cash {
      background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
      border: 1px solid rgba(201,168,76,0.3);
    }
    .plan-card.installment {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .plan-badge {
      display: inline-block;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 0.35rem 0.9rem; border-radius: 2rem;
      margin-bottom: 1.25rem;
    }
    .plan-badge.gold {
      background: var(--gold); color: var(--navy);
    }
    .plan-badge.blue {
      background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.75);
    }
    .plan-discount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.5rem; font-weight: 700;
      color: var(--gold); line-height: 1;
      margin-bottom: 0.25rem;
    }
    .plan-discount.blue { color: var(--white); }
    .plan-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 600; color: var(--white);
      margin-bottom: 0.75rem;
    }
    .plan-desc {
      font-size: 0.85rem; color: rgba(255,255,255,0.6);
      line-height: 1.65; margin-bottom: 2rem;
    }
    .plan-rows { display: flex; flex-direction: column; gap: 0; }
    .plan-row {
      display: flex; justify-content: space-between;
      align-items: center; padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.83rem;
    }
    .plan-row span:first-child { color: rgba(255,255,255,0.55); }
    .plan-row span:last-child { color: var(--white); font-weight: 600; }
    .plan-cta {
      display: block; width: 100%;
      padding: 1rem; border-radius: 0.75rem;
      text-align: center; text-decoration: none;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.05em;
      transition: transform 0.15s, box-shadow 0.2s;
      margin-top: 2rem;
    }
    .plan-cta.gold {
      background: var(--gold); color: var(--navy);
    }
    .plan-cta.gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,0.3);
    }
    .plan-cta.outline {
      background: transparent; color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25);
    }
    .plan-cta.outline:hover {
      background: rgba(255,255,255,0.07);
      transform: translateY(-2px);
    }

    /* ── CONSTRUCTION ── */
    #construction {
      background: var(--white);
    }
    .construction-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 2.5rem;
      flex-wrap: wrap; gap: 1rem;
    }
    .construction-badge {
      display: flex; align-items: center; gap: 0.5rem;
      background: rgba(14,124,139,0.1);
      border: 1px solid rgba(14,124,139,0.2);
      color: var(--teal); font-size: 0.78rem; font-weight: 500;
      padding: 0.45rem 1rem; border-radius: 2rem;
    }
    .construction-badge::before {
      content: ''; display: block;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--teal);
      animation: blink 1.5s infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; }
      50% { opacity: 0.2; }
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(3, 200px);
      gap: 0.75rem;
    }
    .gallery-item {
      border-radius: 0.75rem; overflow: hidden;
      cursor: pointer; position: relative;
    }
    .gallery-item:nth-child(1) {
      grid-column: span 2; grid-row: span 2;
    }
    .gallery-item:nth-child(6) {
      grid-column: span 2;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item .overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,0.6), transparent 50%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end;
      padding: 1rem; color: var(--white);
      font-size: 0.78rem;
    }
    .gallery-item:hover .overlay { opacity: 1; }
    .gallery-more {
      position: relative;
      background: var(--navy); border-radius: 0.75rem;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: var(--white); cursor: pointer;
      gap: 0.5rem;
      grid-column: span 2;
    }
    .gallery-more span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 700; color: var(--gold);
    }
    .gallery-more span:last-child {
      font-size: 0.78rem; color: rgba(255,255,255,0.55);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 9999;
      display: none; align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 85vh;
      object-fit: contain; border-radius: 0.5rem;
    }
    .lb-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: rgba(255,255,255,0.1); border: none;
      color: var(--white); width: 44px; height: 44px;
      border-radius: 50%; font-size: 1.3rem;
      cursor: pointer; display: flex;
      align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lb-close:hover { background: rgba(255,255,255,0.2); }
    .lb-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none;
      color: var(--white); width: 52px; height: 52px;
      border-radius: 50%; font-size: 1.4rem;
      cursor: pointer; transition: background 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    .lb-arrow:hover { background: rgba(255,255,255,0.2); }
    .lb-prev { left: 1.5rem; }
    .lb-next { right: 1.5rem; }
    .lb-counter {
      position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.5); font-size: 0.82rem;
    }

    /* ── WHY INVEST ── */
    #invest {
      background: var(--sand);
    }
    .invest-grid {
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 5rem; align-items: center;
    }
    .invest-img {
      border-radius: 1.25rem; overflow: hidden;
      height: 500px; position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,0.15);
    }
    .invest-img img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .invest-img-badge {
      position: absolute; bottom: 1.5rem; left: 1.5rem;
      background: var(--navy); color: var(--white);
      padding: 1rem 1.5rem; border-radius: 0.75rem;
      backdrop-filter: blur(8px);
    }
    .invest-img-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 700; color: var(--gold);
    }
    .invest-img-badge p {
      font-size: 0.75rem; color: rgba(255,255,255,0.6);
      line-height: 1.4;
    }
    .invest-points {
      display: flex; flex-direction: column; gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .invest-point {
      display: flex; gap: 1.25rem; align-items: flex-start;
    }
    .invest-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy), var(--mid));
      border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .invest-text h4 {
      font-size: 1rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.3rem;
    }
    .invest-text p {
      font-size: 0.83rem; color: var(--muted); line-height: 1.6;
    }

    /* ── CTA BANNER ── */
    #cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
      text-align: center; padding: 6rem 2rem;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://orgwan-resort.com/wp-content/uploads/2026/06/orgwan-pool-sunset.jpg') center/cover no-repeat;
      opacity: 0.15;
    }
    .cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
    .cta-eyebrow {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--gold2); margin-bottom: 1rem;
    }
    .cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 600; color: var(--white);
      line-height: 1.2; margin-bottom: 1.25rem;
    }
    .cta-sub {
      font-size: 1rem; color: rgba(255,255,255,0.7);
      margin-bottom: 2.5rem; line-height: 1.65;
    }
    .cta-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--white);
    }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start;
    }
    .contact-form-wrap {}
    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.5rem;
    }
    .form-sub {
      font-size: 0.85rem; color: var(--muted);
      margin-bottom: 2rem; line-height: 1.6;
    }
    .form-row { display: flex; gap: 1rem; }
    .form-group {
      flex: 1; margin-bottom: 1.25rem;
    }
    .form-group label {
      display: block; font-size: 0.78rem; font-weight: 500;
      color: var(--navy); margin-bottom: 0.4rem;
      letter-spacing: 0.06em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 0.85rem 1rem;
      border: 1.5px solid rgba(0,0,0,0.12);
      border-radius: 0.6rem; font-family: 'Inter', sans-serif;
      font-size: 0.88rem; color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
      background: var(--white); outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      width: 100%; padding: 1rem;
      background: var(--gold); color: var(--navy);
      border: none; border-radius: 0.6rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem; font-weight: 600;
      letter-spacing: 0.06em; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .form-submit:hover {
      background: var(--gold2); transform: translateY(-1px);
    }
    .contact-info { padding-top: 1rem; }
    .contact-info-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600;
      color: var(--navy); margin-bottom: 1.5rem;
    }
    .contact-items {
      display: flex; flex-direction: column; gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start;
    }
    .contact-item-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--sand); border-radius: 0.6rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .contact-item-text strong {
      display: block; font-size: 0.82rem; font-weight: 600;
      color: var(--navy); margin-bottom: 0.15rem;
    }
    .contact-item-text span {
      font-size: 0.82rem; color: var(--muted);
    }
    .contact-item-text a {
      color: var(--gold); text-decoration: none;
    }
    .contact-item-text a:hover { text-decoration: underline; }
    .developer-note {
      background: var(--sand); border-radius: var(--r);
      padding: 1.25rem; margin-top: 1.5rem;
      border-left: 3px solid var(--gold);
    }
    .developer-note p {
      font-size: 0.82rem; color: var(--muted); line-height: 1.6;
    }
    .developer-note strong { color: var(--navy); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 3.5rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1180px; margin: 0 auto;
    }
    .footer-top {
      display: flex; justify-content: space-between;
      align-items: flex-start;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-wrap: wrap; gap: 2rem;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700; color: var(--gold);
    }
    .footer-logo span {
      display: block; font-size: 0.65rem;
      color: rgba(255,255,255,0.4); letter-spacing: 0.2em;
      text-transform: uppercase; font-family: 'Inter', sans-serif;
      font-weight: 400; margin-top: 0.15rem;
    }
    .footer-links {
      display: flex; gap: 3rem; flex-wrap: wrap;
    }
    .footer-col h5 {
      font-size: 0.72rem; font-weight: 600;
      color: rgba(255,255,255,0.4); letter-spacing: 0.18em;
      text-transform: uppercase; margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul a {
      font-size: 0.85rem; color: rgba(255,255,255,0.6);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; padding-top: 2rem;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p {
      font-size: 0.78rem; color: rgba(255,255,255,0.3);
    }
    .footer-disclaimer {
      font-size: 0.72rem; color: rgba(255,255,255,0.25);
      line-height: 1.6; margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ── FLOATING WHATSAPP ── */
    .whatsapp-fab {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
      width: 58px; height: 58px;
      background: #25D366; color: var(--white);
      border-radius: 50%; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: fabPulse 3s infinite;
    }
    .whatsapp-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    @keyframes fabPulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
    }

    /* ── COOKIE CONSENT ── */
    .cookie-banner {
      position: fixed; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 600;
      display: none; align-items: center; gap: 1.5rem;
      background: rgba(10,22,40,0.97); backdrop-filter: blur(12px);
      border: 1px solid rgba(201,168,76,0.25); border-radius: 1rem;
      padding: 1.25rem 1.5rem; box-shadow: 0 12px 48px rgba(0,0,0,0.4);
      max-width: 760px; margin: 0 auto;
    }
    .cookie-banner.show { display: flex; animation: cookieUp 0.4s ease-out; }
    @keyframes cookieUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: none; }
    }
    .cookie-text strong {
      display: block; font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold); margin-bottom: 0.25rem;
    }
    .cookie-text p { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
    .cookie-text a { color: var(--gold2); text-decoration: underline; }
    .cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
    .cookie-btn {
      padding: 0.6rem 1.1rem; border-radius: 2rem;
      font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
      cursor: pointer; border: none; white-space: nowrap;
      transition: transform 0.15s, background 0.2s;
    }
    .cookie-btn.accept { background: var(--gold); color: var(--navy); }
    .cookie-btn.accept:hover { background: var(--gold2); transform: translateY(-1px); }
    .cookie-btn.reject {
      background: transparent; color: rgba(255,255,255,0.75);
      border: 1px solid rgba(255,255,255,0.25);
    }
    .cookie-btn.reject:hover { background: rgba(255,255,255,0.08); }
    @media (max-width: 680px) {
      .cookie-banner {
        flex-direction: column; align-items: stretch;
        left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.1rem 1.2rem;
      }
      .cookie-actions { width: 100%; }
      .cookie-btn { flex: 1; }
    }

    /* ── ABOUT HURGHADA ── */
    #hurghada { background: var(--white); }
    .hurghada-intro { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
    .hurghada-intro .section-lead { margin: 0 auto; }
    .hurghada-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .hurghada-card {
      background: var(--sand); border-radius: var(--r); padding: 1.75rem;
      border-top: 3px solid var(--gold); transition: transform 0.25s, box-shadow 0.25s;
    }
    .hurghada-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
    .hurghada-card .hg-icon {
      width: 48px; height: 48px; border-radius: 0.6rem;
      background: linear-gradient(135deg, var(--navy), var(--mid));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }
    .hurghada-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
    .hurghada-card p { font-size: 0.85rem; line-height: 1.6; color: var(--muted); }
    .hurghada-banner {
      margin-top: 3rem; border-radius: 1.25rem; overflow: hidden;
      position: relative; height: 280px;
    }
    .hurghada-banner img { width: 100%; height: 100%; object-fit: cover; }
    .hurghada-banner .hg-quote {
      position: absolute; inset: 0; display: flex; align-items: center;
      padding: 0 2.5rem; background: linear-gradient(90deg, rgba(10,22,40,0.8), rgba(10,22,40,0.1));
    }
    .hurghada-banner .hg-quote p {
      font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 2.5vw, 2rem);
      color: var(--white); font-weight: 600; max-width: 520px; line-height: 1.3;
    }

    /* ── BUYING GUIDE ── */
    #guide {
      background: linear-gradient(160deg, var(--navy) 0%, #0d2d4a 100%);
      position: relative; overflow: hidden;
    }
    .guide-grid {
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
    }
    .guide-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
    .guide-list li {
      display: flex; gap: 0.85rem; align-items: flex-start;
      font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.5;
    }
    .guide-list li::before {
      content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .guide-card {
      background: var(--white); border-radius: 1.25rem; padding: 2.25rem;
      box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    }
    .guide-card h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
      color: var(--navy); margin-bottom: 0.35rem;
    }
    .guide-card .gc-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.55; }
    .guide-card .form-group { margin-bottom: 1rem; }
    .guide-cover-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(201,168,76,0.15); color: var(--gold2);
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.4rem 0.9rem; border-radius: 2rem; margin-bottom: 1.25rem;
    }

    /* ── FAQ ── */
    #faq { background: var(--sand); }
    .faq-wrap { max-width: 820px; margin: 2.5rem auto 0; }
    .faq-item {
      background: var(--white); border-radius: var(--r); margin-bottom: 0.9rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05); overflow: hidden;
    }
    .faq-q {
      width: 100%; text-align: left; background: none; border: none; cursor: pointer;
      padding: 1.25rem 1.5rem; font-family: 'Inter', sans-serif;
      font-size: 1rem; font-weight: 600; color: var(--navy);
      display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    }
    .faq-q .faq-plus {
      flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
      background: var(--sand); color: var(--gold); font-size: 1.2rem; line-height: 1;
      display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.2s;
    }
    .faq-item.open .faq-q .faq-plus { transform: rotate(45deg); background: var(--gold); color: var(--white); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a p { padding: 0 1.5rem 1.4rem; font-size: 0.9rem; line-height: 1.65; color: var(--muted); }

    @media (max-width: 900px) {
      .hurghada-grid { grid-template-columns: 1fr; }
      .guide-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    /* ── PRIVACY MODAL ── */
    .privacy-modal {
      position: fixed; inset: 0; z-index: 1100; display: none;
      align-items: center; justify-content: center; padding: 1.5rem;
      background: rgba(10,22,40,0.75); backdrop-filter: blur(6px);
    }
    .privacy-modal.open { display: flex; }
    .privacy-box {
      background: var(--white); color: var(--text);
      max-width: 680px; width: 100%; max-height: 82vh; overflow-y: auto;
      border-radius: 1rem; padding: 2.5rem; position: relative;
      box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    }
    .privacy-box h2 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.9rem;
      color: var(--navy); margin-bottom: 1rem;
    }
    .privacy-box h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 1.25rem 0 0.4rem; }
    .privacy-box p { font-size: 0.85rem; line-height: 1.65; color: var(--muted); }
    .privacy-close {
      position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
      border-radius: 50%; border: none; background: var(--sand); color: var(--navy);
      font-size: 1.1rem; cursor: pointer; transition: background 0.2s;
    }
    .privacy-close:hover { background: var(--gold); }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1; transform: none;
    }
    .reveal-left {
      opacity: 0; transform: translateX(-30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right {
      opacity: 0; transform: translateX(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .units-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
      }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
      .gallery-item:nth-child(6) { grid-column: span 1; }
      .gallery-more { grid-column: span 1; min-height: 150px; }
    }
    @media (max-width: 900px) {
      .about-grid, .dev-grid, .location-grid,
      .invest-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-images { height: 380px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column; gap: 1.25rem;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,22,40,0.97); padding: 1.5rem 2rem;
        backdrop-filter: blur(12px);
      }
      .hamburger { display: flex; }
      .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
    }
    @media (max-width: 600px) {
      .units-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.25rem; }
      .hero-stat-divider { display: none; }
      .form-row { flex-direction: column; gap: 0; }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .gallery-item:nth-child(1) { grid-column: span 2; }
    }
/* ── SUBPAGE / UNIT PAGES ── */
.subpage-hero{ position:relative; min-height:58vh; display:flex; align-items:flex-end; padding:8rem 2rem 3.5rem; overflow:hidden; }
.subpage-hero .sp-bg{ position:absolute; inset:0; background:#0a1628 center/cover no-repeat; }
.subpage-hero .sp-overlay{ position:absolute; inset:0; background:linear-gradient(to bottom, rgba(10,22,40,0.55), rgba(10,22,40,0.88)); }
.subpage-hero .sp-content{ position:relative; z-index:2; max-width:1100px; margin:0 auto; width:100%; }
.subpage-hero .breadcrumb{ font-size:0.78rem; letter-spacing:0.06em; color:rgba(255,255,255,0.6); margin-bottom:1rem; }
.subpage-hero .breadcrumb a{ color:var(--gold2); text-decoration:none; }
.subpage-hero .breadcrumb a:hover{ text-decoration:underline; }
.subpage-hero h1{ font-size:clamp(2.3rem,5vw,3.8rem); font-weight:300; color:#fff; line-height:1.06; }
.subpage-hero h1 strong{ display:block; font-weight:700; color:var(--gold); }
.subpage-hero .sp-sub{ font-size:1.08rem; color:rgba(255,255,255,0.82); margin-top:1rem; max-width:580px; line-height:1.6; }
.subpage-hero .sp-meta{ display:flex; gap:2.5rem; margin-top:2rem; flex-wrap:wrap; }
.subpage-hero .sp-meta .v{ font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:700; color:var(--gold); display:block; line-height:1; }
.subpage-hero .sp-meta .k{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.14em; color:rgba(255,255,255,0.55); display:block; margin-top:0.3rem; }

.unit-section{ padding:var(--section-pad) 2rem; }
.unit-section.sand{ background:var(--sand); }
.unit-wrap{ max-width:1100px; margin:0 auto; }
.unit-two{ display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.unit-prose p{ font-size:1rem; line-height:1.8; color:var(--muted); margin-bottom:1.1rem; }
.floorplan{ border:1px solid rgba(0,0,0,0.1); border-radius:1rem; overflow:hidden; background:#fff; box-shadow:0 8px 32px rgba(0,0,0,0.08); }
.floorplan img{ width:100%; display:block; }
.floorplan .fp-placeholder{ aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.6rem; color:var(--muted); text-align:center; padding:2rem; background:linear-gradient(135deg,#f5efe6,#ece3d4); }
.floorplan .fp-placeholder .fp-ico{ font-size:2.2rem; }
.floorplan .fp-caption{ padding:0.9rem 1.25rem; font-size:0.8rem; color:var(--muted); border-top:1px solid rgba(0,0,0,0.08); }

.pay-table{ width:100%; border-collapse:collapse; margin-top:1.5rem; background:#fff; border-radius:0.75rem; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,0.06); }
.pay-table th, .pay-table td{ padding:0.95rem 1.25rem; text-align:left; font-size:0.9rem; border-bottom:1px solid rgba(0,0,0,0.07); }
.pay-table th{ background:var(--navy); color:#fff; font-weight:600; font-size:0.76rem; text-transform:uppercase; letter-spacing:0.08em; }
.pay-table td:last-child, .pay-table th:last-child{ text-align:right; font-weight:600; color:var(--navy); }
.pay-table .row-highlight td{ background:rgba(201,168,76,0.12); }
.pay-note{ font-size:0.78rem; color:var(--muted); margin-top:0.85rem; line-height:1.5; }

.unit-spec-list{ list-style:none; margin-top:1.5rem; }
.unit-spec-list li{ display:flex; justify-content:space-between; padding:0.8rem 0; border-bottom:1px solid rgba(0,0,0,0.08); font-size:0.92rem; }
.unit-spec-list li span:first-child{ color:var(--muted); }
.unit-spec-list li span:last-child{ color:var(--navy); font-weight:600; }

.unit-cta-band{ background:linear-gradient(135deg,var(--navy),var(--teal)); text-align:center; padding:4.5rem 2rem; }
.unit-cta-band h2{ font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,4vw,2.8rem); color:#fff; margin-bottom:1rem; }
.unit-cta-band p{ color:rgba(255,255,255,0.8); margin-bottom:2rem; }
.unit-cards-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-top:2.5rem; }
.type-card{ display:block; text-decoration:none; background:#fff; border-radius:1rem; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,0.07); transition:transform .25s,box-shadow .25s; }
.type-card:hover{ transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.13); }
.type-card .tc-head{ background:linear-gradient(135deg,var(--navy),var(--mid)); padding:1.5rem; text-align:center; }
.type-card .tc-head .t{ font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:700; color:#fff; }
.type-card .tc-head .s{ font-size:0.76rem; color:rgba(255,255,255,0.55); letter-spacing:0.08em; margin-top:0.2rem; }
.type-card .tc-body{ padding:1.4rem; text-align:center; }
.type-card .tc-from{ font-size:0.7rem; text-transform:uppercase; letter-spacing:0.12em; color:var(--muted); }
.type-card .tc-price{ font-family:'Cormorant Garamond',serif; font-size:1.7rem; font-weight:700; color:var(--navy); }
.type-card .tc-link{ display:inline-block; margin-top:0.8rem; font-size:0.8rem; font-weight:600; color:var(--gold); }
@media (max-width:900px){ .unit-two{ grid-template-columns:1fr; gap:2.5rem; } .unit-cards-4{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .unit-cards-4{ grid-template-columns:1fr; } }
/* ── PRICING TOGGLES (plan + currency) ── */
.pricing-toggles{ display:flex; flex-direction:column; gap:0.6rem; align-items:flex-end; }
.cur-toggle .toggle-btn{ min-width:64px; }
.pricing-note{ font-size:0.72rem; color:var(--muted); margin-top:1rem; text-align:right; }
@media (max-width:600px){ .pricing-toggles{ align-items:stretch; } .pricing-note{ text-align:left; } }
/* ── LANGUAGE SWITCHER ── */
.lang-switch{ position:relative; margin-left:0.5rem; }
.lang-btn{ display:flex; align-items:center; gap:0.45rem; background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.22); color:#fff; padding:0.45rem 0.75rem; border-radius:2rem;
  cursor:pointer; font-size:0.8rem; font-family:inherit; line-height:1; transition:background 0.2s; }
.lang-btn:hover{ background:rgba(255,255,255,0.18); }
.lang-btn .flag{ font-size:1rem; }
.lang-btn .caret{ font-size:0.6rem; opacity:0.7; }
.lang-menu{ position:absolute; top:calc(100% + 8px); right:0; background:rgba(10,22,40,0.98);
  border:1px solid rgba(255,255,255,0.12); border-radius:0.7rem; padding:0.4rem; min-width:175px;
  display:none; flex-direction:column; max-height:65vh; overflow:auto; z-index:1200;
  box-shadow:0 16px 48px rgba(0,0,0,0.45); }
.lang-menu.open{ display:flex; }
.lang-opt{ display:flex; align-items:center; gap:0.65rem; padding:0.55rem 0.7rem; border-radius:0.45rem;
  color:rgba(255,255,255,0.85); font-size:0.86rem; cursor:pointer; background:none; border:none;
  text-align:left; width:100%; font-family:inherit; }
.lang-opt:hover{ background:rgba(201,168,76,0.14); color:#fff; }
.lang-opt.active{ background:rgba(201,168,76,0.22); color:#fff; }
.lang-opt .flag{ font-size:1.1rem; }

/* ── RTL (Arabic) ── */
[dir="rtl"] .container,
[dir="rtl"] .unit-wrap,
[dir="rtl"] .faq-wrap,
[dir="rtl"] .section-lead,
[dir="rtl"] .hero-content,
[dir="rtl"] .sp-content,
[dir="rtl"] .unit-prose,
[dir="rtl"] .privacy-box,
[dir="rtl"] .cookie-text{ text-align:right; }
[dir="rtl"] .faq-q{ text-align:right; }
[dir="rtl"] .unit-spec-list li,
[dir="rtl"] .loc-item,
[dir="rtl"] .plan-row,
[dir="rtl"] .unit-spec{ flex-direction:row-reverse; }
[dir="rtl"] .guide-list li{ flex-direction:row-reverse; }
[dir="rtl"] .lang-menu{ right:auto; left:0; }
[dir="rtl"] .pay-table th, [dir="rtl"] .pay-table td{ text-align:right; }
[dir="rtl"] .pay-table td:last-child, [dir="rtl"] .pay-table th:last-child{ text-align:left; }
@media (max-width:900px){ .lang-switch{ margin:0.5rem 0 0; } }