/* Estilos gerais da página Sunlive Group (index.html) — usa os tokens de tokens.css */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 96px; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--sage-bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── PARTICLES ── */
    #particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      opacity: 0;
      animation: floatUp linear infinite;
    }

    @keyframes floatUp {
      0%   { opacity: 0; transform: translateY(0) scale(0.5); }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-100vh) scale(1.2); }
    }

    /* ── CURSOR ── */
    .cursor {
      position: fixed;
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s;
      mix-blend-mode: multiply;
    }

    .cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.18s ease;
      opacity: 0.6;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 60px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s ease;
    }

    nav.scrolled {
      background: rgba(214,228,208,0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,0.6);
      box-shadow: 0 4px 32px rgba(42,61,40,0.08);
      height: 68px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--dark);
    }

    .nav-logo-img {
      height: 44px;
      object-fit: contain;
    }

    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: 0.04em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      position: relative;
      transition: color var(--t);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .nav-links a:hover { color: var(--gold-dark); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-right { display: flex; align-items: center; gap: 20px; }

    .nav-social { display: flex; gap: 14px; }
    .nav-social a {
      color: var(--text-light);
      display: flex; align-items: center;
      transition: color var(--t), transform var(--t);
    }
    .nav-social a:hover { color: var(--gold-dark); transform: scale(1.1); }
    .nav-social svg { width: 18px; height: 18px; }

    .lang-select {
      background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a7558' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
      background-size: 10px;
      border: 1px solid rgba(42,61,40,0.2);
      color: var(--text-light);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.05em;
      padding: 6px 26px 6px 12px;
      border-radius: 6px;
      cursor: pointer;
      transition: all var(--t);
      appearance: none;
      -webkit-appearance: none;
    }
    .lang-select:hover, .lang-select:focus {
      border-color: var(--gold);
      color: var(--gold-dark);
      outline: none;
    }
    html[dir="rtl"] .lang-select {
      background-position: left 10px center;
      padding: 6px 12px 6px 26px;
    }

    .hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--dark); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 120px 24px 140px;
    }

    .hero-photo-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      filter: blur(5px) saturate(0.85);
      transform: scale(1.08);
      pointer-events: none;
    }

    .hero-photo-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(214,228,208,0.55) 0%, rgba(214,228,208,0.88) 65%, var(--sage-bg) 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 120% 80% at 20% 10%, rgba(201,168,76,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 80% 90%, rgba(61,122,54,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(200,216,194,0.3) 0%, transparent 80%);
      pointer-events: none;
    }

    /* Animated rings */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.15);
      animation: expandRing 8s ease-out infinite;
      pointer-events: none;
    }
    .hero-ring:nth-child(1) { width: 400px; height: 400px; top: 50%; left: 50%; margin: -200px 0 0 -200px; animation-delay: 0s; }
    .hero-ring:nth-child(2) { width: 700px; height: 700px; top: 50%; left: 50%; margin: -350px 0 0 -350px; animation-delay: 2s; }
    .hero-ring:nth-child(3) { width: 1000px; height: 1000px; top: 50%; left: 50%; margin: -500px 0 0 -500px; animation-delay: 4s; }

    @keyframes expandRing {
      0%   { opacity: 0.5; transform: scale(0.8); }
      100% { opacity: 0; transform: scale(1.3); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      border-radius: 100px;
      padding: 8px 22px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 40px;
      box-shadow: var(--shadow-gold);
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

    .hero-logo {
      width: min(500px, 80vw);
      height: auto;
      margin-bottom: 32px;
      animation: heroLogoIn 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
      opacity: 0;
      filter: drop-shadow(0 20px 60px rgba(201,168,76,0.3));
    }

    @keyframes heroLogoIn {
      from { opacity: 0; transform: translateY(30px) scale(0.95); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 300;
      font-style: italic;
      color: var(--text);
      letter-spacing: 0.04em;
      margin-bottom: 12px;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }

    .hero-sub {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
    }

    .hero-ctas {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      opacity: 0;
      animation: fadeUp 0.8s 1.2s forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0;
      animation: fadeUp 0.8s 1.6s forwards;
    }

    .scroll-indicator span {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .scroll-mouse {
      width: 24px; height: 36px;
      border: 2px solid rgba(42,61,40,0.25);
      border-radius: 12px;
      position: relative;
    }

    .scroll-mouse::after {
      content: '';
      position: absolute;
      top: 6px; left: 50%; transform: translateX(-50%);
      width: 4px; height: 8px;
      background: var(--gold);
      border-radius: 2px;
      animation: scrollWheel 1.8s ease-in-out infinite;
    }

    @keyframes scrollWheel {
      0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
      50% { opacity: 0; transform: translateX(-50%) translateY(12px); }
    }

    /* ── BUTTONS ── */
    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
      background-size: 200% 100%;
      background-position: 100% 0;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: 0.78rem;
      letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 100px;
      border: none; cursor: pointer;
      transition: all 0.5s ease;
      box-shadow: 0 4px 24px rgba(201,168,76,0.35);
    }

    .btn-gold:hover {
      background-position: 0 0;
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(201,168,76,0.45);
    }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--glass);
      backdrop-filter: blur(12px);
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600; font-size: 0.78rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 100px;
      border: 1px solid rgba(42,61,40,0.2);
      cursor: pointer;
      transition: all var(--t);
      box-shadow: var(--shadow-soft);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.75);
      transform: translateY(-3px);
      border-color: var(--gold);
      box-shadow: var(--shadow-gold);
    }

    /* ── SECTIONS ── */
    section {
      padding: 120px 24px;
      position: relative;
    }

    .container { max-width: 1200px; margin: 0 auto; }

    .label {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }

    .label::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--gold);
    }

    .title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.05;
      color: var(--dark);
      margin-bottom: 24px;
    }

    .title em {
      font-style: italic;
      color: var(--gold-dark);
    }

    .subtitle {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 520px;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--sage-light);
      overflow: hidden;
    }

    #about::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-card-big {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 48px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .about-card-big::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    }

    .about-stat {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }

    .about-stat:last-child { margin-bottom: 0; }

    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--gold-dark);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .stat-divider {
      width: 40px; height: 1px;
      background: rgba(201,168,76,0.3);
      margin: 24px 0;
    }

    .about-visual { position: relative; padding: 0 20px 20px 0; }

    .floating-badge {
      position: absolute;
      bottom: 0; right: 0;
      max-width: calc(100% - 40px);
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--white);
      border-radius: 16px;
      padding: 20px 24px;
      box-shadow: var(--shadow-gold);
      font-weight: 700;
      font-size: 0.8rem;
      line-height: 1.4;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ── THEME ROWS (história / serviços / porquê / missão) ── */
    .theme-row { overflow: hidden; }
    #history { background: var(--sage-bg); }
    #services { background: var(--sage-light); }
    #why { background: var(--sage-bg); }
    #mission { background: var(--sage-light); }

    .theme-row-inner {
      display: flex;
      align-items: center;
      gap: 80px;
    }

    .theme-row-reverse .theme-row-inner { flex-direction: row-reverse; }

    .theme-photo {
      flex: 1 1 42%;
      aspect-ratio: 4 / 3;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .theme-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .theme-text { flex: 1 1 58%; }

    .theme-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 600;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .theme-text > p {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 560px;
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .pillar-card {
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-sm);
      padding: 20px 22px;
    }

    .pillar-card h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .pillar-card p {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.6;
      margin: 0;
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 28px;
    }

    .why-item {
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-left: 3px solid var(--gold);
      border-radius: var(--radius-sm);
      padding: 16px 22px;
    }

    .why-item h4 {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .why-item p {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.6;
      margin: 0;
    }

    .mission-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.5rem, 2.8vw, 2.2rem);
      font-weight: 500;
      color: var(--gold-dark);
      line-height: 1.5;
      max-width: 560px;
    }

    #mission { overflow: hidden; }

    .mission-photo-full {
      width: 100vw;
      position: relative;
      /* full-bleed nos dois sentidos: em RTL a margin-left fica sobre-restringida
         e é ignorada, por isso declara-se também o par direito */
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      margin-bottom: 64px;
      box-shadow: var(--shadow-lg);
    }

    .mission-photo-full img {
      width: 100%;
      height: auto;
      display: block;
    }

    .mission-text-below { text-align: center; }
    .mission-text-below .label { justify-content: center; }
    .mission-text-below .mission-quote { max-width: 760px; margin: 0 auto; }

    .mission-quote-card {
      background: var(--glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 44px 48px;
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      text-align: left;
      box-shadow: var(--shadow-soft);
    }
    .mission-quote-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
      border-radius: var(--radius) var(--radius) 0 0;
    }
    .mission-quote-card .mission-quote {
      max-width: none;
      margin: 0 0 20px 0;
    }
    html[dir="rtl"] .mission-quote-card { text-align: right; }

    .mission-author {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      margin-top: 0;
    }
    .mission-author img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: var(--shadow-gold);
    }
    .mission-author-info { text-align: left; }
    html[dir="rtl"] .mission-author-info { text-align: right; }
    .mission-author-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
    }
    .mission-author-role {
      font-size: 0.7rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ── HISTORY TIMELINE ── */
    .history-timeline {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }

    .history-item {
      display: flex;
      align-items: baseline;
      gap: 18px;
      padding: 12px 0;
      border-bottom: 1px solid var(--glass-border);
    }

    .history-item:last-child { border-bottom: none; }

    .history-year {
      flex: 0 0 auto;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--gold-dark);
      min-width: 52px;
    }

    .history-event {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ── VALUES STRIP (WHY) ── */
    .values-strip {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--glass-border);
    }

    .values-intro {
      font-size: 0.85rem;
      color: var(--text-light);
      margin-bottom: 16px;
    }

    .values-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .value-tag {
      display: inline-flex;
      align-items: center;
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 100px;
      padding: 7px 18px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: var(--gold-dark);
    }

    /* ── SLOGAN STRIP ── */
    .slogan-strip {
      background: var(--sage-light);
      padding: 28px 24px;
    }

    .slogan-strip-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 18px;
      text-align: center;
    }

    .slogan-item {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--dark);
    }

    .slogan-dot {
      color: var(--gold);
      font-size: 0.8rem;
    }

    /* ── LEADERSHIP ── */
    .leadership-header { text-align: center; margin-bottom: 56px; }

    .leaders-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
    }

    .leader-card {
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 36px 32px;
      max-width: 280px;
      text-align: center;
      box-shadow: var(--shadow-soft);
    }

    .leader-photo {
      width: 108px;
      height: 108px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 18px;
      display: block;
      border: 3px solid var(--gold);
    }

    .leader-photo-ph {
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        repeating-linear-gradient(45deg, var(--sage-light), var(--sage-light) 8px, var(--sage-bg) 8px, var(--sage-bg) 16px);
      border: 3px solid var(--glass-border);
    }

    .leader-ph-initials {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold-dark);
      letter-spacing: 0.05em;
    }

    .leader-name {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .leader-role {
      color: var(--gold-dark);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .leader-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .leader-ph-tag {
      display: inline-block;
      margin-top: 14px;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      border: 1px dashed var(--glass-border);
      border-radius: 100px;
      padding: 4px 14px;
    }

    /* ── DIVISIONS ── */
    #divisions {
      background: var(--sage-bg);
    }

    .divisions-header { text-align: center; margin-bottom: 72px; }
    .divisions-header .subtitle { margin: 0 auto; }

    .motto {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--text-muted);
      letter-spacing: 0.06em;
      margin-top: 16px;
    }

    .divisions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .div-card {
      position: relative;
      background: #c8d8c2;
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 40px 32px 32px;
      text-decoration: none;
      color: var(--dark);
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
      display: flex; flex-direction: column;
      min-height: 220px;
    }

    .div-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
      transition: height 0.5s ease;
    }

    .div-card:hover {
      transform: translateY(-8px);
      border-color: rgba(201,168,76,0.5);
      box-shadow: 0 24px 60px rgba(201,168,76,0.15), 0 8px 24px rgba(42,61,40,0.1);
    }

    .div-card:hover::before { height: 100%; }

    .div-card.disabled { opacity: 0.55; cursor: not-allowed; }
    .div-card.disabled:hover { transform: none; box-shadow: none; border-color: var(--glass-border); }
    .div-card.disabled:hover::before { height: 0; }

    .div-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .div-photo {
      width: 100%;
      height: 120px;
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
      overflow: hidden;
      background: var(--sage-light);
      position: relative;
      z-index: 1;
    }

    .div-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }

    .div-card:hover .div-photo img { transform: scale(1.08); }

    .div-photo-icon {
      background: none;
      height: auto;
      border-radius: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .div-photo-icon img {
      width: 75%;
      height: auto;
      object-fit: contain;
      margin: 0 auto;
      display: block;
    }

    .div-card.disabled .div-photo img { filter: grayscale(0.4); opacity: 0.8; }

    .div-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .div-desc {
      font-size: 0.8rem;
      color: var(--text-light);
      line-height: 1.6;
      flex: 1;
    }

    .about-card-icon {
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 16px;
    }

    .div-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-dark);
      transition: gap var(--t);
    }

    .div-card:hover .div-link { gap: 10px; }
    .div-link svg { width: 14px; height: 14px; }

    .badge-soon {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 16px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold-dark);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      width: fit-content;
    }

    /* ── NUMBERS ── */
    #numbers {
      background: var(--dark);
      overflow: hidden;
    }

    #numbers::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(61,122,54,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .numbers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .num-item {
      padding: 60px 40px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.06);
      position: relative;
    }

    .num-item:last-child { border-right: none; }

    .num-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      display: block;
    }

    .num-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 12px;
    }

    /* ── PRESENCE ── */
    #presence {
      background: var(--sage-light);
      text-align: center;
    }

    .presence-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .presence-title em { font-style: italic; color: var(--gold-dark); }

    .presence-sub {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 72px;
    }

    .countries-wrap {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .presence-network {
      max-width: 640px;
      margin: 32px auto 0;
      font-size: 0.85rem;
      line-height: 1.75;
      color: var(--text-light);
    }

    .country {
      display: flex; align-items: center; justify-content: center;
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 100px;
      padding: 14px 28px;
      box-shadow: var(--shadow-soft);
      transition: all var(--t);
    }

    .country:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-gold);
      border-color: rgba(201,168,76,0.4);
    }

    .country img { height: 40px; width: auto; display: block; }

    /* ── CONTACTS ── */
    #contacts { background: var(--sage-bg); }

    .contacts-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .contact-card {
      background: var(--glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .contact-header {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      padding: 32px 36px;
      color: var(--white);
    }

    .contact-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-header p { font-size: 0.8rem; opacity: 0.8; }

    .contact-body { padding: 36px; display: flex; flex-direction: column; gap: 24px; }

    .c-item { display: flex; align-items: flex-start; gap: 16px; }

    .c-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: rgba(201,168,76,0.1);
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .c-icon svg { width: 16px; height: 16px; color: var(--gold-dark); }

    .c-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
    .c-value { font-size: 0.9rem; color: var(--dark); text-decoration: none; transition: color var(--t); }
    a.c-value:hover { color: var(--gold-dark); }

    .map-btn {
      display: block;
      text-align: center;
      padding: 16px;
      background: rgba(201,168,76,0.08);
      border-top: 1px solid rgba(201,168,76,0.15);
      color: var(--gold-dark);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background var(--t);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }

    .map-btn:hover { background: rgba(201,168,76,0.15); }

    .contact-form-wrap { }

    .contact-form-wrap .title { font-size: clamp(2rem, 4vw, 3rem); }

    .contacts-extra { margin-top: 80px; }

    .contacts-extra-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--dark);
      text-align: center;
      margin-bottom: 24px;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 16px;
      margin-bottom: 56px;
    }

    .contacts-grid:last-child { margin-bottom: 0; }

    .mini-contact {
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-sm);
      padding: 20px 20px;
      text-align: center;
      transition: all var(--t);
    }

    .mini-contact:hover {
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-3px);
      box-shadow: var(--shadow-gold);
    }

    .mini-contact h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .mini-contact a {
      display: block;
      font-size: 0.78rem;
      color: var(--text-light);
      text-decoration: none;
      margin-top: 4px;
      transition: color var(--t);
    }

    .mini-contact a:hover { color: var(--gold-dark); }

    /* ── PARTNERS ── */
    #partners { background: var(--sage-light); }

    .partners-marquees {
      display: flex;
      flex-direction: column;
      gap: 40px;
      margin-top: 56px;
    }

    .partner-row-title {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 14px;
      text-align: center;
    }

    .marquee {
      position: relative;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
      mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    }

    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation-name: marqueeLeft;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .marquee-track.marquee-track-reverse { animation-name: marqueeRight; }

    .marquee:hover .marquee-track { animation-play-state: paused; }

    @keyframes marqueeLeft {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    @keyframes marqueeRight {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }

    .marquee-item {
      flex: 0 0 auto;
      height: 112px;
      width: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
    }

    .marquee-item img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
      transition: transform var(--t);
    }

    .marquee-item:hover img {
      transform: scale(1.1);
    }

    /* ── BOOK ── */
    #book {
      background: var(--dark);
      padding: 80px 24px;
    }

    .book-inner {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(61,122,54,0.08));
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: var(--radius);
      padding: 64px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .book-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .book-inner h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 12px;
    }

    .book-inner p {
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
      margin-bottom: 36px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 72px 24px 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 56px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      text-decoration: none;
    }

    .footer-logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      border-radius: 8px;
    }

    .footer-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--white);
    }

    .footer-brand p {
      color: rgba(255,255,255,0.45);
      font-size: 0.83rem;
      line-height: 1.8;
      max-width: 260px;
    }

    .footer-social { display: flex; gap: 10px; margin-top: 24px; }
    .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: all var(--t);
    }
    .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
    .footer-social a svg { width: 15px; height: 15px; }

    .footer-col h4 {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.83rem;
      transition: color var(--t);
    }
    .footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }

    .footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

    .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; font-size: 0.78rem; transition: color var(--t); }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    /* ── REVEAL ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal-left.in { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
    .reveal-right.in { opacity: 1; transform: translateX(0); }

    /* Mobile */
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(214,228,208,0.97);
      backdrop-filter: blur(20px);
      z-index: 400;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .mobile-menu-overlay.open { display: flex; }
    .mobile-menu-overlay a { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--dark); text-decoration: none; }
    .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; }

    @media (max-width: 1024px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .about-grid { grid-template-columns: 1fr; gap: 56px; }
      .divisions-grid { grid-template-columns: repeat(2,1fr); }
      .numbers-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      section { padding: 80px 16px; }
      .divisions-grid { grid-template-columns: 1fr; }
      .marquee-item { height: 84px; width: 160px; padding: 0 16px; }
      .contacts-wrap { grid-template-columns: 1fr; gap: 48px; }
      .hero-ctas { flex-direction: column; align-items: center; }
      .book-inner { padding: 40px 24px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; }
      .numbers-grid { grid-template-columns: repeat(2,1fr); }
      .floating-badge { position: static; margin-top: 20px; max-width: 100%; display: inline-block; }
      .about-visual { padding: 0; }
      .theme-row-inner, .theme-row-reverse .theme-row-inner { flex-direction: column; gap: 32px; }
      .theme-photo { flex-basis: auto; width: 100%; }
      .pillars-grid { grid-template-columns: 1fr; }
    }

    @media (max-height: 760px) {
      .scroll-indicator { display: none; }
      .hero { padding-bottom: 80px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .marquee-track { animation-play-state: paused !important; }
    }

    /* ── RTL (Arabic) ── */
    html[dir="rtl"] body { direction: rtl; text-align: right; }
    html[dir="rtl"] .theme-row-inner,
    html[dir="rtl"] .div-link,
    html[dir="rtl"] .hero-ctas,
    html[dir="rtl"] .contacts-extra-title { text-align: right; }
    html[dir="rtl"] .div-link svg,
    html[dir="rtl"] .btn-gold svg { transform: scaleX(-1); }
    html[dir="rtl"] .c-item { text-align: right; }
    html[dir="rtl"] .mission-quote,
    html[dir="rtl"] .presence-title,
    html[dir="rtl"] .presence-sub { text-align: center; }
    html[dir="rtl"] .about-grid .reveal-right,
    html[dir="rtl"] .theme-row-reverse .theme-row-inner { direction: rtl; }
    html[dir="rtl"] .footer-legal { direction: rtl; }
    html[dir="rtl"] .history-item { flex-direction: row-reverse; text-align: right; }
    html[dir="rtl"] .values-strip,
    html[dir="rtl"] .values-tags { text-align: right; }
    html[dir="rtl"] .leader-card { text-align: center; }
