/* ============================================================
   MAIHAN GROUP — Mobile Responsive Enhancement
   Pure mobile-responsive polish — no layout or section changes.
   Keeps the existing gold & navy luxury theme intact.
   ============================================================ */
.show-sm { display: none; }

/* ============================================================
   TABLET LANDSCAPE (≤1100px) — REFINEMENTS
   ============================================================ */
@media (max-width: 1100px) {
  .contact-grid { gap: 50px; }
  .footer-top { gap: 60px; }
  .leader-card,
  .leader-card--alt { gap: 48px; }
}

/* ============================================================
   TABLET PORTRAIT (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr; gap: 50px; }
  .advisory-visual { order: -1; }

  /* Leader cards: stack on tablets */
  .leader-card,
  .leader-card--alt {
    grid-template-columns: 1fr;
    gap: 32px;
    display: flex;
    flex-direction: column;
  }
  .leader-photo-wrap { order: -1 !important; max-width: 400px; margin: 0 auto; }
  .leader-info { order: 0 !important; }

  /* Our Story */
  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .our-story-aside { position: static; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  /* Sections padding reduce */
  .philosophy,
  .risk-mgmt,
  .strategies,
  .brokers,
  .testimonials { padding: 80px 0 70px; }

  .why-us,
  .leadership,
  .locations,
  .contact { padding: 80px 0; }
}

/* ============================================================
   WCAG 2.1 & ACCESSIBILITY ENHANCEMENTS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ============================================================
   MOBILE-FIRST CRITICAL (≤1200px)
   ============================================================ */
@media (max-width: 1200px) {
  /* ── Container ─────────────────────────────── */
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  section { padding-left: 16px; padding-right: 16px; box-sizing: border-box; }

  /* ── Navigation mobile menu ────────────────── */
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    gap: 8px; /* Consistent 8px margin/gap */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 24px 40px;
    z-index: 999;
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-link {
    font-size: 16px;
    color: var(--white);
    padding: 12px 24px;
    min-height: 44px; /* WCAG 2.1 Touch Target */
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Make dropdown static on mobile */
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown > a.nav-link { display: none; } /* Hide the 'Business Units' parent link in mobile */
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: none !important; /* Hide dropdown entirely in mobile */
    flex-direction: column;
    padding: 0;
    margin-top: 10px;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-item {
    color: rgba(255,255,255,0.7);
    justify-content: center;
    padding: 8px;
  }
  .dropdown-item:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); }
  .dropdown-flyout {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 10px;
  }
  .dropdown-flyout::before { display: none; }
  .flyout-header { display: none; }
  .flyout-item {
    color: rgba(255,255,255,0.7);
    padding: 10px;
  }
  .flyout-item:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); }
  .flyout-item strong { color: rgba(255,255,255,0.9); }
  .dropdown-item--has-flyout { display: none; } /* Hide the intermediate link if we just show flyout items */

  .hamburger {
    display: flex;
    z-index: 1001;
    position: relative;
    margin-left: 10px;
    min-width: 44px; /* WCAG Touch Target */
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-inquire { display: none; }
  .show-sm { display: flex !important; }
  .nav-menu.open .btn-ghost, .nav-menu.open .btn-inquire { 
    display: flex; 
    margin: 10px auto; 
    width: 80%; 
    min-height: 44px; /* WCAG */
    justify-content: center;
  }
}

/* ============================================================
   MOBILE-FIRST CRITICAL (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* ── Navigation mobile menu ────────────────── */
  .nav-menu {
    justify-content: center; /* Center items on smaller screens if they fit well */
  }

  /* ── Buttons global ────────────────────────── */
  .btn-primary, .btn-ghost, .btn-inquire {
    padding: 13px 28px;
    font-size: 12px;
    min-height: 44px; /* WCAG minimum */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-link, .footer-social a {
    min-width: 44px; /* WCAG minimum */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Hero Section ──────────────────────────── */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content {
    padding: 100px 20px 60px;
    max-width: 100%;
  }
  .hero-title { font-size: 2.6rem; }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    gap: 12px;
    margin-bottom: 20px;
  }
  .hero-eyebrow .line { width: 28px; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }
  .stat-item { padding: 0 8px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  .hero-scroll { bottom: 24px; }
  .hide-sm { display: none; }

  /* ── Marquee strip ─────────────────────────── */
  .marquee-strip { padding: 10px 0; }
  .marquee-track span { font-size: 10px; letter-spacing: 2px; }

  /* ── Business Showcase ─────────────────────── */
  .biz-header { padding: 60px 16px 40px; }
  .biz-header .section-title { font-size: 1.8rem; }
  .biz-stage { padding: 0 16px 40px; gap: 20px; }

  /* ── Our Story ─────────────────────────────── */
  .our-story { padding: 70px 0; }
  .our-story-grid { gap: 36px; }
  .our-story-aside { text-align: center; }
  .our-story-aside .gold-divider { margin: 16px auto; }
  .story-team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .story-team-card { padding: 14px 10px 12px; }
  .story-team-photo-ring { width: 60px; height: 60px; }
  .story-team-info strong { font-size: 11px; }
  .story-team-info span { font-size: 9px; }
  .our-story-aside .btn-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .our-story-content p { font-size: 14px; margin-bottom: 16px; }
  .our-story-pillars {
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
  }
  .story-pillar {
    font-size: 11px;
    padding: 6px 14px;
  }

  /* ── Service Detail Sections ───────────────── */
  .svc-detail-hero { padding: 100px 0 60px; }
  .svc-detail-lead { font-size: 1.05rem; }
  .svc-detail-body { padding: 40px 16px; }
  .svc-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-intro-text { text-align: left; }
  .svc-intro-stats { max-width: 100%; }
  .svc-gems-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-gem-card { padding: 22px 20px; }
  .svc-metals-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-metal-card {
    padding: 22px 20px;
  }
  .svc-process-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .svc-process-step { padding: 24px 16px; }
  .svc-why-metals {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .svc-why-item {
    padding: 22px 16px;
  }

  /* ── Advisory Spotlight ────────────────────── */
  .advisory-spotlight { padding: 70px 0; }
  .advisory-grid { text-align: center; gap: 36px; }
  .advisory-content .gold-divider { margin: 16px auto; }
  .advisory-text { font-size: 14px; margin-bottom: 24px; }
  .advisory-feature { text-align: left; }
  .advisory-feature p { font-size: 12px; }
  .advisory-content .btn-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .advisory-visual { padding: 12px 0; }
  .adv-card { padding: 16px 18px; }

  /* ── Philosophy ────────────────────────────── */
  .philosophy { padding: 70px 0 60px; }
  .phil-universe {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 50px 0 60px;
  }
  .phil-universe-visual {
    min-height: 250px;
    order: -1;
  }
  .universe-orb { width: 200px; height: 200px; }
  .orb-core { width: 72px; height: 72px; font-size: 1.6rem; }
  .orb-dot { width: 36px; height: 36px; font-size: 0.85rem; }
  .phil-universe-content { text-align: center; }
  .phil-tag { font-size: 0.65rem; padding: 5px 14px; }
  .phil-subtitle { font-size: 1.5rem; }
  .phil-text { font-size: 0.88rem; }
  .phil-pillar {
    text-align: left;
    padding: 14px 16px;
  }
  .phil-pillar-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    font-size: 0.85rem;
  }
  .phil-tenets {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .phil-tenet {
    padding: 28px 22px;
  }
  .tenet-icon {
    width: 44px; height: 44px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  /* ── Risk Management ───────────────────────── */
  .risk-mgmt { padding: 70px 0 60px; }
  .risk-header { margin-bottom: 40px; }
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .risk-card { padding: 28px 22px; }
  .risk-icon {
    width: 48px; height: 48px;
    font-size: 1.1rem;
    margin-bottom: 16px;
  }

  /* ── Strategies ────────────────────────────── */
  .strategies { padding: 70px 0 60px; }
  .strat-tabs-wrap { margin-top: 40px; }
  .strat-tabs {
    flex-direction: column;
    border-radius: 14px;
    width: 100%;
    padding: 6px;
  }
  .strat-tab {
    text-align: center;
    padding: 12px 24px;
    font-size: 0.78rem;
    border-radius: 8px;
  }
  .strat-intro {
    flex-direction: column;
    gap: 14px;
    padding: 24px 20px;
  }
  .strat-intro h3 { font-size: 1.2rem; }
  .strat-intro p { font-size: 0.82rem; }
  .strat-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strat-card { padding: 24px 20px; }
  .strat-card h4 { font-size: 1.05rem; }
  .strat-card-icon {
    width: 44px; height: 44px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  /* ── Brokers ───────────────────────────────── */
  .brokers { padding: 70px 0 60px; }
  .brokers-hubs {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .broker-hub {
    padding: 28px 20px;
  }
  .broker-hub-flag { font-size: 2.4rem; }
  .broker-hub-header h3 { font-size: 1.6rem; }
  .broker-hub-header p { font-size: 0.72rem; }
  .broker-hub-desc { font-size: 0.82rem; margin-bottom: 24px; }
  .broker-item {
    gap: 14px;
    padding: 16px;
  }
  .broker-logo-ph {
    width: 42px; height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }
  .broker-details strong { font-size: 0.82rem; }
  .broker-details p { font-size: 0.75rem; }
  .broker-disclaimer {
    padding: 16px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* ── Testimonials ──────────────────────────── */
  .testimonials { padding: 70px 0 60px; }
  .testimonial-card { padding: 0 16px; }
  .testi-quote-icon { font-size: 1.8rem; margin-bottom: 16px; }
  .testi-text {
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
  }
  .testi-author {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .testi-avatar { width: 48px; height: 48px; font-size: 1rem; }
  .testi-stars { margin-left: 0; margin-top: 6px; }
  .carousel-controls { margin-top: 32px; gap: 14px; }
  .carousel-btn { width: 42px; height: 42px; font-size: 0.9rem; }

  /* ── Why Us ────────────────────────────────── */
  .why-us { padding: 70px 0; }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 28px 22px;
  }
  .why-icon {
    width: 46px; height: 46px;
    margin-bottom: 16px;
  }
  .why-icon i { font-size: 20px; }
  .why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .why-card p { font-size: 13px; }

  /* ── Leadership ────────────────────────────── */
  .leadership { padding: 70px 0; }
  .leadership-grid { gap: 48px; }
  .leader-card,
  .leader-card--alt {
    grid-template-columns: 1fr;
    gap: 28px;
    display: flex;
    flex-direction: column;
  }
  .leader-photo-wrap {
    order: -1 !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .leader-info {
    order: 0 !important;
    text-align: center;
  }
  .leader-name { font-size: 1.8rem; }
  .leader-bio {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .leader-quote {
    font-size: 1.05rem;
    padding-left: 16px;
    text-align: left;
  }

  /* ── Locations ─────────────────────────────── */
  .locations { padding: 70px 0; }
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .location-card {
    padding: 32px 24px;
  }

  /* ── Contact ───────────────────────────────── */
  .contact { padding: 70px 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info { text-align: center; }
  .contact-info .gold-divider { margin: 16px auto; }
  .contact-desc { font-size: 14px; }
  .contact-detail { justify-content: flex-start; }
  .contact-social { justify-content: center; }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .form-row { grid-template-columns: 1fr; }
  .form-title {
    font-size: 1.4rem;
    margin-bottom: 22px;
  }

  /* ── Footer ────────────────────────────────── */
  .footer { padding: 60px 0 0; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-brand { text-align: center; }
  .footer-brand .footer-logo-link { margin: 0 auto 16px; }
  .footer-tagline {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* ── Section headers ───────────────────────── */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .section-desc {
    font-size: 14px;
    line-height: 1.7;
  }
  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  /* ── Back-to-top ───────────────────────────── */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px; height: 42px;
    font-size: 12px;
  }
}

/* ============================================================
   SMALL MOBILE (≤480px) — TIGHTEST REFINEMENTS
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 12px; }

  /* Hero */
  .hero-content { padding: 90px 16px 50px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 14px; }
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    gap: 8px;
  }
  .hero-eyebrow .line { width: 20px; }
  .hero-stats {
    padding: 16px;
    border-radius: 14px;
  }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 9px; }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .section-desc { font-size: 13px; }

  /* Our Story */
  .our-story { padding: 50px 0; }
  .story-team-card { padding: 12px 8px 10px; }
  .story-team-photo-ring { width: 52px; height: 52px; }
  .story-team-info strong { font-size: 10px; }
  .our-story-content p { font-size: 13px; }
  .our-story-pillars { gap: 6px; }
  .story-pillar { font-size: 10px; padding: 5px 12px; }

  /* Service detail */
  .svc-detail-hero { padding: 90px 0 50px; }
  .svc-detail-lead { font-size: 0.95rem; }
  .svc-detail-body { padding: 32px 12px; }
  .svc-process-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-why-metals { grid-template-columns: 1fr; gap: 14px; }
  .svc-intro-stats { grid-template-columns: 1fr 1fr; }
  .svc-metal-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .svc-metal-tags { justify-content: center; }

  /* Biz showcase */
  .biz-header { padding: 50px 12px 32px; }
  .biz-header .section-title { font-size: 1.5rem; }
  .biz-stage { padding: 0 12px 32px; gap: 14px; }
  .biz-unit-inner { padding: 28px 20px 24px; }
  .biz-icon-ring { width: 90px; height: 90px; margin-bottom: 16px; }
  .biz-unit-canvas { width: 90px; height: 90px; }
  .biz-icon { font-size: 22px; }
  .biz-unit-num { font-size: 2.4rem; }
  .biz-unit-title { font-size: 1rem; }
  .biz-unit-sub { font-size: 9px; letter-spacing: 1.5px; }
  .biz-unit-desc { font-size: 12px; }

  /* Advisory */
  .advisory-spotlight { padding: 50px 0; }
  .advisory-text { font-size: 13px; }
  .adv-card { padding: 14px 16px; gap: 12px; }
  .adv-card-icon { width: 38px; height: 38px; }
  .adv-card-icon i { font-size: 16px; }
  .adv-card-label { font-size: 10px; }
  .adv-card-val { font-size: 13px; }

  /* Philosophy */
  .philosophy { padding: 50px 0; }
  .phil-universe { margin: 36px 0 48px; gap: 32px; }
  .universe-orb { width: 170px; height: 170px; }
  .orb-core { width: 60px; height: 60px; font-size: 1.3rem; }
  .orb-dot { width: 32px; height: 32px; font-size: 0.75rem; }
  .orb-ring-2 { inset: -20px; }
  .orb-ring-3 { inset: -40px; }
  .phil-subtitle { font-size: 1.3rem; }
  .phil-text { font-size: 0.84rem; }
  .phil-pillar-icon { width: 32px; height: 32px; min-width: 32px; font-size: 0.8rem; }
  .phil-pillar strong { font-size: 0.8rem; }
  .phil-pillar p { font-size: 0.75rem; }
  .phil-tenet { padding: 24px 18px; }
  .tenet-icon { width: 40px; height: 40px; font-size: 0.9rem; margin-bottom: 14px; }
  .tenet-number { font-size: 1.6rem; }
  .phil-tenet h4 { font-size: 1.1rem; }
  .phil-tenet p { font-size: 0.78rem; }

  /* Risk Management */
  .risk-mgmt { padding: 50px 0; }
  .risk-card { padding: 24px 18px; }
  .risk-icon { width: 44px; height: 44px; font-size: 1rem; margin-bottom: 14px; }
  .risk-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
  .risk-card p { font-size: 0.78rem; }
  .risk-metric-val { font-size: 1.3rem; }

  /* Strategies */
  .strategies { padding: 50px 0; }
  .strat-tab { padding: 10px 20px; font-size: 0.75rem; }
  .strat-intro { padding: 20px 16px; }
  .strat-intro h3 { font-size: 1.1rem; }
  .strat-panel-icon { font-size: 1.6rem; min-width: 32px; }
  .strat-card { padding: 22px 18px; }
  .strat-card-icon { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 14px; }

  /* Brokers */
  .brokers { padding: 50px 0; }
  .broker-hub { padding: 22px 16px; }
  .broker-hub-flag { font-size: 2rem; }
  .broker-hub-header h3 { font-size: 1.4rem; }
  .broker-hub-header { gap: 14px; }
  .broker-item { padding: 14px 12px; gap: 12px; flex-direction: column; align-items: flex-start; }
  .broker-logo-ph { width: 38px; height: 38px; min-width: 38px; font-size: 0.9rem; }
  .broker-details strong { font-size: 0.78rem; }
  .broker-details p { font-size: 0.72rem; }
  .broker-disclaimer { padding: 14px 16px; }
  .broker-disclaimer p { font-size: 0.72rem; }

  /* Testimonials */
  .testimonials { padding: 50px 0; }
  .testi-text { font-size: 0.95rem; }
  .testi-avatar { width: 44px; height: 44px; font-size: 0.9rem; }
  .testi-author > div strong { font-size: 0.82rem; }
  .testi-author > div p { font-size: 0.7rem; }
  .testi-stars { font-size: 0.75rem; }
  .carousel-btn { width: 38px; height: 38px; font-size: 0.8rem; }
  .carousel-dots .dot { width: 6px; height: 6px; }
  .carousel-dots .dot.active { width: 22px; }

  /* Why Us */
  .why-us { padding: 50px 0; }
  .why-card { padding: 24px 18px; }
  .why-icon { width: 42px; height: 42px; }
  .why-icon i { font-size: 18px; }
  .why-card h3 { font-size: 1rem; }
  .why-card p { font-size: 12px; }

  /* Leadership */
  .leadership { padding: 50px 0; }
  .leadership-grid { gap: 36px; }
  .leader-photo-wrap { max-width: 280px; }
  .leader-name { font-size: 1.5rem; }
  .leader-title { font-size: 10px; letter-spacing: 2.5px; }
  .leader-bio { font-size: 13px; }
  .leader-quote { font-size: 0.95rem; }
  .leader-email { font-size: 11px; }

  /* Locations */
  .locations { padding: 50px 0; }
  .location-card { padding: 28px 20px; }
  .location-icon { font-size: 1.6rem; }
  .location-card h3 { font-size: 1.15rem; }
  .location-address { font-size: 13px; }
  .location-badge { font-size: 10px; padding: 4px 12px; }

  /* Contact */
  .contact { padding: 50px 0; }
  .contact-form-wrap { padding: 22px 16px; }
  .form-title { font-size: 1.2rem; }
  .form-group label { font-size: 11px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; padding: 12px 14px; }
  .contact-detail strong { font-size: 10px; }
  .contact-detail a,
  .contact-detail span { font-size: 13px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-top { gap: 28px; margin-bottom: 28px; }
  .footer-logo-img { height: 56px; margin: 0 auto; }
  .footer-tagline { font-size: 13px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-col h4 { font-size: 10px; margin-bottom: 14px; }
  .footer-col a { font-size: 12px; margin-bottom: 10px; }
  .footer-social { justify-content: center; }
  .footer-bottom p { font-size: 11px; }
  .footer-legal a { font-size: 11px; }

  /* Buttons */
  .btn-primary { padding: 12px 24px; font-size: 11px; letter-spacing: 1px; }
  .btn-ghost { padding: 12px 24px; font-size: 11px; letter-spacing: 1px; }

  /* Back to top */
  .back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 11px; }
}

/* ============================================================
   EXTRA SMALL (≤360px) — Very small phones
   ============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 13px; }
  .stat-num { font-size: 1.4rem; }
  .section-title { font-size: 1.3rem; }

  .biz-unit-inner { padding: 22px 16px 20px; }
  .biz-unit-title { font-size: 0.95rem; }
  .biz-unit-desc { font-size: 11px; }

  .story-team-grid { grid-template-columns: 1fr; gap: 10px; }
  .story-team-card { flex-direction: row; gap: 14px; padding: 12px 14px; }
  .story-team-photo-ring { width: 48px; height: 48px; }
  .story-team-info { text-align: left; }

  .phil-subtitle { font-size: 1.15rem; }
  .universe-orb { width: 140px; height: 140px; }
  .orb-core { width: 50px; height: 50px; font-size: 1.1rem; }
  .orb-dot { width: 28px; height: 28px; font-size: 0.65rem; }
  .orb-ring-2 { inset: -14px; }
  .orb-ring-3 { inset: -28px; }

  .broker-hub-header h3 { font-size: 1.2rem; }
  .testi-text { font-size: 0.88rem; }

  .leader-name { font-size: 1.3rem; }
  .leader-photo-wrap { max-width: 240px; }
}

/* ============================================================
   TOUCH-DEVICE REFINEMENTS
   ============================================================ */
@media (hover: none) {
  /* Remove hover-only interactions for touch devices */
  .service-card:hover,
  .why-card:hover,
  .location-card:hover,
  .svc-gem-card:hover,
  .svc-metal-card:hover,
  .svc-why-item:hover,
  .risk-card:hover,
  .strat-card:hover,
  .phil-tenet:hover,
  .broker-item:hover,
  .adv-card:hover {
    transform: none;
  }

  /* Let reveal work smoothly on touch */
  .risk-card,
  .strat-card,
  .phil-tenet,
  .broker-item {
    opacity: 1 !important;
    transform: none !important;
  }
  .risk-card.revealed,
  .strat-card.revealed,
  .phil-tenet.revealed,
  .broker-item.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   LANDSCAPE MOBILE FIX
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .hero-content { padding: 80px 32px 40px; }
  .hero-scroll { display: none; }
  .hero-stats { flex-direction: row; gap: 0; }
  .stat-divider { width: 1px; height: 32px; }
}

/* ============================================================
   NAV LOGO RESIZE ON MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-logo {
    width: 160px;
    height: 44px;
  }
  .nav-logo-img {
    height: 44px;
    max-width: 160px;
  }
}
@media (max-width: 480px) {
  .nav-logo {
    width: 130px;
    height: 38px;
  }
  .nav-logo-img {
    height: 38px;
    max-width: 130px;
  }
}

/* ============================================================
   SMOOTH SCROLLBAR + PERFORMANCE
   ============================================================ */
@media (max-width: 768px) {
  /* Prevent content from breaking out */
  body {
    overflow-x: hidden;
  }
  .hero-bg::before,
  .hero-bg::after {
    display: none; /* Hide animated orbs for perf on mobile */
  }
  /* Reduce animation complexity */
  .biz-showcase::before,
  .biz-showcase::after {
    animation: none;
  }
}
