﻿  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --green: #c45c1a; --green-light: #e07830; --green-btn: #b84e10;
    --cream: #eef3fa; --white: #ffffff; --dark: #1a1a18;
    --gray: #6b6b6b; --gray-dark: #4a4a4a; --light-gray: #dde6f2;
    --shadow-xs: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-sm: 0 4px 24px rgba(0,0,0,0.12);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-lg: 0 32px 100px rgba(0,0,0,0.16), 0 8px 32px rgba(0,0,0,0.08);
    --radius-full: 100px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --success-bg: #edf8f1;
    --success-text: #21663a;
    --error-bg: #fff1f1;
    --error-text: #a12d2d;
    --info-bg: #eef4fb;
    --info-text: #305b8a;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }
a { -webkit-tap-highlight-color: transparent; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.hamburger:focus-visible {
  outline: 3px solid rgba(184, 78, 16, 0.24);
  outline-offset: 3px;
}

  /* SVG icon helper */
  .icon { display: inline-flex; align-items: center; justify-content: center; }
  .icon svg { width: 1em; height: 1em; fill: currentColor; }

  /* NAV */
  /* NAV HEADER â€” fixed, same row as island */
  .nav-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 20px 40px; background: transparent;
    pointer-events: none;
  }
  .nav-header-left { display: flex; align-items: flex-start; gap: 20px; min-width: 0; }
  .nav-header a,
  .nav-header .hamburger { pointer-events: all; }
  /* FLOATING ISLAND â€” fixed in center, same top */
  .nav-island-fixed {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%);
    z-index: 300;
    height: 80px; display: flex; align-items: center;
  }
  .nav-logo { text-decoration: none; display: flex; align-items: center; }
  .nav-logo-img { height: 200px; width: auto; display: block; margin-top: -65px; }
  
.nav-island {
    display: flex; gap: 2px; list-style: none;
    background: rgba(255,255,255,0.65); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius-full);
    padding: 8px 10px; box-shadow: var(--shadow-sm);
  }
  .nav-island li a {
    text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 500;
    padding: 10px 18px; border-radius: 100px; display: block;
    transition: background 0.2s, color 0.2s; white-space: nowrap;
  }
  .nav-island li a:hover, .nav-island li a.active { background: var(--green-btn); color: var(--white); }
  .nav-cta {
    background: var(--green-btn); color: var(--white); border: none; border-radius: 100px;
    padding: 10px 22px; font-size: 13px; font-weight: 500;
    cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--green-light); }

  /* HERO */
  #home {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 40px 80px;
    background: url('./10a12ea3-45e3-4f9b-a2d4-7d2d0a93d99e.jpg') center/cover no-repeat;
    position: relative; overflow: hidden;
  }
  #home::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,78,16,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  #home h1 { color: #ffffff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
  #home h1 em { color: var(--green-light); }
#home .hero-sub { color: rgba(255,255,255,0.95); text-shadow: 0 2px 8px rgba(0,0,0,0.6); font-weight: 500; }
  #home .hero-tagline { color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
  #home .hero-badge { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(184,78,16,0.1); border: 1px solid rgba(184,78,16,0.2);
    border-radius: var(--radius-full); padding: 6px 16px;
    font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.5px; margin-bottom: 28px;
    animation: badgePulse 2s ease-in-out infinite;
  }
  @keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
  }
  .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
  #home h1 {
    font-family: 'Playfair Display', serif; font-size: clamp(42px, 7vw, 88px);
    font-weight: 700; line-height: 1.05; letter-spacing: -2px; color: var(--dark); margin-bottom: 24px;
 max-width: 800px;
  }
  #home h1 em { color: var(--green); font-style: normal; }
  #home .hero-sub {
    font-size: clamp(15px, 2vw, 18px); color: var(--gray-dark); max-width: 560px; line-height: 1.7; margin-bottom: 16px;

  }
  .hero-tagline {
    font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 40px; letter-spacing: 0.3px;
 display: flex; align-items: center; gap: 10px; justify-content: center; flex-wrap: wrap;
  }
  .hero-tagline .icon { font-size: 16px; color: var(--green-btn); }
  .hero-btns {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
 margin-bottom: 64px;
  }
  .btn-green {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-btn); color: var(--white); border: none; border-radius: 100px;
    padding: 14px 32px; font-size: 14px; font-weight: 500;
    cursor: pointer; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.2s;
  }
  .btn-green:hover { background: var(--green-light); transform: translateY(-1px); }
  .btn-outline {
    display: inline-block; background: transparent; color: var(--dark);
    border: 1.5px solid rgba(26,26,24,0.25); border-radius: 100px;
    padding: 14px 32px; font-size: 14px; font-weight: 500;
    cursor: pointer; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: border-color 0.2s, transform 0.2s;
  }
  .btn-outline:hover { border-color: var(--dark); transform: translateY(-1px); }
.hero-mockup {
    max-width: 720px; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .mockup-bar { background: #2a2a27; height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 16px; }
  .mdot { width: 11px; height: 11px; border-radius: 50%; }
  .mdot:nth-child(1){background:#ff5f57}.mdot:nth-child(2){background:#febc2e}.mdot:nth-child(3){background:#28c840}
  .mockup-body {
    background: linear-gradient(145deg, #8b2800 0%, #b84e10 30%, #d06020 60%, #e87828 100%);
    height: 280px; position: relative; overflow: hidden;
    display: flex; align-items: flex-start; padding: 28px; gap: 20px;
  }
  .m-card { background: rgba(255,255,255,0.95); border-radius: 14px; padding: 20px 22px; min-width: 180px; }
  .m-card .big { font-family:'Playfair Display',serif; font-size:38px; font-weight:700; color:var(--green-btn); }
  .m-card .lbl { font-size:11px; color:var(--gray); margin-top:3px; }
  .m-card .mini-chart { margin-top:12px; }
  .m-card2 { background: rgba(255,255,255,0.88); border-radius: 14px; padding: 16px 20px; min-width: 150px; margin-top: 40px; }
  .m-card2 .lbl2 { font-size:11px; color:var(--gray); margin-bottom:6px; }
  .m-card2 .val { font-size:22px; font-weight:700; color:var(--dark); }
  .m-dots-grid { position:absolute; right:32px; top:32px; display:grid; grid-template-columns:repeat(7,1fr); gap:12px; }
  .m-dots-grid span { width:5px;height:5px;border-radius:50%;background:rgba(255,255,255,0.4);display:block; }



  /* SHARED */
  section { scroll-margin-top: 80px; }
  .section-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
  .section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: block; }
  .section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
  .section-sub { color: var(--gray); font-size: 15px; line-height: 1.7; max-width: 560px; margin-bottom: 52px; }

  /* ABOUT */
  #about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
    border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, #b84e10 0%, #d06020 40%, #e07030 70%, #f09050 100%);
    aspect-ratio: 1; position: relative; display: flex; align-items: center; justify-content: center;
  }
  .av-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .av-ring {
    border-radius: 50%; border: 2px solid rgba(255,255,255,0.25);
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: spin 12s linear infinite;
  }
  .av-ring:nth-child(1){width:240px;height:240px}
  .av-ring:nth-child(2){width:175px;height:175px;animation-direction:reverse;animation-duration:8s}
  .av-ring:nth-child(3){width:110px;height:110px;animation-duration:6s}
  .av-core {
    width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.95);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    color: var(--green-btn);
  }
  .av-core svg { width: 32px; height: 32px; }
  @keyframes spin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
  .spec-list { list-style: none; margin-bottom: 28px; }
  .spec-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 14px; line-height: 1.6; }
  .spec-list li:last-child { border-bottom: none; }
  .spec-bullet { width: 20px; height: 20px; border-radius: 50%; background: var(--green-btn); color: white; font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-weight: 700; }
  .mission-box { background: var(--cream); border-radius: 14px; padding: 22px 24px; }
  .mission-box p { font-size: 14px; color: var(--dark); line-height: 1.7; }
  .mission-box strong { color: var(--green-btn); }

  /* APPROACH */
  #approach { background: linear-gradient(160deg, #f5f2ed 0%, #eae6de 40%, #e0dbd0 100%); position: relative; overflow: hidden; }
  #approach .section-label { color: var(--green); }
  #approach .section-h2 { color: var(--dark); }
  #approach .section-sub { color: var(--gray); max-width: 500px; }
  .approach-bg-dots { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
  .principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle { background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 32px 28px; transition: all 0.3s ease; }
.principle:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
  .principle-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--green-btn); line-height: 1; margin-bottom: 16px; }
  .principle-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-btn); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: white; }
  .principle-icon svg { width: 22px; height: 22px; }
  .principle h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
  .principle p { font-size: 13px; color: var(--gray); line-height: 1.7; }
  .approach-note { margin-top: 40px; padding: 24px 28px; background: rgba(255,255,255,0.6); border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); }
  .approach-note p { font-size: 14px; color: var(--gray); line-height: 1.7; }
  .approach-note strong { color: var(--dark); }

  /* SERVICES */
  #services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 28px; border: 1px solid var(--light-gray); position: relative; overflow: hidden; transition: all 0.3s ease; }
  .service-card::after { display: none; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

  .service-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--green-btn), var(--green-light)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: white; }
  .service-icon svg { width: 24px; height: 24px; }
  .service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

  /* land sep */
  .land-sep { height: 260px; overflow: hidden; position: relative; background: linear-gradient(180deg, #c05018 0%, #d06020 20%, #d07030 40%, #e08040 55%, #c85820 70%, #b04010 100%); }
  .land-sep svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

  /* TEAM */
  #team { background: linear-gradient(160deg, #f5f2ed 0%, #eae6de 40%, #e0dbd0 100%); }
  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .team-text p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
  .team-quote { background: linear-gradient(135deg, var(--green-btn), var(--green-light)); border-radius: 20px; padding: 40px 36px; color: var(--white); margin-top: 8px; }
  .team-quote blockquote { font-family: 'Playfair Display', serif; font-size: clamp(17px, 2vw, 22px); line-height: 1.5; margin-bottom: 18px; }
  .team-quote cite { font-size: 13px; opacity: 0.75; font-style: normal; }
  .team-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .value-card { background: var(--cream); border-radius: 14px; padding: 24px 20px; border: 1px solid var(--light-gray); }
  .value-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-btn); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: white; }
  .value-icon svg { width: 20px; height: 20px; }
  .value-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
  .value-card p { font-size: 12px; color: var(--gray); line-height: 1.6; }
  

  /* CONTACT */
  #contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
  .contact-info h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--light-gray); }
  .contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .c-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-btn); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .c-icon svg { width: 20px; height: 20px; }
  .c-label { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
  .c-val { font-size: 14px; font-weight: 500; color: var(--dark); }
  .contact-form-wrap h3 { font-size: 20px; font-weight: 600; margin-bottom: 24px; }
  .form-intro { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
  .form-status {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.6;
    border: 1px solid transparent;
  }
  .form-status.is-visible { display: block; }
  .form-status.is-success { background: var(--success-bg); color: var(--success-text); border-color: rgba(33, 102, 58, 0.14); }
  .form-status.is-error { background: var(--error-bg); color: var(--error-text); border-color: rgba(161, 45, 45, 0.14); }
  .form-status.is-info { background: var(--info-bg); color: var(--info-text); border-color: rgba(48, 91, 138, 0.14); }
  .form-group { margin-bottom: 16px; }
  .form-group label { font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: 0.5px; display: block; margin-bottom: 6px; }
  .form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--light-gray); border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 14px; background: var(--white); color: var(--dark); transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group textarea:focus { border-color: var(--green-btn); }
  .form-group textarea { height: 120px; resize: vertical; }
  .form-group.error input, .form-group.error textarea { border-color: #d74949; background: #fffafa; }
  .form-group.error label, .form-group.error .form-error { color: #b03333; }
  .form-error { margin-top: 6px; font-size: 12px; line-height: 1.4; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  button[disabled] { opacity: 0.7; cursor: wait; }
  .contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }
  .contact-actions .btn-green,
  .contact-actions .btn-outline { justify-content: center; text-align: center; }
  .submissions-panel {
    margin-top: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
    background: rgba(255, 255, 255, 0.78);
  }
  .submissions-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  .submissions-panel-header h4 { font-size: 15px; font-weight: 600; }
  .submissions-clear { padding: 10px 16px; }
  .submissions-empty { font-size: 13px; color: var(--gray); }
  .submissions-list { display: grid; gap: 12px; }
  .submission-item {
    padding: 16px;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    background: var(--white);
  }
  .submission-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--gray);
  }
  .submission-name { font-size: 14px; font-weight: 600; color: var(--dark); }
  .submission-subject { font-size: 12px; color: var(--green-btn); text-transform: uppercase; letter-spacing: 0.7px; margin: 6px 0; }
  .submission-message { font-size: 13px; color: var(--gray-dark); line-height: 1.6; white-space: pre-wrap; }

/* MOBILE HAMBURGER */
  .hamburger {
    display: none; flex-direction: column; gap: 4px; width: 24px; height: 20px; cursor: pointer; padding: 4px; z-index: 400;
  }
  .hamburger span { width: 100%; height: 3px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .nav-mobile {
    position: fixed; top: 100px; left: 0; right: 0; background: var(--white); border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-sm); transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: all 0.3s ease; padding: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 350;
  }
  .nav-mobile.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-mobile a { padding: 12px 20px; border-radius: var(--radius-xs); font-weight: 500; text-decoration: none; color: var(--dark); transition: background 0.2s; }
  .nav-mobile a:hover, .nav-mobile a.active { background: var(--green-btn); color: var(--white); }

  @media (max-width: 640px) {
    .hamburger { display: flex; }
    .nav-island-fixed { display: none !important; }
  }

  /* FOOTER */
  footer { background: linear-gradient(160deg, #f5f2ed 0%, #eae6de 40%, #e0dbd0 100%); color: var(--dark); padding: 56px 40px 28px; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(0,0,0,0.1); flex-wrap: wrap; gap: 32px; }
  .footer-brand .f-logo { margin-bottom: 10px; }
  
  .footer-brand p { font-size: 13px; color: var(--gray); max-width: 260px; line-height: 1.6; }
  .footer-links-group h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
  .footer-links-group ul { list-style: none; }
  .footer-links-group li { margin-bottom: 10px; }
  .footer-links-group a { font-size: 13px; color: var(--dark); text-decoration: none; transition: color 0.2s; }
  .footer-links-group a:hover { color: var(--green-btn); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: var(--gray); }
  [hidden] { display: none !important; }

  @media (max-width: 900px) {
    .about-grid,.contact-grid,.team-grid{grid-template-columns:1fr}
    .principles{grid-template-columns:1fr}
    .services-grid{grid-template-columns:1fr 1fr}
    .team-values{grid-template-columns:1fr 1fr}
    .contact-actions { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    .nav-header{padding:12px 16px; align-items:center; gap:12px}
    .nav-header-left{align-items:center; gap:10px; flex:1}
    .nav-logo-img{height:92px; margin-top:0}
    .nav-cta{padding:10px 14px; font-size:12px}
    .nav-island-fixed{display:none}
    .section-inner{padding:72px 20px}
    .services-grid,.team-values{grid-template-columns:1fr}
    #home{padding:100px 20px 60px}
    .footer-top{flex-direction:column}
    .form-row{grid-template-columns:1fr}
    .submission-meta,
    .submissions-panel-header { flex-direction: column; align-items: flex-start; }
  }

  /* TEAM MEMBERS GRID */
    .team-members {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 24px 32px;
    justify-items: center;
    margin-top: 56px;
  }
.member-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all 0.3s ease;
  }
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .member-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
    display: block;
  }
  .member-info {
    padding: 20px 18px 22px;
    border-top: 3px solid var(--green-btn);
  }
  .member-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
  .member-role { font-size: 12px; font-weight: 600; color: var(--green-btn); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
  .member-tags { display: flex; flex-wrap: wrap; gap: 5px; }
  .member-tag {
    font-size: 10px; padding: 3px 8px; border-radius: 100px;
    background: var(--cream); color: var(--gray); font-weight: 500;
    border: 1px solid var(--light-gray);
  }
  @media (max-width: 900px) { .team-members { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .team-members { grid-template-columns: 1fr 1fr; gap: 14px; } }

  /* SOCIAL LINKS */
  .social-links { display: flex; gap: 10px; align-items: center; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 8px;
    border: 1px solid var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .social-btn svg { width: 16px; height: 16px; }
.member-socials { display: flex; gap: 8px; margin-top: 12px; justify-content: center; }
.social-btn { 
  width: 32px; height: 32px; border-radius: var(--radius-xs); 
  border: 1px solid var(--light-gray); display: flex; align-items: center; justify-content: center; 
  color: var(--dark); text-decoration: none; transition: all 0.2s ease; }
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--green-btn); color: white; border-color: var(--green-btn); transform: translateY(-1px); }
.social-btn:hover { background: var(--green-btn); color: white; border-color: var(--green-btn); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
