:root {
      --red:    #C8102E;
      --red2:   #a00d24;
      --green:  #006233;
      --green2: #004d27;
      --green3: #003320;
      --white:  #F8F5F0;
      --cream:  #fdf9f4;
      --gold:   #c9a84c;
      --gold2:  #a8893a;
      --dark:   #0d1a0f;
      --dark2:  #111f13;
      --text:   #1a2e1d;
      --muted:  #6b7a6d;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Cairo', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: linear-gradient(var(--green), var(--gold)); border-radius: 3px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px;
      height: 80px;
      background: rgba(13,26,15,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,98,51,0.3);
      transition: box-shadow .3s;
    }
    .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-logo img {
      height: 46px; width: 46px; border-radius: 12px;
      border: 2px solid var(--green); object-fit: cover;
    }
    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem; font-weight: 900; letter-spacing: 1px;
      background: linear-gradient(135deg, var(--white), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: .88rem; font-weight: 600;
      color: rgba(248,245,240,0.7); text-decoration: none;
      letter-spacing: .5px; transition: color .3s; position: relative;
    }
    .nav-links a.active { color: var(--gold); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform .3s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-cta {
      padding: 10px 28px; background: var(--green); color: var(--white);
      border-radius: 50px; font-weight: 700; font-size: .88rem;
      text-decoration: none; letter-spacing: .5px; transition: all .3s;
      box-shadow: 0 0 20px rgba(0,98,51,0.4);
    }
    .nav-cta:hover { background: var(--red); box-shadow: 0 0 20px rgba(200,16,46,0.4); transform: translateY(-2px); }

    /* ─── PAGE HERO ─── */
    .page-hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 120px 60px 80px;
      text-align: center;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 20% 30%, rgba(0,98,51,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(200,16,46,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
    }
    /* Grid overlay */
    .page-hero::after {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(0,98,51,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,98,51,0.07) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .hero-inner { position: relative; z-index: 2; max-width: 800px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
      padding: 7px 22px; border-radius: 50px; margin-bottom: 32px;
      font-size: .82rem; font-weight: 700; color: var(--gold);
      letter-spacing: 2px; text-transform: uppercase;
      animation: fadeUp .7s ease both;
    }
    .hero-eyebrow::before { content: '✦'; font-size: .7rem; }
    .hero-eyebrow::after { content: '✦'; font-size: .7rem; }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 7vw, 6.5rem);
      font-weight: 900; color: var(--white);
      line-height: 1.05; margin-bottom: 24px;
      animation: fadeUp .85s ease both;
    }
    .hero-title em {
      font-style: italic; color: var(--gold);
    }
    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      color: rgba(248,245,240,0.55); font-weight: 300;
      line-height: 1.8; max-width: 600px; margin: 0 auto 48px;
      animation: fadeUp 1s ease both;
    }
    .hero-scroll {
      display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(248,245,240,0.3); font-size: .78rem; letter-spacing: 1.5px;
      animation: fadeUp 1.2s ease both;
    }
    .scroll-line {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    /* floating decorative shapes */
    .deco-circle {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .deco-1 {
      width: 400px; height: 400px;
      border: 1px solid rgba(0,98,51,0.15);
      top: 50%; left: 5%; transform: translateY(-50%);
      animation: rotateSlow 40s linear infinite;
    }
    .deco-2 {
      width: 250px; height: 250px;
      border: 1px solid rgba(201,168,76,0.1);
      bottom: 10%; right: 8%;
      animation: rotateSlow 30s linear infinite reverse;
    }

    /* ─── SECTION SHARED ─── */
    section { padding: 100px 60px; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .78rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--green);
      margin-bottom: 16px;
    }
    .section-tag::before { content: ''; width: 30px; height: 2px; background: var(--green); }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 900; color: var(--dark); line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-body {
      font-size: 1.05rem; color: var(--muted); line-height: 1.9;
      max-width: 560px;
    }

    /* ─── STORY SECTION ─── */
    .story {
      background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .story-visual {
      position: relative;
    }
    .story-img-main {
      width: 100%; border-radius: 24px; overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.15);
      aspect-ratio: 4/5; position: relative;
    }
    .story-img-main img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .story-img-main::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,26,15,0.5) 0%, transparent 50%);
    }
    .story-img-float {
      position: absolute; bottom: -30px; left: -30px;
      width: 200px; border-radius: 16px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      border: 4px solid var(--white);
    }
    .story-img-float img { width: 100%; height: 130px; object-fit: cover; display: block; }
    .story-badge-float {
      position: absolute; top: 28px; right: -20px;
      background: var(--dark); color: var(--white);
      border-radius: 16px; padding: 16px 20px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
      border: 1px solid rgba(0,98,51,0.3);
      text-align: center; min-width: 130px;
    }
    .story-badge-float .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900; color: var(--gold);
      display: block; line-height: 1;
    }
    .story-badge-float .lbl { font-size: .78rem; color: rgba(248,245,240,0.5); margin-top: 4px; }

    .story-text .section-body { margin-bottom: 32px; }
    .story-highlights { display: flex; flex-direction: column; gap: 16px; }
    .highlight-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; background: var(--white);
      border-radius: 14px; border: 1px solid rgba(0,98,51,0.08);
      transition: all .3s;
    }
    .highlight-item:hover {
      border-color: rgba(0,98,51,0.25);
      box-shadow: 0 8px 32px rgba(0,98,51,0.08);
      transform: translateX(-4px);
    }
    .hi-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--green), var(--green2));
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hi-icon svg { color: #fff; }
    .hi-text h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .hi-text p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--dark);
      padding: 80px 60px;
      position: relative; overflow: hidden;
    }
    .stats-strip::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,98,51,0.15) 0%, transparent 70%);
    }
    .stats-grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2px;
    }
    .stat-card {
      text-align: center; padding: 48px 24px;
      border-left: 1px solid rgba(255,255,255,0.06);
      transition: background .3s;
    }
    .stat-card:first-child { border-left: none; }
    .stat-card:hover { background: rgba(255,255,255,0.03); }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, var(--white), var(--gold));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }
    .stat-label { font-size: .9rem; color: rgba(248,245,240,0.45); letter-spacing: .5px; }
    .stat-divider {
      width: 40px; height: 2px;
      background: linear-gradient(to right, var(--green), transparent);
      margin: 12px auto;
    }

    /* ─── TEAM ─── */
    .team { background: var(--white); }
    .team-header { text-align: center; margin-bottom: 64px; }
    .team-header .section-tag { justify-content: center; }
    .team-header .section-tag::before { display: none; }
    .team-header .section-title { margin: 0 auto 16px; }
    .team-header .section-body { margin: 0 auto; text-align: center; }

    .team-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 32px; max-width: 1000px; margin: 0 auto;
    }
    .team-card {
      border-radius: 20px; overflow: hidden;
      background: var(--cream);
      border: 1px solid rgba(0,98,51,0.08);
      transition: all .4s;
      position: relative;
    }
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.1);
      border-color: rgba(0,98,51,0.2);
    }
    .team-photo {
      width: 100%; aspect-ratio: 1; overflow: hidden; position: relative;
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
    .team-card:hover .team-photo img { transform: scale(1.05); }
    .team-photo::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,26,15,0.6) 0%, transparent 50%);
    }
    .team-role-badge {
      position: absolute; bottom: 16px; right: 16px; z-index: 2;
      background: var(--green); color: #fff;
      font-size: .75rem; font-weight: 700; letter-spacing: .5px;
      padding: 5px 14px; border-radius: 50px;
    }
    .team-info { padding: 24px; }
    .team-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .team-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

    /* ─── VALUES ─── */
    .values {
      background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; padding: 0;
    }
    .values-left {
      background: var(--dark);
      padding: 100px 80px; position: relative; overflow: hidden;
    }
    .values-left::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 80% at 20% 80%, rgba(0,98,51,0.2) 0%, transparent 60%);
    }
    .values-left .section-tag { color: var(--gold); }
    .values-left .section-tag::before { background: var(--gold); }
    .values-left .section-title { color: var(--white); }
    .values-left .section-body { color: rgba(248,245,240,0.5); }
    .values-right { padding: 100px 80px; display: flex; flex-direction: column; gap: 28px; justify-content: center; }
    .value-item {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 28px; border-radius: 16px;
      background: var(--white); border: 1px solid rgba(0,98,51,0.08);
      transition: all .3s;
    }
    .value-item:hover {
      border-color: rgba(0,98,51,0.2);
      box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    }
    .value-icon {
      width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .vi-green { background: linear-gradient(135deg, #006233, #004d27); }
    .vi-red { background: linear-gradient(135deg, #C8102E, #a00d24); }
    .vi-gold { background: linear-gradient(135deg, #c9a84c, #a8893a); }
    .vi-dark { background: linear-gradient(135deg, #1a2e1d, #0d1a0f); }
    .value-text h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
    .value-text p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

    /* ─── GALLERY ─── */
    .gallery { background: var(--dark); padding: 100px 60px; }
    .gallery-header { text-align: center; margin-bottom: 56px; }
    .gallery-header .section-tag { justify-content: center; color: var(--gold); }
    .gallery-header .section-tag::before { background: var(--gold); }
    .gallery-header .section-title { color: var(--white); margin: 0 auto 16px; }
    .gallery-header .section-body { color: rgba(248,245,240,0.45); margin: 0 auto; text-align: center; }

    .gallery-mosaic {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 16px;
      max-width: 1200px; margin: 0 auto;
    }
    .gal-item {
      border-radius: 16px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gal-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s;
    }
    .gal-item:hover img { transform: scale(1.06); }
    .gal-item::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(13,26,15,0.3);
      transition: opacity .3s; opacity: 0;
    }
    .gal-item:hover::after { opacity: 1; }
    .gal-item.tall { grid-row: span 2; }
    .gal-overlay {
      position: absolute; inset: 0; z-index: 2;
      display: flex; align-items: flex-end;
      padding: 20px; opacity: 0; transition: opacity .3s;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }
    .gal-label {
      background: rgba(0,98,51,0.85); color: #fff;
      font-size: .82rem; font-weight: 700; padding: 8px 16px;
      border-radius: 8px; letter-spacing: .3px;
    }

    /* ─── MAP SECTION ─── */
    .map-section { background: var(--cream); padding: 100px 60px; }
    .map-header { margin-bottom: 56px; }
    .map-wrapper {
      display: grid; grid-template-columns: 1fr 2fr;
      gap: 40px; align-items: start;
    }
    .map-info { }
    .map-info .section-body { margin-bottom: 36px; }
    .contact-cards { display: flex; flex-direction: column; gap: 16px; }
    .contact-card {
      display: flex; align-items: center; gap: 16px;
      padding: 20px; background: var(--white); border-radius: 14px;
      border: 1px solid rgba(0,98,51,0.1);
      transition: all .3s;
    }
    .contact-card:hover {
      border-color: rgba(0,98,51,0.25);
      box-shadow: 0 8px 24px rgba(0,98,51,0.08);
    }
    .cc-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: linear-gradient(135deg, var(--green), var(--green2));
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .cc-text h4 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
    .cc-text p { font-size: .82rem; color: var(--muted); }

    .map-embed {
      border-radius: 24px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.12);
      border: 1px solid rgba(0,98,51,0.1);
      height: 480px; position: relative;
    }
    .map-embed iframe {
      width: 100%; height: 100%; border: none; display: block;
    }
    .map-pin-info {
      position: absolute; bottom: 20px; right: 20px;
      background: var(--dark); color: var(--white);
      border-radius: 14px; padding: 16px 20px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
      border: 1px solid rgba(0,98,51,0.3);
      display: flex; align-items: center; gap: 12px;
      font-size: .85rem; font-weight: 600;
    }
    .map-pin-dot { width: 10px; height: 10px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }

    /* ─── CTA SECTION ─── */
    .cta-about {
      background: var(--dark); text-align: center;
      padding: 120px 60px; position: relative; overflow: hidden;
    }
    .cta-about::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,98,51,0.2) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,16,46,0.1) 0%, transparent 60%);
    }
    .cta-about-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
    .cta-about .section-tag { justify-content: center; color: var(--gold); }
    .cta-about .section-tag::before { background: var(--gold); }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900; color: var(--white); line-height: 1.1;
      margin-bottom: 20px;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-sub { font-size: 1.05rem; color: rgba(248,245,240,0.5); line-height: 1.8; margin-bottom: 48px; }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-gold {
      padding: 16px 44px; background: var(--gold);
      color: var(--dark); border-radius: 50px;
      font-weight: 800; font-size: 1rem; text-decoration: none;
      letter-spacing: .3px; transition: all .3s;
      box-shadow: 0 8px 32px rgba(201,168,76,0.3);
    }
    .btn-gold:hover { background: #d4b35a; transform: translateY(-3px); box-shadow: 0 16px 48px rgba(201,168,76,0.4); }
    .btn-outline-light {
      padding: 16px 44px; background: transparent;
      color: rgba(248,245,240,0.7); border-radius: 50px;
      font-weight: 600; font-size: 1rem; text-decoration: none;
      border: 1.5px solid rgba(248,245,240,0.2); transition: all .3s;
      letter-spacing: .3px;
    }
    .btn-outline-light:hover { border-color: rgba(248,245,240,0.5); color: var(--white); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark2);
      border-top: 1px solid rgba(0,98,51,0.2);
      padding: 60px 60px 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand img {
      height: 44px; width: 44px; border-radius: 10px;
      border: 2px solid rgba(0,98,51,0.4); margin-bottom: 16px;
    }
    .footer-brand p { font-size: .88rem; color: rgba(248,245,240,0.4); line-height: 1.8; max-width: 260px; }
    .footer-col h4 { font-size: .88rem; font-weight: 700; color: rgba(248,245,240,0.6); margin-bottom: 20px; letter-spacing: .5px; }
    .footer-col a {
      display: block; font-size: .85rem; color: rgba(248,245,240,0.35);
      text-decoration: none; margin-bottom: 10px; transition: color .2s;
    }
    .footer-col a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: .82rem; color: rgba(248,245,240,0.3);
    }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 36px; height: 36px; background: rgba(255,255,255,0.06);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: rgba(248,245,240,0.4); text-decoration: none; transition: all .3s;
    }
    .social-link:hover { background: var(--green); color: #fff; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .6; transform: scale(1.3); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: .3; }
      50%       { opacity: 1; }
    }
    @keyframes rotateSlow {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    @keyframes counterUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: all .8s cubic-bezier(.16,1,.3,1); }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .story { grid-template-columns: 1fr; gap: 48px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .values { grid-template-columns: 1fr; }
      .map-wrapper { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-item.tall { grid-row: span 1; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 24px; }
      .nav-links, .nav-cta { display: none; }
      section { padding: 64px 24px; }
      .page-hero { padding: 100px 24px 60px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .gallery-mosaic { grid-template-columns: 1fr; }
    }
/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,98,51,0.4);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: background .3s;
  flex-shrink: 0;
}
.hamburger:hover { background: rgba(0,98,51,0.25); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #f8f5f0;
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(13,26,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,98,51,0.3);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 99;
  animation: slideDown .25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  color: rgba(248,245,240,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all .2s;
  font-family: 'Cairo', sans-serif;
}
.mobile-menu a:hover { background: rgba(0,98,51,0.2); color: #fff; }
.mobile-menu a.active { color: var(--gold, #c8a84b); }
.nav-cta-mobile {
  margin-top: 8px;
  background: var(--green, #006233) !important;
  color: #fff !important;
  text-align: center;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — about.css
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 16px !important; height: 60px !important; }
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .about-hero { padding: 90px 20px 50px !important; }
  .about-hero h1 { font-size: 2rem !important; }
  .about-hero p { font-size: .9rem !important; }
  .section-wrapper { padding: 50px 20px !important; }
  .team-grid, .values-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .two-col-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  footer { padding: 40px 20px 24px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}
@media (max-width: 400px) {
  .team-grid, .values-grid, .stats-grid { grid-template-columns: 1fr !important; }
}
