/*
  mobile.css — The Off Plan / UAE Pinnacle Advisory
  Mobile-only overrides. Does NOT affect desktop.
  Link this file in every HTML page AFTER the closing </style> tag.
  Root pages:    <link rel="stylesheet" href="mobile.css"/>
  Article pages: <link rel="stylesheet" href="../mobile.css"/>
*/

/* ─────────────────────────────────────────
   HAMBURGER BUTTON
   Injected by mobile.js into the <nav> element.
   Hidden on desktop, visible on mobile.
───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111;
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────
   MOBILE NAV OVERLAY
   Full-screen panel revealed by hamburger.
───────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 13, 8, 0.96);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-overlay.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 48px;
  min-height: 100%;
}
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
  margin-bottom: 32px;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  flex: 1;
}
.mobile-nav-links a {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #fff; }
.mobile-nav-links a[style*="gold"],
.mobile-nav-links a.golden { color: #B8875A !important; }
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0;
}
.mobile-nav-cta-type {
  display: block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B8875A;
  text-decoration: none;
  border: 1px solid rgba(184,135,90,0.4);
  padding: 14px 20px;
  text-align: center;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.mobile-nav-cta-type:hover { background: rgba(184,135,90,0.1); }
.mobile-nav-cta {
  display: block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: #111;
  padding: 15px 20px;
  text-align: center;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: #333; }

/* ─────────────────────────────────────────
   MAIN MOBILE BREAKPOINT — 960px and below
   Targets phones and tablets.
───────────────────────────────────────── */
@media (max-width: 960px) {

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Nav: fixed at top — main page nav only, NOT the overlay's inner nav element */
  nav:not(.mobile-nav-links) {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 60px !important;
    padding: 0 16px !important;
  }
  /* Reset overlay inner nav — prevent it inheriting fixed positioning */
  nav.mobile-nav-links {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    z-index: auto !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }
  /* Hide links and type-quiz CTA — keep "Speak to an Advisor" visible */
  .nav-links { display: none !important; }
  .nav-cta-type { display: none !important; }
  /* Push nav-right (CTA) to the far right */
  nav:not(.mobile-nav-links) .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
  }
  /* Hamburger sits immediately right of the CTA — no auto margin */
  .nav-hamburger { margin-left: 6px !important; }
  /* Compact advisor CTA on mobile */
  nav .nav-cta {
    font-size: 8.5px !important;
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }

  /* ── HERO (review pages) ── */
  .hero {
    padding-top: 60px;
    min-height: auto;
  }
  .hero-inner {
    padding: 40px 20px 48px !important;
  }
  .hero-title { line-height: 1.05; }
  .hero-stats {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
  }
  .hero-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stat-val { font-size: 18px; }
  .hero-stat-lbl { text-align: right; }

  /* ── VERDICT BAND ── */
  .verdict-inner {
    padding: 24px 20px !important;
    flex-direction: column;
    gap: 16px;
  }
  .verdict-text { font-size: 16px; }

  /* ── REVIEW BODY ── */
  .review-body { padding: 0 20px !important; }
  .review-section { padding: 40px 0; }
  .section-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .section-label-col {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 0;
  }
  .section-num {
    font-size: 36px !important;
    margin-bottom: 0 !important;
  }
  .section-label { margin-bottom: 0; }
  .section-title { font-size: 20px !important; }

  /* ── STAT ROWS ── */
  .stat-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-val { font-size: 20px !important; }

  /* ── RISKS ── */
  .risk-list li { padding: 16px 18px; }

  /* ── CALLOUT ── */
  .callout { padding: 24px 20px; }
  .callout-text { font-size: 17px; }

  /* ── TABLES: horizontal scroll ── */
  .price-table,
  .payment-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .price-table th,
  .price-table td,
  .payment-table th,
  .payment-table td {
    padding: 10px 12px;
  }

  /* ── COMPARABLES CHART ── */
  .comp-name { width: 110px !important; font-size: 11px; }
  .comp-val { width: 80px !important; font-size: 12px; }

  /* ── GALLERY ── */
  .gallery-inner { padding: 32px 20px !important; }
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .gallery-item { height: 240px; }
  .gallery-item.tall { grid-row: span 1 !important; }

  /* ── ENQUIRY FORM ── */
  .enquiry { padding: 48px 20px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .enquiry-title { font-size: 28px !important; }

  /* ── DISCLOSURE ── */
  div[style*="padding:24px 56px"] {
    padding: 20px !important;
  }

  /* ── FOOTER ── */
  footer { padding: 28px 20px 20px !important; }
  /* Brand on its own row, Navigate + Markets side by side below */
  .footer-top {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 20px !important;
    padding-bottom: 24px !important;
  }
  /* Brand col spans both columns */
  .footer-top > *:first-child {
    grid-column: 1 / -1;
  }
  .footer-tagline { font-size: 11px !important; line-height: 1.6 !important; }
  .footer-col-lbl { margin-bottom: 10px !important; }
  .footer-links { gap: 7px !important; }
  .footer-links a { font-size: 11px !important; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px !important;
  }
  .footer-copy { font-size: 10px !important; }

  /* ── WHATSAPP FLOAT ── */
  a[href*="wa.me"] {
    bottom: 16px !important;
    right: 16px !important;
    width: 46px !important;
    height: 46px !important;
  }

  /* ────────────────────────────────────────
     INDEX.HTML SPECIFIC
  ──────────────────────────────────────── */

  /* Hero new — remove full-viewport min-height so content sits tight under the nav */
  .hero-new { padding-top: 60px; }
  .hero-new-inner { min-height: auto !important; align-items: start !important; }
  .hero-new-left { padding: 24px 20px 32px !important; }
  .hero-wordmark { font-size: clamp(44px, 11vw, 72px) !important; }
  .hero-ctas { flex-direction: column; }
  .hero-btn-dark,
  .hero-btn-outline { width: 100%; text-align: center; }
  .hero-features { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .hero-landscape-img { opacity: 0.25 !important; }

  /* Portfolio */
  .portfolio { padding: 32px 20px 56px !important; }
  .portfolio-header { flex-direction: column; gap: 8px; align-items: flex-start; }
  /* Fix right-side description alignment on mobile */
  .portfolio-header > div:last-child {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    gap: 8px !important;
  }
  .portfolio-header > div:last-child p { text-align: left !important; }

  /* Keep 2-col grid: fixes paired loc-sub DOM ordering (Hudayriyat/Ramhan side-by-side) */
  .portfolio-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Align paired location headers — override :first-child padding so both --half items sit at the same vertical position */
  .loc-sub--half { padding: 16px 0 4px !important; }

  /* Compact project cards for 2-col mobile */
  .project-card-img { height: 160px !important; }
  .project-card-body { padding: 10px 12px 6px !important; }
  .project-card-desc { display: none !important; }
  /* Clamp name to 2 lines so all cards have consistent body height */
  .project-card-name {
    font-size: 14px !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .project-card-dev { font-size: 8px !important; margin-bottom: 4px !important; }
  /* Limit to 2 tags max — prevents multi-line tag wrapping that varies card height */
  .project-card-badges { gap: 3px !important; margin-bottom: 6px !important; flex-wrap: nowrap !important; overflow: hidden !important; }
  .project-card-badges .itag { font-size: 6.5px !important; padding: 2px 5px !important; white-space: nowrap !important; flex-shrink: 0 !important; }
  .project-card-badges .itag:nth-child(n+3) { display: none !important; }
  .project-card-footer { padding: 8px 12px !important; }
  .project-card-price strong { font-size: 14px !important; }
  .project-card-link { font-size: 9px !important; }

  /* PRE-LAUNCH BANDS — side by side on mobile, compact card layout */
  .prelaunch-grid { padding: 16px !important; }
  .prelaunch-grid > div { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .prelaunch-grid > div > div {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  /* Image section inside each card: fixed height, full width */
  .prelaunch-grid > div > div > a {
    min-height: 100px !important;
    height: 100px !important;
    display: block !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }
  /* Body section inside each card */
  .prelaunch-grid > div > div > div {
    padding: 10px 12px !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    flex: 1 !important;
  }
  /* Typography reductions */
  .prelaunch-grid [style*="font-size:22px"],
  .prelaunch-grid [style*="font-size:26px"] { font-size: 14px !important; margin-bottom: 3px !important; }
  .prelaunch-grid [style*="font-size:11px"] { font-size: 10px !important; margin-bottom: 6px !important; }
  .prelaunch-grid [style*="font-size:10px"] { font-size: 9px !important; }
  .prelaunch-grid [style*="font-size:9px"] { font-size: 8px !important; }
  .prelaunch-grid [style*="font-style:italic"] { display: none !important; }
  .prelaunch-grid [style*="margin-bottom:10px"] { margin-bottom: 6px !important; }
  .prelaunch-grid [style*="gap:8px;align-items:center"] { gap: 4px !important; flex-wrap: wrap !important; }
  .prelaunch-grid [style*="gap:8px;align-items:center"] a { padding: 5px 8px !important; font-size: 7px !important; }

  /* Keep pick-mini horizontal (image left, info right) */
  .pick-row { grid-template-columns: 1fr !important; }
  .pick-mini { grid-template-columns: 110px 1fr !important; height: 120px !important; }
  .pick-mini-img { height: 120px !important; }
  .pick-mini-name { font-size: 18px !important; }
  /* Pick-filters column: stack vertically (filters above tags) */
  .pick-filters-col {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
  }
  /* Market buttons: full width, all visible via horizontal scroll */
  .port-filters {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex !important;
    border: 1px solid var(--rule) !important;
    flex-shrink: 0 !important;
  }
  .port-filter { padding: 9px 14px !important; font-size: 9px !important; white-space: nowrap !important; }
  /* Investment tags: 2-column symmetrical grid */
  .pick-filters-col > div:last-child {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .pick-filters-col > div:last-child .itag {
    justify-content: center !important;
    text-align: center !important;
  }
  /* 5th tag (Commercial) — left-aligned, same width as siblings */
  .pick-filters-col > div:last-child .itag:last-child {
    grid-column: 1 / 2 !important;
    justify-self: stretch !important;
    width: 100% !important;
  }
  .port-filters-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Markets section */
  .markets { padding: 56px 20px !important; }
  .markets-header { flex-direction: column; gap: 12px; align-items: flex-start; }
  .markets-grid { grid-template-columns: 1fr !important; }
  .mkt-card-wide { grid-column: span 1 !important; }

  /* About */
  .about { padding: 60px 20px !important; }
  .about-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-photo-img { aspect-ratio: 4/3; max-width: 320px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-name { font-size: 32px; }
  .about-bio p { font-size: 14px; }

  /* Advisor strip */
  .adv-strip { padding: 32px 20px 0 !important; }
  .adv-strip-inner { grid-template-columns: 1fr !important; gap: 24px !important; }
  .adv-strip-photo { width: 160px !important; height: 220px !important; }
  .adv-bio-cols { columns: 1 !important; }
  .adv-strip-stats { flex-wrap: wrap; gap: 16px; }

  /* Advisor intro banner */
  .advisor-intro { padding: 56px 20px !important; }
  .advisor-intro-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .advisor-intro-right {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-top: 32px;
  }
  .advisor-stats { grid-template-columns: 1fr 1fr; }

  /* Pillars */
  .pillars { padding: 56px 20px !important; }
  .pillars-header { flex-direction: column; gap: 16px; }
  .pillars-header-right { text-align: left !important; max-width: 100% !important; }
  .pillars-grid { grid-template-columns: 1fr 1fr !important; }
  .pillar { padding: 28px 20px; }

  /* Qualify */
  .qualify { padding: 56px 20px !important; }
  .qualify-inner { grid-template-columns: 1fr !important; }
  .qualify-col { padding: 36px 24px !important; }

  /* Why Invest */
  .wi-section { padding: 56px 0; }
  .wi-header {
    grid-template-columns: 1fr !important;
    padding: 0 20px 28px !important;
    gap: 16px;
  }
  .wi-markets-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 0 20px !important;
    gap: 2px;
  }
  .wi-mc { padding: 18px 14px 14px; }
  .wi-mc-name { font-size: 16px; }
  /* All market cards show gold CTA on mobile, not just the active one */
  .wi-mc-cta { color: var(--gold) !important; }
  .wi-panel { padding: 32px 20px 0 !important; }
  .wi-panel-grid { grid-template-columns: 1fr !important; }
  .wi-stat-bar { grid-template-columns: 1fr 1fr !important; }
  .wi-reason { padding: 24px 20px; }
  .wi-position { padding: 24px 20px; }

  /* Investor Profile */
  .ip-inner { padding: 0 20px !important; }
  .ip-options { grid-template-columns: 1fr !important; }
  .ip-rec-grid { grid-template-columns: 1fr !important; }

  /* Hero features — 3 across on mobile, compact */
  .hero-features {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100% !important;
    gap: 0 !important;
  }
  .hero-feat { padding: 10px 8px !important; }
  .hero-feat-icon { margin-bottom: 6px !important; }
  .hero-feat-icon svg { width: 16px !important; height: 16px !important; }
  .hero-feat-desc { display: none !important; }
  .hero-feat-title { font-size: 8px !important; }

  /* Journal — 3 cards across on mobile, compact */
  .journal { padding: 48px 20px !important; }
  .journal-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    background: transparent !important;
  }
  .article-card { border: 1px solid var(--rule); }
  .article-card-img { height: 90px !important; }
  .article-card-body { padding: 10px 10px 8px !important; }
  .article-card-meta { margin-bottom: 6px !important; gap: 6px !important; }
  .article-card-tag { font-size: 7px !important; }
  .article-card-date { font-size: 8px !important; }
  .article-card-head { font-size: 12px !important; line-height: 1.2 !important; margin-bottom: 0 !important; }
  .article-card-excerpt { display: none !important; }
  .article-card-footer { padding: 8px 10px !important; }
  .article-card-read { font-size: 8px !important; }
  .article-card-footer > span:last-child { display: none !important; }
  .journal-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .journal-subscribe { flex-direction: column; gap: 12px; }
  .journal-subscribe-right { width: 100%; }

  /* Contact */
  .contact { overflow: hidden !important; }
  .contact-inner { grid-template-columns: 1fr !important; }
  /* contact-left: block (not flex) so wa-btn doesn't fight flex alignment */
  .contact-left {
    padding: 36px 20px 28px !important;
    background: #fff !important;
    display: block !important;
  }
  .contact-right { padding: 32px 20px 40px !important; background: transparent !important; position: relative !important; }
  /* Remove the white gradient overlay */
  .contact-sketch-wrap::after { display: none !important; }
  /* Contact heading — match Send an Enquiry heading below */
  .contact-head { font-size: 26px !important; white-space: normal !important; line-height: 1.1 !important; margin-bottom: 12px !important; }
  .contact-sub { font-size: 13px !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
  .contact-sub br { display: none !important; }
  /* WhatsApp button — hidden on mobile */
  .wa-btn { display: none !important; }
  /* contact-note — visible on mobile (Or removed from text in HTML) */
  /* "Send an Enquiry" heading — hidden on mobile, form flows straight from paragraph */
  .contact-right h3 { display: none !important; }
  /* Skyline sketch — repositioned to the Send an Enquiry panel (contact-right) */
  .contact-sketch-wrap {
    z-index: 0 !important;
    overflow: hidden !important;
  }
  .contact-sketch-img {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
    opacity: 0.25 !important;
    mix-blend-mode: multiply !important;
  }

  /* Advisor strip — photo floats left, label/name/role sit alongside, bio flows full-width below */
  .adv-strip { padding: 24px 20px 28px !important; }
  .adv-strip-inner {
    display: block !important;
  }
  .adv-strip-inner::after { content: ''; display: table; clear: both; }
  .adv-strip-photo {
    float: left !important;
    width: 120px !important;
    height: 170px !important;
    margin: 0 16px 12px 0 !important;
  }
  .adv-strip-content { display: block !important; padding-top: 100px !important; padding-bottom: 12px !important; }
  .adv-strip-name { font-size: 24px !important; margin-bottom: 2px !important; }
  .adv-strip-role { font-size: 10px !important; margin-bottom: 12px !important; line-height: 1.5 !important; }
  /* Bio — clear the float so all paragraphs run full-width */
  .adv-bio-cols { display: block !important; columns: 1 !important; clear: both !important; margin-top: 16px !important; }
  .adv-strip-bio { font-size: 13px !important; line-height: 1.7 !important; margin-bottom: 12px !important; }
  /* Stats block — clear float, stat on top, then button + ig in a row */
  .adv-strip-stats { flex-direction: row !important; flex-wrap: wrap !important; align-items: center !important; gap: 12px !important; clear: both !important; margin-top: 20px !important; }
  .adv-strip-stat { width: auto !important; }
  .adv-strip-divider { display: none !important; }
  .adv-ss-num { font-size: 18px !important; }
  .adv-ss-lbl { font-size: 9px !important; margin-bottom: 4px !important; }
  /* Work With Me button — auto width, sits inline with Instagram */
  .adv-strip-cta {
    display: inline-flex !important;
    width: auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding: 10px 18px !important;
    font-size: 9px !important;
    margin-bottom: 0 !important;
  }
  /* Instagram link — inline, flows alongside button */
  .adv-strip-ig { display: inline-flex !important; align-items: center !important; margin-top: 0 !important; }

  /* Inv strip */
  .inv-strip { padding: 0 20px !important; }
  .inv-strip-inner { grid-template-columns: 1fr 1fr !important; }

  /* Trust bar */
  .trust-bar { padding: 10px 20px !important; }

  /* Latest bar */
  .latest-bar-inner { padding: 12px 20px !important; }

  /* ────────────────────────────────────────
     ARTICLE PAGES (/articles/)
  ──────────────────────────────────────── */
  .article-hero { padding-top: 60px !important; }
  .article-inner { padding: 0 20px !important; }
  .article-body { padding: 0 20px !important; }
  .article-body p,
  .article-body li { font-size: 15px !important; line-height: 1.8; }
  .article-stat-row { grid-template-columns: 1fr !important; }
  .article-verdict { padding: 24px 20px !important; }
  .article-grid { grid-template-columns: 1fr !important; }
  /* Journal grid on article pages — same 3-col compact layout */
  .journal-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; background: transparent !important; }

  /* ────────────────────────────────────────
     ISLAND GUIDE PAGE (abu-dhabi-islands.html)
  ──────────────────────────────────────── */
  .island-inner { padding: 48px 20px !important; }
  .island-header { margin-bottom: 28px !important; }
  .island-header-left { flex-direction: column; gap: 10px; }
  .island-number { font-size: 48px !important; line-height: 1; }
  .island-name { font-size: clamp(28px, 8vw, 44px) !important; }
  .island-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .stat-strip { grid-template-columns: 1fr 1fr !important; }
  .matrix { padding: 48px 20px !important; }
  .matrix-table th:nth-child(3),
  .matrix-table td:nth-child(3) { display: none; }
  .matrix-table td { font-size: 11px; }
  .island-nav-inner { padding: 0 16px; }

  /* ────────────────────────────────────────
     AL GHADEER / REVIEW PAGES
  ──────────────────────────────────────── */
  .intro { padding: 40px 20px !important; }
  .intro-inner { grid-template-columns: 1fr !important; gap: 12px !important; }
  .hero-lede { font-size: 16px !important; }

  /* Payment plan two-col boxes */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Section heading sizes */
  .section-title { margin-bottom: 16px; }
}

/* ─────────────────────────────────────────
   SMALL PHONES — 480px and below
───────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-title { font-size: clamp(36px, 10vw, 56px) !important; }
  .hero-sub { font-size: 16px !important; }

  .verdict-text { font-size: 15px; }
  .section-title { font-size: 18px !important; }

  .stat-row { grid-template-columns: 1fr !important; }
  .stat-strip { grid-template-columns: 1fr !important; }
  .about-stats { grid-template-columns: 1fr !important; }

  .pillars-grid { grid-template-columns: 1fr !important; }

  .wi-markets-grid { grid-template-columns: repeat(3, 1fr) !important; padding: 0 10px !important; }
  .wi-mc { padding: 14px 10px 12px !important; }
  .wi-mc-name { font-size: 14px !important; margin-bottom: 4px !important; }
  .wi-mc-stat { font-size: 10px !important; margin-bottom: 8px !important; }
  .wi-mc-tags { display: none !important; }
  .wi-mc-cta { font-size: 8px !important; }
  .wi-stat-bar { grid-template-columns: 1fr !important; }

  .advisor-stats { grid-template-columns: 1fr !important; }
  .inv-strip-inner { grid-template-columns: 1fr !important; }

  .matrix-table th:nth-child(4),
  .matrix-table td:nth-child(4) { display: none; }

  .callout-text { font-size: 16px; }
}
