
    :root {
      color-scheme: dark;
      --black:      #050505;
      --dark:       #0a0a0a;
      --dark2:      #111111;
      --gold:       #b87333;
      --gold-light: #d4976a;
      --gold-dim:   #8b5e34;
      --white:      #ffffff;
      --off-white:  #f5f0e8;
      --muted:      #888888;
      --card-bg:    rgba(255,255,255,0.03);
      --card-border:rgba(184,115,51,0.18);
      --radius:     16px;
      --t:          0.35s cubic-bezier(0.4,0,0.2,1);

      /* ===== RESIZABLE BUSINESS LOGOS =====
         Adjust these values to resize each business logo individually.
         File: css/index.css  (this :root block)
         See the .biz-logo-* rules below for how they are applied. */
      --biz-logo-fashion-size: 72px;
      --biz-logo-arts-size:    72px;
      --biz-logo-land-size:    72px;
    }

    /* Prevent dark-mode extensions from filtering logo/nav images */
    .nav-logo img,
    .nav-brand img,
    .footer-brand img,
    .contact-logo,
    img[src*="logo"] {
      filter: none !important;
      -webkit-filter: none !important;
      mix-blend-mode: normal !important;
      isolation: isolate;
    }

    /* ===== FORCE INTENDED COLORS ON STATS / SUMMARY (OVERRIDE AUTO DARK MODE) =====
       These elements were reported as washed-out on some browsers / OS dark-mode
       settings. We pin explicit colors and opt out of forced-color adjustments
       so the numbers and labels stay clearly visible regardless of any
       prefers-color-scheme or browser auto-darkening. */
    #stats,
    #stats .stats-row,
    #stats .stat-cell,
    #stats .stat-num,
    #stats .stat-lbl,
    #available .avail-summary,
    #available .avail-sum-item,
    #available .avail-sum-item .num,
    #available .avail-sum-item .lbl {
      forced-color-adjust: none !important;
      color-scheme: dark !important;
    }
    #stats .stat-lbl {
      color: #d4d4d4 !important;
      -webkit-text-fill-color: #d4d4d4 !important;
      opacity: 1 !important;
    }
    #available .avail-sum-item .lbl {
      color: #d4d4d4 !important;
      -webkit-text-fill-color: #d4d4d4 !important;
      opacity: 1 !important;
    }
    #stats .stat-num,
    #available .avail-sum-item .num {
      background: linear-gradient(135deg, #b87333, #d4976a) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      color: #d4976a;
      opacity: 1 !important;
    }
    @media (prefers-color-scheme: light) {
      #stats,
      #stats .stat-cell { background-color: #070707 !important; }
      #available,
      #available .avail-table-wrap { background-color: #070707 !important; }
      #stats .stat-lbl,
      #available .avail-sum-item .lbl {
        color: #d4d4d4 !important;
        -webkit-text-fill-color: #d4d4d4 !important;
      }
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; flex-shrink: 0; object-fit: cover; object-position: center; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ===== NAVBAR ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 6%;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(5,5,5,0.96);
      border-bottom: 1px solid rgba(184,115,51,0.1);
      transition: height var(--t), background var(--t);
      will-change: height;
    }
    nav.scrolled { height: 64px; background: rgba(5,5,5,0.97); }

    /* ===== OFFICE CARD EXTRAS ===== */
    .avail-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: .58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
    }
    .avail-badge.available { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
    .avail-badge.low       { background: rgba(234,179,8,0.12);  color: #facc15; border: 1px solid rgba(234,179,8,0.25); }
    .avail-badge.full      { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
    .avail-badge::before   { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

    .office-card-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
    .btn-detail {
      font-size: .62rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--gold); border-bottom: 1px solid rgba(184,115,51,0.35); padding-bottom: 2px;
      transition: color var(--t); cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
    }
    .btn-detail:hover { color: var(--gold-light); }
    .btn-book-visit {
      font-size: .62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--black); background: linear-gradient(135deg,var(--gold-dim),var(--gold));
      border: none; padding: 6px 14px; border-radius: 2px; cursor: pointer; transition: var(--t);
    }
    .btn-book-visit:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(184,115,51,0.35); }

    /* ===== AVAILABLE FLOORS SECTION ===== */
    #available {
      background: #070707;
      border-top: 1px solid rgba(184,115,51,0.08);
      border-bottom: 1px solid rgba(184,115,51,0.08);
    }
    .avail-header { text-align: center; margin-bottom: 52px; }
    .avail-header .gold-line { margin: 18px auto 0; }
    .avail-table-wrap {
      background: rgba(10,8,4,0.6);
      border: 1px solid rgba(184,115,51,0.14);
      border-radius: 4px;
      overflow: hidden;
      max-width: 1280px;
      margin: 0 auto;
    }
    .avail-tb-head {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 2.4fr 0.9fr;
      gap: 0;
      background: linear-gradient(135deg, rgba(184,115,51,0.15), rgba(139,94,52,0.1));
      border-bottom: 1px solid rgba(184,115,51,0.22);
      padding: 18px 28px;
    }
    .avail-tb-head > div {
      font-size: .6rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--gold);
    }
    .avail-row {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 2.4fr 0.9fr;
      gap: 0;
      align-items: center;
      padding: 22px 28px;
      border-bottom: 1px solid rgba(184,115,51,0.08);
      transition: var(--t);
      cursor: pointer;
    }
    .avail-row:last-child { border-bottom: none; }
    .avail-row[data-avail-row]:hover { background: rgba(184,115,51,0.06); }
    .avail-row .fl-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--off-white);
    }
    .avail-row .fl-name small {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }
    .avail-row .fl-size {
      font-size: .85rem;
      color: var(--gold-light);
      font-weight: 600;
      direction: ltr;
      unicode-bidi: isolate;
    }
    .avail-row .fl-units {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .unit-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .65rem;
      font-weight: 600;
      direction: ltr;
      unicode-bidi: isolate;
      letter-spacing: 0.5px;
      padding: 6px 12px;
      border-radius: 2px;
      border: 1px solid rgba(184,115,51,0.15);
    }
    .unit-chip.on {
      background: rgba(34,197,94,0.1);
      border-color: rgba(34,197,94,0.3);
      color: #4ade80;
    }
    .unit-chip.on::before { content: '✓'; font-weight: 700; }
    .unit-chip.off {
      background: #2a2a2a;
      border-color: rgba(120,120,120,0.25);
      color: #888;
      text-decoration: none !important;
      pointer-events: none;
    }
    .unit-chip.off::before { content: '✗'; font-weight: 700; color: #888; }
    .unit-chip.exception {
      background: rgba(34,197,94,0.1);
      border-color: rgba(34,197,94,0.3);
      color: #4ade80;
      font-weight: 700;
    }
    .unit-chip.exception::before { content: '✓'; font-weight: 700; }
    .avail-row .fl-action {
      display: flex;
      justify-content: flex-end;
    }
    .btn-book-row {
      font-size: .62rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--black);
      background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
      border: none; padding: 10px 22px; border-radius: 2px;
      cursor: pointer; transition: var(--t);
      white-space: nowrap;
    }
    .btn-book-row:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(184,115,51,0.35);
    }
    .avail-summary {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .avail-sum-item {
      text-align: center;
      padding: 14px 22px;
      background: rgba(184,115,51,0.04);
      border: 1px solid rgba(184,115,51,0.12);
      border-radius: 3px;
      min-width: 150px;
    }
    .avail-sum-item .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .avail-sum-item .lbl {
      font-size: .58rem; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--muted); margin-top: 4px;
    }
    @media (max-width: 1100px) {
      .avail-tb-head,
      .avail-row {
        grid-template-columns: 1.4fr 0.8fr 2.4fr 1fr;
      }
    }
    @media (max-width: 900px) {
      .avail-tb-head { display: none; }
      .avail-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 20px;
      }
      .avail-row .fl-action { justify-content: flex-start; }
      .avail-row .fl-units { flex-wrap: wrap; }
    }

    /* ===== BOOK VISIT MODAL ===== */
    .bv-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 5000;
      background: rgba(0,0,0,0.85); align-items: center; justify-content: center; padding: 20px;
    }
    .bv-modal-overlay.open { display: flex; }
    .bv-modal {
      background: #0c0a06; border: 1px solid rgba(184,115,51,0.25); border-radius: 4px;
      width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
      position: relative; animation: bvIn .35s ease;
    }
    @keyframes bvIn { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }
    .bv-head {
      background: linear-gradient(135deg,var(--gold-dim),var(--gold));
      padding: 22px 28px; display: flex; align-items: center; justify-content: space-between;
    }
    .bv-head h3 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:700; color:var(--black); }
    .bv-head p { font-size:.68rem; color:rgba(5,5,5,.65); margin-top:2px; }
    .bv-close { background:none; border:none; color:rgba(5,5,5,.6); font-size:1.3rem; cursor:pointer; }
    .bv-body { padding: 28px; }
    .bv-form-row { display: grid; grid-template-columns:1fr 1fr; gap:14px; }
    .bv-group { margin-bottom: 16px; }
    .bv-label { display:block; font-size:.6rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
    .bv-input {
      width:100%; background:rgba(255,255,255,0.04); border:1px solid rgba(184,115,51,0.18);
      color:var(--off-white); font-family:'Montserrat',sans-serif; font-size:.82rem;
      padding:10px 14px; border-radius:2px; outline:none; transition:border-color var(--t);
    }
    .bv-input:focus { border-color: rgba(184,115,51,0.6); }
    .bv-input option { background:#1a1200; }
    .bv-input::placeholder { color:rgba(136,136,136,0.4); }
    .bv-success { display:none; padding:28px; text-align:center; }
    .bv-success .s-icon { font-size:2.5rem; margin-bottom:14px; }
    .bv-success h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--gold-light); margin-bottom:8px; }
    .bv-success p  { font-size:.82rem; color:var(--muted); line-height:1.7; }

    /* ===== RESPONSIVE PATCHES ===== */
    @media (max-width: 576px) {
      .bv-form-row { grid-template-columns: 1fr; }
      .avail-strip { gap: 6px; }
      .avail-chip { min-width: 80px; padding: 10px 10px; }
      .office-card-btns { gap: 6px; }
    }

    .nav-logo { display: flex; align-items: center; gap: 12px; forced-color-adjust: none !important; color-scheme: dark !important; }
    .nav-logo, .nav-logo * { forced-color-adjust: none !important; color-scheme: dark !important; }
    .nav-logo img {
      height: 48px; width: auto;
      filter: drop-shadow(0 0 8px rgba(184,115,51,0.4));
      transition: var(--t);
      mix-blend-mode: normal !important; opacity: 1 !important;
    }
    nav.scrolled .nav-logo img { height: 48px; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-text .name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 700;
      color: var(--gold-light); letter-spacing: 2px;
    }
    .nav-logo-text .tagline {
      font-size: 0.65rem; font-weight: 400;
      color: var(--muted); letter-spacing: 3px; text-transform: uppercase;
    }

    .nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; flex-wrap: nowrap; min-width: 0; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--muted);
      transition: color var(--t); position: relative; padding-bottom: 4px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width var(--t);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: transparent !important;
      border: 1px solid var(--gold) !important;
      color: var(--gold) !important;
      padding: 9px 22px; border-radius: 2px;
      transition: background var(--t), color var(--t) !important;
    }
    .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; z-index: 1001;
    }
    .hamburger span {
      width: 26px; height: 1.5px; background: var(--gold); border-radius: 2px;
      transition: var(--t);
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      position: relative; overflow: hidden;
      padding-top: 80px; /* nav only */
      background: radial-gradient(ellipse at 50% 60%, #1a1008 0%, #0a0806 40%, #050505 100%);
    }
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(184,115,51,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,115,51,0.03) 1px, transparent 1px);
      background-size: 70px 70px;
      pointer-events: none;
    }

    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(184,115,51,0.08) 0%, transparent 65%);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      pointer-events: none;
      animation: glow-pulse 5s ease-in-out infinite;
    }
    @keyframes glow-pulse {
      0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
      50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
    }

    .particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .particle {
      position: absolute; border-radius: 50%;
      background: var(--gold); opacity: 0;
      animation: float-p linear infinite;
    }
    @keyframes float-p {
      0%   { transform: translateY(100vh); opacity: 0; }
      10%  { opacity: 0.25; }
      90%  { opacity: 0.08; }
      100% { transform: translateY(-80px); opacity: 0; }
    }

    .hero-content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      padding: 0 20px;
      animation: hero-in 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
      opacity: 0; transform: translateY(30px);
    }
    @keyframes hero-in {
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-logo {
      width: 240px;
      height: 240px;
      margin-bottom: 32px;
      filter:
        drop-shadow(0 0 30px rgba(184,115,51,0.5))
        drop-shadow(0 0 60px rgba(184,115,51,0.2));
      animation: logo-float 6s ease-in-out infinite;
    }
    @keyframes logo-float {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-12px); }
    }

    .hero-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700; letter-spacing: 8px; text-transform: uppercase;
      color: var(--off-white); margin-bottom: 8px;
    }
    .hero-brand .gold-word {
      color: var(--gold) !important;
      -webkit-text-fill-color: var(--gold) !important;
    }

    .hero-divider {
      display: flex; align-items: center; gap: 16px; margin: 18px 0 20px;
    }
    .hero-divider::before, .hero-divider::after {
      content: ''; flex: 1; height: 1px; width: 80px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }
    .hero-divider::after { background: linear-gradient(270deg, transparent, var(--gold)); }
    .hero-divider-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 10px var(--gold);
    }

    .hero-subtitle {
      font-size: clamp(0.78rem, 1.5vw, 0.95rem);
      letter-spacing: 5px; text-transform: uppercase;
      color: var(--muted); margin-bottom: 48px;
    }

    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
      color: var(--black);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 15px 40px; border: none; border-radius: 2px;
      cursor: pointer; transition: transform var(--t), box-shadow var(--t);
    }
    .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(184,115,51,0.4); }

    .btn-ghost {
      background: transparent; color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 14px 40px;
      border: 1px solid rgba(184,115,51,0.5); border-radius: 2px;
      cursor: pointer; transition: var(--t);
    }
    .btn-ghost:hover { background: rgba(184,115,51,0.08); border-color: var(--gold); }

    .scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--muted); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
      animation: bounce 2.5s ease-in-out infinite; z-index: 2;
    }
    .scroll-mouse {
      width: 22px; height: 34px;
      border: 1px solid rgba(184,115,51,0.4); border-radius: 12px;
      display: flex; justify-content: center; padding-top: 6px;
    }
    .scroll-mouse::before {
      content: ''; width: 3px; height: 7px; border-radius: 2px;
      background: var(--gold); animation: scroll-dot 2s ease-in-out infinite;
    }
    @keyframes scroll-dot {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50%       { transform: translateY(8px); opacity: 0.3; }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ===== SECTION COMMONS ===== */
    section { padding: 110px 6%; }

    .section-eyebrow {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700; color: var(--off-white);
      line-height: 1.15; margin-bottom: 18px;
    }
    .section-desc {
      font-size: 0.9rem; color: var(--muted); max-width: 560px; line-height: 1.9;
    }
    .gold-line {
      width: 50px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 18px 0 40px; border-radius: 2px;
    }

    .fade-in {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ===== STATS ===== */
    #stats {
      padding: 60px 6%;
      background: #070707;
      border-top: 1px solid rgba(184,115,51,0.08);
      border-bottom: 1px solid rgba(184,115,51,0.08);
    }
    .stats-row {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: rgba(184,115,51,0.08);
    }
    .stat-cell {
      background: var(--dark); text-align: center; padding: 40px 20px;
      transition: background var(--t);
    }
    .stat-cell:hover { background: #0f0c05; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-lbl {
      font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--muted); margin-top: 8px;
    }

    /* ===== ABOUT ===== */
    #about { background: var(--black); }
    .about-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      width: 100%;
      height: auto;
      max-height: 720px;
      object-fit: contain;
      object-position: center;
      border-radius: 4px;
      filter: brightness(0.9);
      display: block;
    }
    .about-img-wrap::before {
      content: ''; position: absolute;
      top: -16px; left: -16px; right: 16px; bottom: 16px;
      border: 1px solid rgba(184,115,51,0.2); border-radius: 4px;
      pointer-events: none; z-index: -1;
    }
    .about-img-badge {
      position: absolute; bottom: -20px; right: -20px;
      background: linear-gradient(135deg, var(--gold-dim), var(--gold));
      color: var(--black); padding: 20px 28px; border-radius: 4px; text-align: center;
    }
    .about-img-badge .num {
      font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700;
    }
    .about-img-badge .lbl {
      font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    }

    /* ===== OFFICES ===== */
    #offices { background: #070707; }
    .offices-header { text-align: center; margin-bottom: 64px; }
    .offices-header .gold-line { margin: 18px auto 0; }

    .offices-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; background: rgba(184,115,51,0.08);
    }
    .office-card {
      background: var(--dark); overflow: hidden;
      transition: var(--t); position: relative;
    }
    .office-card:hover { background: #0c0b06; }
    .office-card > div { overflow: hidden; }
    .office-card img {
      width: 100%; height: 220px; object-fit: cover;
      filter: brightness(0.7);
      transition: filter 0.5s ease, transform 0.5s ease;
    }
    .office-card:hover img { filter: brightness(0.9); transform: scale(1.04); }
    .office-card-body { padding: 28px 24px 32px; }
    .office-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; font-weight: 700;
      color: rgba(184,115,51,0.12);
      position: absolute; top: 210px; right: 20px; line-height: 1;
    }
    .office-card-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--off-white); margin-bottom: 10px;
    }
    .office-card-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.8; }
    .office-tag {
      display: inline-block; margin-top: 16px;
      font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); border-bottom: 1px solid rgba(184,115,51,0.35); padding-bottom: 2px;
    }
    body:not(.show-pricing) .office-tag { display: none; }

    /* ===== SCROLL TO TOP BUTTON ===== */
    .scroll-top-btn {
      position: fixed; bottom: 32px; right: 32px; z-index: 900;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); color: var(--black);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 700;
      opacity: 0; visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.25s ease;
      box-shadow: 0 4px 16px rgba(184,115,51,0.35);
    }
    .scroll-top-btn.visible { opacity: 1; visibility: visible; }
    .scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(184,115,51,0.5); }

    /* ===== FEATURES ===== */
    #features { background: var(--black); }
    .features-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .features-img img {
      width: 100%; height: 560px; object-fit: cover;
      border-radius: 4px; filter: brightness(0.8);
    }
    .features-list { display: flex; flex-direction: column; gap: 0; }
    .feature-item {
      display: flex; align-items: flex-start; gap: 20px;
      padding: 24px 0; border-bottom: 1px solid rgba(184,115,51,0.08);
      transition: var(--t);
    }
    .feature-item:hover { padding-left: 8px; }
    .feature-item:last-child { border-bottom: none; }
    .feature-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: rgba(184,115,51,0.3); min-width: 36px; line-height: 1;
    }
    .feature-text h4 {
      font-size: 0.95rem; font-weight: 600; color: var(--off-white);
      margin-bottom: 6px; letter-spacing: 0.5px;
    }
    .feature-text p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

    /* ===== OUR BUSINESSES ===== */
    #businesses {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    #businesses::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(184,115,51,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,115,51,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .businesses-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 1; }
    .businesses-header .gold-line { margin: 18px auto 0; }

    .businesses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative; z-index: 1;
    }

    /* 3D flip card */
    .biz-card-wrap {
      perspective: 1000px;
      height: 420px;
    }
    .biz-card {
      width: 100%; height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    .biz-card-wrap:hover .biz-card { transform: rotateY(180deg); }

    .biz-front, .biz-back {
      position: absolute; inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 4px;
      overflow: hidden;
    }

    /* FRONT */
    .biz-front {
      background: var(--dark);
      border: 1px solid rgba(184,115,51,0.12);
      display: flex; flex-direction: column;
    }
    /* Responsive logo container — fills the card's top image area with a dark
       background and a centered business logo at full clarity. */
    .logo-container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #080808;
    }
    .logo-container-fashion { background: #080808; }
    .logo-container-arts    { background: #080808; }
    .logo-container-lands   { background: #080808; }
    .biz-front-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      height: auto;
      object-fit: contain;
      padding: 32px;
      filter: none !important;
      background: #080808;
      border-bottom: 1px solid rgba(184,115,51,0.08);
      transform: scale(var(--biz-logo-scale, 1));
      transform-origin: center;
      transition: transform 0.3s ease;
    }
    .biz-card-wrap:hover .biz-front-img { filter: none !important; }
    .biz-front-body {
      flex: 1;
      padding: 28px 28px 24px;
      display: flex; flex-direction: column; justify-content: space-between;
      background: linear-gradient(180deg, var(--dark) 0%, #0c0a04 100%);
    }
    .biz-front-icon {
      font-size: 1.8rem; margin-bottom: 10px;
    }
    .biz-front-icon img, .biz-back-icon img {
      height: 1em; width: auto; object-fit: contain; vertical-align: middle;
    }
    .biz-back-icon img { height: 1em; }

    /* ===== RESIZABLE PER-BUSINESS LOGOS =====
       To change the size of a specific business logo, edit the corresponding
       CSS variable in the :root block at the top of this file:
         --biz-logo-fashion-size
         --biz-logo-arts-size
         --biz-logo-land-size
       Or override width here directly for finer control. */
    .biz-logo {
      display: block;
      height: auto;
      object-fit: contain;
      margin: 0 auto 14px;
      filter: drop-shadow(0 0 10px rgba(184,115,51,0.35));
    }
    .biz-logo-fashion { width: var(--biz-logo-fashion-size); }
    .biz-logo-arts    { width: var(--biz-logo-arts-size); }
    .biz-logo-land    { width: var(--biz-logo-land-size); }
    .biz-front-name-wrap {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
    }
    .biz-front-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 700;
      color: var(--off-white); letter-spacing: 1px;
      text-align: center;
    }
    .biz-front-name span {
      color: var(--gold) !important;
      -webkit-text-fill-color: var(--gold) !important;
    }
    .biz-hover-hint {
      font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
      color: rgba(184,115,51,0.45); margin-top: 6px;
      display: flex; align-items: center; gap: 6px;
    }
    .biz-hover-hint::after {
      content: ''; display: inline-block;
      width: 16px; height: 1px; background: var(--gold-dim);
    }

    /* BACK */
    .biz-back {
      transform: rotateY(180deg);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 40px 32px; text-align: center;
      border: 1px solid rgba(184,115,51,0.3);
    }
    .biz-back-fashion {
      background: linear-gradient(145deg, #0d0a00, #1a1100, #0d0800);
    }
    .biz-back-arts {
      background: linear-gradient(145deg, #080d0a, #0a150f, #050d08);
    }
    .biz-back-land {
      background: linear-gradient(145deg, #08080d, #0f0a15, #08050d);
    }

    /* .biz-back-icon was removed from markup (Fix #4 — no more logo watermark on
       the back of each flip card). Title now sits higher on the back face. */
    .biz-back-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem; font-weight: 700;
      color: var(--gold-light); letter-spacing: 2px; margin-bottom: 18px;
      margin-top: 0;
    }
    .biz-back-desc {
      font-size: 0.82rem; color: rgba(245,240,232,0.75); line-height: 1.8;
      margin-bottom: 28px;
    }
    .biz-back-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--gold-dim), var(--gold));
      color: var(--black);
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      padding: 12px 28px; border-radius: 2px;
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
    }
    .biz-back-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,115,51,0.35); }
    .biz-back-btn svg { width: 14px; height: 14px; }

    /* Corner accent lines */
    .biz-back::before, .biz-back::after {
      content: '';
      position: absolute;
      width: 40px; height: 40px;
    }
    .biz-back::before {
      top: 16px; left: 16px;
      border-top: 1px solid rgba(184,115,51,0.4);
      border-left: 1px solid rgba(184,115,51,0.4);
    }
    .biz-back::after {
      bottom: 16px; right: 16px;
      border-bottom: 1px solid rgba(184,115,51,0.4);
      border-right: 1px solid rgba(184,115,51,0.4);
    }

    /* ===== GALLERY ===== */
    #gallery { background: #070707; }
    .gallery-header { text-align: center; margin-bottom: 56px; }
    .gallery-header .gold-line { margin: 18px auto 0; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 8px;
    }
    .gallery-grid .g-item:first-child { grid-column: span 2; }

    .g-item {
      overflow: hidden; position: relative; cursor: default;
      border: 1px solid transparent; transition: border-color var(--t);
    }
    .g-item:hover { border-color: rgba(184,115,51,0.3); }
    .g-item img {
      width: 100%; height: 180px; object-fit: cover;
      transition: transform 0.5s ease, filter 0.5s ease;
      filter: brightness(0.75) saturate(0.8);
    }
    .g-item:first-child img { height: 180px; }
    .g-item:hover img { transform: scale(1.06); filter: brightness(0.95) saturate(1); }
    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, transparent 55%);
      display: flex; align-items: flex-end; padding: 20px;
      opacity: 0; transition: opacity var(--t);
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-overlay span {
      font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold-light);
    }

    /* A Glimpse Inside — auto-slider */
    .gallery-slider{position:relative;width:100%;max-width:1400px;margin:0 auto;
      border:1px solid rgba(184,115,51,0.1);border-radius:4px;overflow:hidden;background:#0a0a0a;}
    .gs-track{position:relative;width:100%;aspect-ratio:16/9;max-height:480px;overflow:hidden;}
    .gs-slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease;}
    .gs-slide.active{opacity:1;}
    .gs-slide img{width:100%;height:100%;object-fit:cover;display:block;}
    .gs-slide .g-overlay{position:absolute;left:0;right:0;bottom:0;top:auto;inset:auto 0 0 0;
      background:linear-gradient(0deg,rgba(0,0,0,.75),transparent);padding:18px;opacity:1;display:flex;align-items:flex-end;}
    .gs-dots{display:flex;justify-content:center;gap:8px;padding:14px;}
    .gs-dot{width:8px;height:8px;border-radius:50%;background:rgba(184,115,51,0.25);
      border:none;cursor:pointer;transition:var(--t);padding:0;}
    .gs-dot.active{background:var(--gold);transform:scale(1.3);}
    @media(max-width:640px){ .gs-track{aspect-ratio:4/3;} }

    /* Lightbox */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.97);
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 88vw; max-height: 78vh; object-fit: contain;
      border: 1px solid rgba(184,115,51,0.15);
    }
    .lightbox-close {
      position: absolute; top: 28px; right: 28px;
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(184,115,51,0.1); border: 1px solid rgba(184,115,51,0.25);
      color: var(--gold); font-size: 1.3rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: var(--t);
    }
    .lightbox-close:hover { background: var(--gold); color: var(--black); }

    /* ===== CONTACT ===== */
    #contact { background: var(--black); text-align: center; }
    .contact-logo {
      width: 110px; height: 110px; margin: 0 auto 28px;
      filter: drop-shadow(0 0 20px rgba(184,115,51,0.3));
    }
    .contact-cards {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 48px 0;
    }
    .c-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 4px; padding: 28px 32px; min-width: 160px; transition: var(--t);
    }
    .c-card:hover { border-color: var(--gold); transform: translateY(-5px); }
    .c-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
    .c-card h4 {
      font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 8px;
    }
    .c-card p { font-size: 0.9rem; color: var(--off-white); direction: ltr; }

    .contact-btns {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px;
    }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25d366; color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 14px 28px; border-radius: 2px; transition: var(--t);
    }
    .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
    .btn-ig {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 14px 28px; border-radius: 2px; transition: var(--t);
    }
    .btn-ig:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(220,39,67,0.35); }
    .btn-ring {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent; border: 1px solid rgba(184,115,51,0.4); color: var(--gold);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      padding: 13px 28px; border-radius: 2px; transition: var(--t);
    }
    .btn-ring:hover { background: rgba(184,115,51,0.08); border-color: var(--gold); }

    /* ===== FOOTER ===== */
    footer {
      background: #030303;
      border-top: 1px solid rgba(184,115,51,0.08);
      padding: 64px 6% 32px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
      align-items: flex-start;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(184,115,51,0.06);
      margin-bottom: 28px;
    }
    .footer-top > * { margin-top: 0; padding-top: 0; }
    .footer-logo {
      display: inline-block;
      width: auto;
      height: auto;
      margin-bottom: 20px;
    }
    .footer-logo img,
    .footer-brand img {
      display: block;
      width: auto;
      height: auto;
      max-height: 48px;
      object-fit: contain;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 10px rgba(184,115,51,0.2));
    }
    .footer-brand .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--gold-light); letter-spacing: 3px; margin-bottom: 12px;
    }
    .footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.9; }
    .footer-col h4 {
      font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 22px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 0.82rem; color: var(--muted); transition: color var(--t); }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.2);
    }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(3,3,3,0.99);
      flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 600; letter-spacing: 3px;
      color: var(--off-white); transition: color var(--t);
    }
    .mobile-menu a:hover { color: var(--gold); }

    /* ===== RESPONSIVE ===== */
    /* Keep nav items on one line; allow middle links to shrink before wrapping. */
    nav { gap: 1rem; flex-wrap: nowrap; }
    .nav-logo { flex: 0 1 auto; min-width: 0; }
    .nav-links { flex: 1 1 auto; justify-content: center; min-width: 0; }
    .lang-sw { flex: 0 0 auto; }

    /* Navbar shrink for medium widths (769-1200px) — prevents link overflow */
    @media (min-width: 769px) and (max-width: 1200px) {
      nav { padding: 0 3%; gap: 0.75rem; }
      .nav-links { gap: 1rem; flex-wrap: nowrap; }
      .nav-links a { font-size: 0.68rem; letter-spacing: 0.8px; white-space: nowrap; }
      .nav-cta { padding: 6px 12px; }
      .lang-sw { margin-left: 6px; }
      .nav-logo img { height: 40px; }
      .nav-logo-text .name { font-size: 0.95rem; letter-spacing: 1px; }
      .nav-logo-text .tagline { font-size: 0.5rem; letter-spacing: 1.5px; }
    }
    @media (min-width: 769px) and (max-width: 960px) {
      nav { gap: 0.5rem; padding: 0 2.5%; }
      .nav-links { gap: 0.65rem; }
      .nav-links a { font-size: 0.6rem; letter-spacing: 0.3px; padding-bottom: 2px; }
      .nav-links a#nav-avail-link { font-size: 0.65rem; }
      .nav-logo-text .tagline { display: none; }
      .nav-logo-text .name { font-size: 0.85rem; letter-spacing: 0.8px; }
      .nav-logo img { height: 36px; }
      .nav-cta { padding: 5px 9px; font-size: 0.6rem; letter-spacing: 0.5px; }
      .lang-sw { margin-left: 4px; }
      .lang-btn { padding: 4px 6px; font-size: 0.52rem; }
    }
    @media (min-width: 769px) and (max-width: 840px) {
      .nav-links { gap: 0.5rem; }
      .nav-links a { font-size: 0.55rem; }
      .nav-links a#nav-avail-link { font-size: 0.58rem; }
      .nav-cta { padding: 4px 8px; font-size: 0.55rem; }
    }
    @media (max-width: 1024px) {
      .about-wrap, .features-wrap { grid-template-columns: 1fr; }
      .features-img  { display: block; }
      .features-img img { height: 360px !important; }
      .offices-grid  { grid-template-columns: repeat(2,1fr); }
      .stats-row     { grid-template-columns: repeat(2,1fr); }
      .footer-top    { grid-template-columns: 1fr 1fr; }
      .businesses-grid { grid-template-columns: repeat(2,1fr); }
      section { padding: 80px 5%; }
    }
    /* Navbar collapse: hamburger replaces the link bar at ≤960px.
       Kept SEPARATE from the 768px layout block on purpose. */
    @media (max-width: 960px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      html[dir="rtl"] .nav-links { display: none; }
      .bottom-nav { display: flex; }
      html[dir="rtl"] .bottom-nav { flex-direction: row-reverse; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 4%; height: 68px; }
      .nav-logo-text .name { font-size: 1.1rem; letter-spacing: 1px; }
      .nav-logo-text .tagline { font-size: 0.55rem; letter-spacing: 2px; }
      .nav-logo img { height: 38px; }
      section { padding: 60px 4%; }
      #hero { padding-top: 68px; }
      .hero-logo { width: min(35vw, 140px); height: auto; aspect-ratio: 1 / 1; margin-bottom: 16px; object-fit: contain; }
      .hero-brand { letter-spacing: 3px; }
      .hero-subtitle { letter-spacing: 3px; margin-bottom: 32px; font-size: clamp(0.65rem, 1.2vw, 0.85rem); }
      .hero-buttons { flex-direction: column; align-items: center; gap: 12px; width: 100%; padding: 0 20px; }
      .btn-gold, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; font-size: 0.72rem; }
      .scroll-hint { bottom: 20px; font-size: 0.6rem; }
      .section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
      .section-eyebrow { font-size: 0.6rem; letter-spacing: 3px; }
      .section-desc { font-size: 0.82rem; }
      .about-wrap { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap { order: -1; }
      .about-img-wrap img { height: auto; max-height: 480px; }
      .about-img-wrap::before { display: none; }
      .about-img-badge { display: none; }
      .offices-grid { grid-template-columns: 1fr; }
      .office-card img { height: 180px; }
      .office-num { font-size: 2rem; top: 170px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid .g-item:first-child { grid-column: span 1; }
      .g-item img, .g-item:first-child img { height: 200px; }
      .stats-row { grid-template-columns: repeat(2,1fr); }
      .stat-num { font-size: 2rem; }
      .stat-lbl { font-size: 0.62rem; letter-spacing: 1.5px; }
      .stat-cell { padding: 28px 14px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .businesses-grid { grid-template-columns: 1fr; }
      .biz-card-wrap { height: 380px; }
      .features-list { gap: 0; }
      .contact-cards { flex-direction: column; align-items: center; }
      .c-card { width: 100%; max-width: 320px; }
      .contact-btns { flex-direction: column; align-items: center; }
      .btn-wa, .btn-ig, .btn-ring { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
      .avail-summary { gap: 12px; }
      .avail-sum-item { min-width: 120px; padding: 12px 14px; }
      .avail-sum-item .num { font-size: 1.3rem; }
      .mobile-menu a { font-size: 1.4rem; }
      .lang-sw { margin-left: 8px; }
    }
    @media (max-width: 480px) {
      nav { padding: 0 3%; }
      section { padding: 48px 3%; }
      .hero-logo { width: min(40vw, 130px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
      .hero-brand { font-size: clamp(1.4rem, 5vw, 2rem); letter-spacing: 2px; }
      .hero-divider { margin: 12px 0 14px; }
      .section-title { font-size: clamp(1.3rem, 3vw, 1.8rem); }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .stat-num { font-size: 1.6rem; }
      .stat-cell { padding: 22px 10px; }
      .about-img-wrap img { height: auto; max-height: 480px; }
      .office-card-body { padding: 20px 16px 24px; }
      .biz-card-wrap { height: 340px; }
      .biz-front-body { padding: 20px 20px 18px; }
      .biz-front-name { font-size: 1.3rem; }
      .avail-row { padding: 16px 14px; }
      .unit-chip { font-size: 0.58rem; padding: 5px 8px; }
      .btn-book-row { padding: 8px 16px; font-size: 0.58rem; }
      .avail-summary { flex-direction: column; align-items: center; }
      .avail-sum-item { width: 100%; max-width: 280px; }
      .scroll-top-btn { bottom: 20px; right: 20px; width: 38px; height: 38px; font-size: 1rem; }
    }
    /* RTL responsive */
    @media (max-width: 768px) {
      html[dir="rtl"] .about-wrap { gap: 40px; }
      html[dir="rtl"] .lang-sw { margin-left: 0; margin-right: 8px; }
      html[dir="rtl"] .hero-buttons { align-items: center; }
    }
    /* ===== LANGUAGE SWITCHER ===== */
    .lang-sw{display:flex;align-items:center;gap:0;margin-left:16px;}
    .lang-btn{background:none;border:1px solid rgba(184,115,51,0.3);color:var(--muted);font-family:'Montserrat',sans-serif;font-size:0.62rem;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;padding:5px 10px;cursor:pointer;transition:var(--t);}
    .lang-btn:first-child{border-radius:2px 0 0 2px;border-right:none;}
    .lang-btn:last-child{border-radius:0 2px 2px 0;}
    .lang-btn.active{background:var(--gold);color:var(--black);border-color:var(--gold);}
    .lang-btn:hover:not(.active){color:var(--gold);border-color:var(--gold);}
    html[dir="rtl"] body{direction:rtl;text-align:right;}
    html[dir="rtl"] .nav-links{flex-direction:row-reverse;}
    html[dir="rtl"] .hero-divider::before{background:linear-gradient(270deg,transparent,var(--gold));}
    html[dir="rtl"] .hero-divider::after{background:linear-gradient(90deg,transparent,var(--gold));}
    html[dir="rtl"] .gold-line{background:linear-gradient(270deg,var(--gold),transparent);}
    html[dir="rtl"] .about-img-wrap::before{left:16px;right:-16px;}
    html[dir="rtl"] .about-img-badge{right:auto;left:-20px;}
    html[dir="rtl"] .feature-item:hover{padding-left:0;padding-right:8px;}
    html[dir="rtl"] .footer-top{direction:rtl;}
    html[dir="rtl"] .c-card p{direction:ltr;}

    /* Keep RTL-neutral card title centering so the removed-logo change works in AR too */
    html[dir="rtl"] .biz-front-name,
    html[dir="rtl"] .biz-front-name-wrap { text-align: center; }
  

/* --- responsive image fixes (appended) --- */
img { max-width: 100%; height: auto; }
@media (max-width: 1024px) { /* tablet fixes */
  .hero img, .banner img, [class*="hero"] img, [class*="banner"] img {
    width: 100%; height: auto; object-fit: cover;
  }
}
@media (max-width: 640px) {
  .hero, .banner, [class*="hero"], [class*="banner"] { min-height: auto; }
  img { display: block !important; }
}

/* --- resizable hero/banner images (appended) --- */
.resizable-img { overflow: hidden; width: 100%; }
.resizable-img img { width:100%; height:100%; object-fit:cover; }

/* ── Logo: always render in original colors, defeat any dark-mode / auto-darken / extension filters ── */
html img.brand-logo-img, body img.brand-logo-img,
html img[src*="logo/logo.png"], body img[src*="logo/logo.png"],
html.dark img.brand-logo-img, html[data-theme="dark"] img.brand-logo-img, body.dark img.brand-logo-img,
html.dark img[src*="logo/logo.png"], html[data-theme="dark"] img[src*="logo/logo.png"], body.dark img[src*="logo/logo.png"] {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  forced-color-adjust: none !important;
  color-scheme: dark !important;
  background: transparent !important;
  isolation: isolate;
}
@media (prefers-color-scheme: light), (prefers-color-scheme: dark) {
  .brand-logo-img, img[src*="logo/logo.png"] {
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
  }
}

/* ── Mobile navbar layout: keep logo + brand text on one horizontal row ── */
#navbar { background: rgba(5,5,5,0.98) !important; }
.nav-logo { flex-wrap: nowrap !important; min-width: 0; }
.nav-logo-text { flex-direction: column; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 768px) {
  #navbar { height: 64px; padding: 0 4%; }
  .nav-logo { gap: 8px; }
  .nav-logo img { height: 34px !important; flex-shrink: 0; }
  .nav-logo-text .name { font-size: 0.95rem; letter-spacing: 1px; }
  .nav-logo-text .tagline { font-size: 0.48rem; letter-spacing: 1.5px; }
  #hero { padding-top: 64px; }
}
@media (max-width: 480px) {
  #navbar { height: 54px; padding: 0 3%; }
  .nav-logo img { height: 28px !important; }
  /* Hide logo text — keep only the icon */
  .nav-logo-text { display: none !important; }
  #hero { padding-top: 54px; }
}
@media (max-width: 360px) {
  #navbar { height: 50px; }
  .nav-logo img { height: 26px !important; }
  #hero { padding-top: 50px; }
}

/* ── Arabic (RTL) typography: prevent descender/ascender clipping ── */
html[dir="rtl"] body,
body.ar {
  font-family: 'Cairo','Montserrat',sans-serif;
}
html[dir="rtl"] .section-title,
body.ar .section-title {
  line-height: 1.7 !important;
  padding: 0.15em 0;
  overflow: visible;
}
html[dir="rtl"] .section-eyebrow,
body.ar .section-eyebrow {
  line-height: 1.8 !important;
  padding: 0.2em 0;
  overflow: visible;
  letter-spacing: 2px;
  white-space: normal;
}
html[dir="rtl"] .section-desc,
html[dir="rtl"] .hero-subtitle,
html[dir="rtl"] .hero-brand,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] h5, html[dir="rtl"] h6,
body.ar h1, body.ar h2, body.ar h3, body.ar h4, body.ar h5, body.ar h6 {
  line-height: 1.7 !important;
  overflow: visible;
}
html[dir="rtl"] .hero-brand {
  padding: 0.1em 0;
}
html[dir="rtl"] .avail-sum-item .lbl,
html[dir="rtl"] .avail-sum-item .num,
html[dir="rtl"] .avail-badge,
html[dir="rtl"] .office-tag,
html[dir="rtl"] .stat-lbl,
html[dir="rtl"] .stat-num {
  line-height: 1.8 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: normal !important;
}
html[dir="rtl"] [class*="title"],
html[dir="rtl"] [class*="eyebrow"],
html[dir="rtl"] [class*="heading"] {
  overflow: visible !important;
  text-overflow: clip !important;
}

/* ██████████████████████████████████████████████████████████████
   PER-IMAGE CONTROLS — index.html (Main Page)
   Search the image name below to jump straight to its rule.
   Each property is labeled. Edit the value on that line only.
   ██████████████████████████████████████████████████████████████ */

/* ── IMAGE: about-office-interior.webp ── */
img.img-about-office-interior {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: full-floor-outside.webp ── */
img.img-full-floor-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: small-spaces-outside.webp ── */
img.img-small-spaces-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: open-space-outside.webp ── */
img.img-open-space-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: 9th-floor-outdoor-outside.webp ── */
img.img-9th-floor-outdoor-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: 9th-floor-indoor-outside.webp ── */
img.img-9th-floor-indoor-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: small-shops-outside.webp ── */
img.img-small-shops-outside {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: features-why-us.webp ── */
img.img-features-why-us {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; /* Crop focus — move up/down/left/right */
   transform: rotate(1deg) scale(1.1);  /* Rotation + Zoom */
}

/* ── IMAGE: executive-hall.webp ── */
img.img-executive-hall {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: open-space.webp ── */
img.img-open-space {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: roof-indoor.webp ── */
img.img-roof-indoor {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: partitions-offices.webp ── */
img.img-partitions-offices {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: full-space.webp ── */
img.img-full-space {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* ── IMAGE: front-view-office.webp ── */
img.img-front-view-office {
  /* height: 320px; */                /* Size */
  /* width: 100%; */                  /* Size */
  /* object-fit: cover; */            /* Crop focus */
  /* object-position: center 60%; */ /* Crop focus — move up/down/left/right */
  /* transform: rotate(5deg) scale(1.1); */ /* Rotation + Zoom */
}

/* Disable text selection (caret/highlight) sitewide � keep typing inputs still selectable. */
html,body{caret-color:transparent;}
*:not(input):not(textarea):not([contenteditable]){-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
input,textarea{caret-color:auto;-webkit-user-select:text;user-select:text;}
