
:root {
  --smalt:      #003b95;
  --smalt-dark: #002870;
  --smalt-light:#e8eef9;
  --coral:      #f08080;
  --coral-light:#fde8e8;
  --mango:      #ffb749;
  --winery:     #96133d;
  --mid:        #45464c;
  --light:      #f5f5f3;
  --white:      #ffffff;
  --ink:        #000614;
  --pad-x:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Franklin', sans-serif;
  background: var(--white); color: var(--ink); overflow-x: hidden;
}
a { text-decoration: none; }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      height: 75px;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--pad-x);
      background: rgb(255, 255, 255);
      backdrop-filter: blur(0px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    }

   

    .logo {
      font-family: 'Signika', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.4px;
      margin-top: 10px;
      position: relative;
      transition: color 0.4s;
    }

    .logo img {
      width: 200px;
      height: 100%;
      padding: 0px 20px;


    }

    .logo .plus {
      color: var(--coral);
      font-style: italic;
      font-weight: 400;
    }

    .logo-petal {
      position: absolute;
      top: -10px;
      right: -14px;
      width: 22px;
      height: 22px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--mid);
      transition: color 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--coral);
    }

    .nav-cta {
      background: var(--coral);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      transition: background 0.2s;
    }

    .nav-cta:hover {
      background: var(--winery);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: background 0.4s;
    }

    .nav-drawer {
      display: none;
      position: fixed;
      top: 61px;
      left: 0;
      right: 0;
      z-index: 490;
      background: var(--white);
      flex-direction: column;
      border-bottom: 1px solid rgba(0, 59, 149, 0.08);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    }

    .nav-drawer.open {
      display: flex;
    }

    .nav-drawer a {
      padding: 16px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--mid);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: color 0.2s, background 0.2s;
    }

    .nav-drawer a:hover {
      color: var(--smalt);
      background: var(--smalt-light);
    }

    .nav-drawer .nav-cta {
      margin: 16px 24px;
      border-radius: 100px;
      text-align: center;
      border-bottom: none;
    }




/* ── PAGE ─────────────────────────────────────────────────── */
.page { padding-top: 61px; }

/* ══════════════════════════════════════════════
   S4 — MEET THE TEAM
══════════════════════════════════════════════ */
.au-team {
  margin: 20px 20px 80px;
  background: var(--coral-light); border-radius: 28px;
  padding: 56px 100px 0; overflow: hidden; position: relative;
}
.au-team::before {
  content: 'hello'; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--coral); opacity: 0.05; pointer-events: none;
}
.au-team-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 40px;
}
.meet-title {
  font-family: 'Signika', sans-serif;
  font-size: clamp(32px,4.5vw,60px); font-weight: 700;
  letter-spacing: -2px; line-height: 0.95; color: var(--ink);
}

.au-team-intro {
  font-size: 15px; font-weight: 300; color: var(--mid);
  line-height: 1.8; max-width: 360px;
}

.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; align-items: end;
  margin-top: 50px;
  width: 90%;

  margin: auto;
}
.team-member { display: flex; flex-direction: column; 
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.7s ease;

}
.team-member.in-view {
  opacity: 1;
  transform: translateY(0);
}/* stagger each card */
.team-member:nth-child(1) { transition-delay: 0s;    }
.team-member:nth-child(2) { transition-delay: 0.15s; }
.team-member:nth-child(3) { transition-delay: 0.3s;  }

.member-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 160px 160px 0 0;
  overflow: hidden; position: relative;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.team-member:hover .member-photo { transform: translateY(-8px); }

/* Per-member tints */
.team-member:nth-child(1) .member-photo { background: linear-gradient(180deg,#c8d8f4,var(--smalt-light)); }
.team-member:nth-child(2) .member-photo {
  background: linear-gradient(180deg,#ffffff,var(--coral-light));
 
}
.team-member:nth-child(3) .member-photo { background: linear-gradient(180deg,#fff3d6,#fae5af); }

.leaders-photo{
    width:100%; height:100%; object-fit:cover; display:block;
}

.member-info { padding: 18px 16px 28px;
background-color: white;
}
.team-member:nth-child(2) .member-info {
  background: var(--winery); 
  padding: 18px 20px 28px;
}
.member-name {
  font-family: 'Signika', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 2px;
}


.team-member:nth-child(2) .member-name { color: var(--white); }
.member-role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 10px;
}

.team-member:nth-child(2) .member-role{
    color: white;
}
.member-bio { font-size: 14px; font-weight: 400; color: var(black); line-height: 1.75; }
.team-member:nth-child(2) .member-bio { color: rgb(255, 255, 255); }



/* team member */
.team-section {
  padding: 60px 20px;
  background: var(--coral-light);
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: var(--winery);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--mid);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

/* Card Design */
.team-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--light);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
  height: 390px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);

  text-align: left;
  transition: 0.3s ease;
}

.team-card:hover{
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--smalt);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--smalt);
}

.team-role {
  font-size: 0.9rem;
  color: var(--mid);
  margin-top: 5px;
}

.team-design {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--winery);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #000614;
  padding: 72px 72px 36px;
}
.footer-top {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand-logo {
  font-family: "Signika", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
}
.footer-brand-logo .plus {
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}
.footer-brand-logo svg {
  flex-shrink: 0;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.footer-col-title {
  font-family: "Signika", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-bottom {
  width: 90%;
  margin: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
}



/* 1023 px break point */
@media (max-width: 1023px) {
 :root { --pad-x: 40px; }



 .au-team { margin: 20px 30px 60px; padding: 40px 30px 0; }
  .au-team-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .au-team-intro { max-width: 100%; }
  .team-grid { grid-template-columns: repeat(2,1fr);
   
margin-top: 50px;
  margin: auto;
}



}

@media (max-width: 780px) {
  :root { --pad-x: 20px; }
  nav {
        padding: 16px 40px;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      
  .footer-top {

  grid-template-columns: 1fr;

}

  .au-team { margin: 10px 10px 48px; padding: 40px 36px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem }
 
  .meet-title { font-size: clamp(28px,10vw,48px); letter-spacing: -1.5px; }
}

