.team-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0; top:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.7);
  overflow-y:auto; /* ✅ ADD THIS */
}


.value-text ul li
{
    color: var(--muted-fg);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
	}

.team-modal-content{
  background:#fff;
  margin:3% auto;
  padding:30px;
  width:95%;
  max-width:1100px;
  position:relative;

  max-height:90vh;   /* ✅ ADD */
  overflow-y:auto;   /* ✅ ADD */
}

.team-close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  cursor:pointer;
}

/* LAYOUT */
.team-layout{
  display:grid;
   grid-template-columns:250px 1fr;
  gap:30px;
  align-items:start;
}

/* LEFT */
.team-left img{
  width:100%;
  margin-bottom:15px;
}

.team-left h3{
  font-size:22px;
      font-family: 'AF Holdings Serif New';
  text-align:center;
  margin:10px 0 5px;
}

.team-left p{
  color:#777;
  text-align:center;
}

/* CENTER */
.team-center{
  line-height:1.8;

}

/* RIGHT */
.team-right{
  background:#f2f2f2;
  padding:20px;
}

.team-right a{
  display:block;
  padding:14px;
  text-align:center;
  color:#fff;
  margin-bottom:15px;
  text-decoration:none;
  font-weight:600;
}

.btn-whatsapp{ background:#1ebc43; }
.btn-email{ background:#4a49a8; }
.btn-properties{ background:#2b2b2b; }

/* MOBILE */
@media(max-width:768px){
  .team-layout{
    grid-template-columns:1fr;
  }
}
  

    /* ── EXACT CSS VARS from index.css ── */
    :root {
      --background:       hsl(220, 20%, 97%);
      --foreground:       #333;
      --card:             hsl(0, 0%, 100%);
      --primary:          hsl(228, 60%, 20%);
      --primary-95:       hsla(228, 60%, 20%, 0.95);
      --primary-90:       hsla(228, 60%, 20%, 0.90);
      --primary-85:       hsla(228, 60%, 20%, 0.85);
      --primary-70:       hsla(228, 60%, 20%, 0.70);
      --primary-40:       hsla(228, 60%, 20%, 0.40);
      --primary-05:       hsla(228, 60%, 20%, 0.05);
      --accent:           hsl(45, 80%, 55%);
      --accent-90:        hsla(45, 80%, 55%, 0.90);
      --accent-10:        hsla(45, 80%, 55%, 0.10);
      --muted:            hsl(220, 14%, 92%);
      --muted-fg:         #333;
      --border:           hsl(220, 13%, 88%);
      --white-70:         rgba(255,255,255,0.70);
      --white-60:         rgba(255,255,255,0.60);
      --white-40:         rgba(255,255,255,0.40);
      --white-30:         rgba(255,255,255,0.30);
      --white-10:         rgba(255,255,255,0.10);
    }

    /* ── RESET / BASE ── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
    font-family: AF Arizona Flare;
      background-color: var(--background);
      color: var(--foreground);
      margin: 0;
    font-size: 1pc;
    font-weight: 300;
    letter-spacing: .64px;
        line-height: 1.7;
      
    }
    a { text-decoration: none; }

    /* ── UTILS ── */
    .font-serif  { font-family: 'Playfair Display', serif !important; }
    .font-sans   { font-family: 'Inter', sans-serif !important; }
    .text-accent { color: var(--accent) !important; }
    .bg-primary-custom { background-color: var(--primary); }
    .bg-background     { background-color: var(--background); }
    .bg-card           { background-color: var(--card); }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      transition: all 0.5s ease;
      padding: 1.25rem 0;        /* py-5 */
      background: transparent;
    }
    #navbar.scrolled {
      background: var(--primary-95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 0.75rem 0;        /* py-3 */
    }
    .nav-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo img { height: 5rem; width: auto; display: block; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
      margin: 0; padding: 0;
    }
    .nav-links a {
      position: relative;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-70);
      transition: color 0.3s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a.active { color: var(--accent); }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 4px;
    }
    .mobile-menu {
      display: none;
      background: var(--primary-95);
      backdrop-filter: blur(8px);
      padding: 1.5rem;
      flex-direction: column;
      gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white-70);
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--white-10);
      transition: color 0.2s;
    }
    .mobile-menu a.active { color: var(--accent); }
    @media (max-width: 767px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
    }

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .hero-overlay-r {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--primary-90) 0%, var(--primary-70) 50%, var(--primary-40) 100%);
    }
    .hero-overlay-b {
      position: absolute; inset: 0;
      background: linear-gradient(to top, var(--primary-90) 0%, transparent 60%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      width: 100%;
    }
    .hero-inner { max-width: 42rem; }
    .hero-line {
      width: 80px; height: 2px;
      background: var(--accent);
      margin-bottom: 2rem;
    }
    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(4.5rem, 7vw, 4.5rem);
      font-weight: 500;
      line-height: 1;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero-h1 em {
      display: block;
      color: var(--accent);
      font-style: italic;
    }
    .hero-sub {
      color: var(--white-70);
      font-size: 1.25rem;
      font-weight: 300;
      line-height: 1.75rem;
      max-width: 32rem;
      margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: var(--accent);
      color: var(--primary);
      padding: 1rem 2rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .btn-hero-primary:hover { background: var(--accent-90); color: var(--primary); transform: translateY(-1px); }
    .btn-hero-secondary {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: transparent;
      color: #fff;
      border: 1px solid var(--white-30);
      padding: 1rem 2rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s;
    }
    .btn-hero-secondary:hover { background: var(--white-10); color: #fff; }
    .scroll-indicator {
      position: absolute;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }
    .scroll-dot {
      width: 1.25rem; height: 2rem;
      border: 2px solid var(--white-30);
      border-radius: 9999px;
      display: flex; justify-content: center;
      padding-top: 4px;
    }
    .scroll-dot-inner {
      width: 4px; height: 8px;
      background: var(--accent);
      border-radius: 9999px;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(8px); }
    }

    /* ── SERVICES ── */
    #services {
      background: var(--background);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #services { padding: 8rem 0; } }
    .section-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .section-header { text-align: center; margin-bottom: 5rem; }
    .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 500;
      color: var(--foreground);
      margin: 0;
    }
    .accent-line {
      width: 4rem; height: 2px;
      background: var(--accent);
      margin: 1.5rem auto 0;
      border: none;
    }
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
    .service-card {
      text-align: center;
      padding: 2rem;
      border-radius: 2px;
      transition: background 0.5s, box-shadow 0.5s, transform 0.3s;
      cursor: default;
    }
    .service-card:hover {
      background: var(--card);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .service-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: 4rem; height: 4rem;
      background: var(--primary-05);
      border-radius: 2px;
      margin-bottom: 1.5rem;
      transition: background 0.5s;
    }
    .service-card:hover .service-icon { background: var(--accent-10); }
    .service-icon i {
      font-size: 1.75rem;
      color: var(--primary);
      transition: color 0.5s;
    }
    .service-card:hover .service-icon i { color: var(--accent); }
    .service-title {
          font-family: 'AF Holdings Serif New';
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 0.75rem;
    }
    .service-desc {
      color: #333;
   
      margin: 0;
    }

    /* ── ABOUT PREVIEW ── */
    #about-preview {
      background: var(--card);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #about-preview { padding: 8rem 0; } }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      width: 100%; aspect-ratio: 4/3;
      object-fit: cover; display: block;
    }
    .about-img-deco {
      position: absolute;
      bottom: -16px; right: -16px;
      width: 8rem; height: 8rem;
      border: 2px solid hsla(45,80%,55%,0.3);
      z-index: -1;
      pointer-events: none;
    }
    .about-eyebrow { color: var(--accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
    .about-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.875rem, 3vw, 2.5rem);
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .about-title em { color: var(--accent); font-style: italic; }
    .accent-line-left {
      width: 3rem; height: 2px;
      background: var(--accent);
      border: none; margin: 0 0 2rem 0;
    }
    .about-p {
      color: #333
   

    }
    .learn-more-link {
      display: inline-flex; align-items: center; gap: 0.75rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary);
      transition: color 0.3s;
      margin-top: 1rem;
    }
    .learn-more-link:hover { color: var(--accent); }
    .learn-more-link i { transition: transform 0.3s; }
    .learn-more-link:hover i { transform: translateX(4px); }

    /* ── STATS ── */
    #stats {
      position: relative;
      padding: 5rem 0;
      overflow: hidden;
    }
    .stats-bg {
      position: absolute; inset: 0;
    }
    .stats-bg img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .stats-overlay {
      position: absolute; inset: 0;
      background: var(--primary-90);
    }
    .stats-grid {
      position: relative; z-index: 2;
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
    .stat-item { text-align: center; }
    .stat-value {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.875rem, 5vw, 3rem);
      font-weight: 500;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }
    .stat-label {
      color: var(--white-60);
      font-size: 0.875rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* ── CTA ── */
    #cta {
      background: var(--background);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #cta { padding: 8rem 0; } }
    .cta-inner {
      max-width: 56rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      text-align: center;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.875rem, 4vw, 3rem);
      font-weight: 500;
      color: var(--foreground);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    .cta-title em { color: var(--accent); font-style: italic; }
    .cta-body {
      color: var(--muted-fg);
      font-size: 1.125rem;
      line-height: 1.8;
      max-width: 40rem;
      margin: 0 auto 2.5rem;
    }
    .btn-cta {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: var(--primary);
      color: #fff;
      padding: 1rem 2.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s;
    }
    .btn-cta:hover { background: hsla(228,60%,15%,1); color: #fff; }
    .btn-cta i { transition: transform 0.3s; }
    .btn-cta:hover i { transform: translateX(4px); }

    /* ── PAGE HERO (About / Contact) ── */
    .page-hero {
      position: relative;
      min-height: 50vh;
      display: flex; align-items: center;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
    }
    .page-hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: var(--primary-85);
    }
    .page-hero-content {
      position: relative; z-index: 2;
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      width: 100%;
    }
    .page-hero p.eyebrow { color: var(--accent); margin-bottom: 1rem; }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 500;
      color: #fff;
      margin: 0;
    }
    .page-hero-line {
      width: 4rem; height: 2px;
      background: var(--accent);
      border: none; margin-top: 1.5rem;
    }

    /* ── ABOUT PAGE ── */
    #about-profile {
      background: var(--background);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #about-profile { padding: 8rem 0; } }
    .profile-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 1024px) { .profile-grid { grid-template-columns: 1fr 1fr; } }
    .profile-grid img {
      width: 100%; aspect-ratio: 4/3; object-fit: cover;
    }
    .profile-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.875rem, 3vw, 2.5rem);
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    .profile-text p {
      color: var(--muted-fg);
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    /* ── VALUES ── */
    #values {
      background: var(--card);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #values { padding: 8rem 0; } }
    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 0;
    }
    @media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
    .value-card {
      display: flex;
      gap: 1.5rem;
      padding: 2rem;
      background: var(--background);
    }
    .value-icon {
      flex-shrink: 0;
      width: 3.5rem; height: 3.5rem;
      background: var(--primary-05);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--accent);
    }
    .value-text h5 {
          font-family: 'AF Holdings Serif New';
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    .value-text p { color: var(--muted-fg); font-size: 0.875rem; line-height: 1.7; margin: 0; }

    /* ── MISSION ── */
    #mission {
      background: var(--primary);
      padding: 6rem 0;
      overflow: hidden;
    }
    .mission-inner {
      max-width: 56rem;
      margin: 0 auto;
      padding: 0 1.5rem;
      text-align: center;
    }
    .mission-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.25rem, 3vw, 1.75rem);
      font-weight: 500;
      color: #fff;
      line-height: 2.5rem;
      margin: 1.5rem 0 2rem;
    }

    /* ── CONTACT PAGE ── */
    #contact-body {
      background: var(--background);
      padding: 6rem 0;
    }
    @media (min-width: 768px) { #contact-body { padding: 8rem 0; } }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
    }
    @media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
    .contact-info-title {
      font-family: 'AF Arizona Flare';
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .contact-intro { color: var(--muted-fg); line-height: 1.8; margin-bottom: 3rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; }
    .contact-icon {
      flex-shrink: 0;
      width: 3rem; height: 3rem;
      background: var(--primary-05);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem;
      color: var(--accent);
    }
    .contact-item-label {
      font-size: 1.00rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #000000;
      margin-bottom: 4px;
    }
    .contact-item-value { color: var(--muted-fg);  }
    .contact-item-value a { color: var(--muted-fg); transition: color 0.2s; }
    .contact-item-value a:hover { color: var(--accent); }

    .form-card {
      background: var(--card);
      padding: 3rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    }
    .form-card h3 {
      font-family: 'AF Arizona Flare';
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 2rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
    @media (min-width: 576px) { .form-row { grid-template-columns: 1fr 1fr; } }
    .form-group { margin-bottom: 1.5rem; }
    .form-label-custom {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted-fg);
      margin-bottom: 0.5rem;
    }
    .form-input {
      width: 100%;
      border: 1px solid var(--border);
      background: var(--background);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      padding: 0.75rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      border-radius: 0;
    }
    .form-input:focus { border-color: var(--accent); }
    textarea.form-input { resize: none; }
    .btn-submit {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--primary);
      color: #fff;
      padding: 0.875rem 2.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: hsla(228,60%,15%,1); }
    .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .spinner {
      display: inline-block;
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── FOOTER ── */
    footer {
      background: var(--primary);
      color: #fff;
    }
    .footer-inner {
      max-width: 80rem;
      margin: 0 auto;
      padding: 4rem 1.5rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
    .footer-logo img { height: 3rem; width: auto; display: block; margin-bottom: 1.5rem; }
    .footer-desc { color: var(--white-60);line-height: 1.8; max-width: 18rem; }
    .footer-col-title {
      color: var(--accent);
      font-family: 'Inter', sans-serif;

      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
    .footer-links a { color: var(--white-60);  transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
    .footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item p, .footer-contact-item a {
      color: var(--white-60);  margin: 0;
    }
    .footer-contact-item a:hover { color: var(--accent); }
    .footer-bottom {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--white-10);
      text-align: center;
    }
    .footer-copy { color: var(--white-40); font-size: 0.75rem; letter-spacing: 0.05em; }

    /* ── PAGE ROUTING ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── TOAST ── */
    #toast {
      position: fixed;
      bottom: 2rem; right: 2rem;
      background: var(--card);
      color: var(--foreground);
      padding: 1rem 1.5rem;
      font-size: 0.875rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      border-left: 3px solid var(--accent);
      z-index: 9999;
      display: none;
      max-width: 320px;
    }
    #toast.show { display: flex; align-items: center; gap: 0.75rem; }
    #toast i { color: var(--accent); font-size: 1.1rem; }
	
	
	/* TEAM PAGE */

#team-section{
background:var(--background);
padding:6rem 0;
}

.team-grid{
display:grid;
grid-template-columns:1fr;
gap:2rem;
margin-top:2rem;
}

@media(min-width:768px){
.team-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(min-width:1024px){
.team-grid{
grid-template-columns:repeat(3,1fr);
}
}

.team-card{
text-align:center;
background:var(--card);
padding:2rem;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:transform .3s;
}

.team-card:hover{
transform:translateY(-5px);
}

.team-card img{
width:50%;


margin-bottom:1rem;
}

.team-card h4{
    font-family: 'AF Holdings Serif New';
margin-bottom:4px;
}

.team-card p{

color:var(--muted-fg);
}


.team-card img
{
	height:auto!important;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
    color: var(--accent);
}

.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}