/* ═══════════════════════════════════════════════════════════════
   REANO — Design System Tokens
═══════════════════════════════════════════════════════════════ */
:root {
  /* Colors */
  --main-100:    #cc5d28;
  --main-0:      #f7e7df;
  --neutral-0:   #ffffff;
  --neutral-50:  #bcbcbc;
  --neutral-70:  #7e7e7e;
  --neutral-100: #262626;
  --white-100:   #f8f8f7;
  --black:       #000000;

  /* Typography */
  --font-family: 'Rethink Sans', sans-serif;
  --lh-16: 16px;
  --lh-24: 24px;
  --letter-spacing: 0.1px;

  /* Spacing */
  --s32: 32px;

  /* Derived */
  --dark-bg:     #1a1a1a;
  --section-pad: 100px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: 18px;
  color: var(--neutral-100);
  background: var(--neutral-0);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 80px;
}
.container--narrow {
  max-width: 900px;
}
.text-center { text-align: center; }
.br-desktop  { display: block; }

/* ═══════════════════════════════════════════════════════════════
   SHARED TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
/* Desktop: 56px / Mobile: 24px */
.section-heading {
  font-size: clamp(24px, 3.9vw, 56px);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: var(--letter-spacing);
  color: var(--neutral-100);
}

/* Desktop: 40px medium / Mobile: 18px regular */
.section-body {
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--neutral-100);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   Desktop: h 70px (padding 23px 35px + lh 24px = 70px)
   Mobile:  h 56px (padding 16px 35px + lh 24px = 56px)
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 23px 35px;
  border-radius: 46px;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: var(--letter-spacing);
  line-height: var(--lh-24);
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  overflow: hidden;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn--primary {
  background: var(--main-100);
  color: var(--neutral-0);
  border-color: var(--main-100);
}
.btn--ghost {
  background: var(--main-0);
  color: var(--neutral-100);
  border-color: transparent;
}
.btn--inverse {
  background: var(--main-0);
  color: var(--black);
  border-color: var(--main-0);
}
.btn--white {
  background: var(--neutral-0);
  color: var(--neutral-100);
  border-color: var(--neutral-0);
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 20px;
  background: transparent;
  transition: background 0.3s;
}
.nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(41, 41, 41, 0.92);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo img {
  height: 38px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 50px;
  margin-left: auto;
}
.nav__links a {
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-0);
  letter-spacing: var(--letter-spacing);
  transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 0.7; }

.nav__cta {
  padding: 14px 28px;
  font-size: 16px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-0);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav__close {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   Desktop heading: 64px bold, lh 66px
   Desktop sub:     36px medium, lh 45px, w 886px
   Mobile heading:  36px bold
   Mobile sub:      20px medium
═══════════════════════════════════════════════════════════════ */
.hero {
  background-color: var(--main-100);
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.hero__content {
  text-align: center;
  padding-bottom: 0;
}

.hero__heading {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 66px;
  color: var(--neutral-0);
  letter-spacing: var(--letter-spacing);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
  max-width: 886px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

/* Phone mockups in hero */
.hero__mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin-top: clamp(-200px, -13vw, -110px);
  padding: 0;
  height: clamp(276px, 41.4vw, 644px);
}

.hero__mockup {
  position: absolute;
  bottom: 0;
  height: 90%;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
}

.hero__mockup--left  { left: 50%; transform: translateX(calc(-50% - min(17vw, 264px))) translateY(clamp(80px, min(13vw, 202px), 190px)); height: 100%; z-index: 1; }
.hero__mockup--center { left: 50%; transform: translateX(-50%) translateY(clamp(70px, min(11vw, 171px), 160px)); height: 92%; z-index: 3; }
.hero__mockup--right { left: 50%; transform: translateX(calc(-50% + min(17vw, 264px))) translateY(clamp(80px, min(13vw, 202px), 190px)); height: 100%; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════ */
.problem {
  padding-top: calc(var(--section-pad) + clamp(70px, 11vw, 160px));
  padding-bottom: var(--section-pad);
  background: var(--main-0);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CARDS
   Desktop icon: 180×180px  title: 32px bold  body: 20px medium lh 32px
   Mobile  icon:  96×96px   title: 20px bold  body: 18px regular lh 24px
═══════════════════════════════════════════════════════════════ */
.feature-cards {
  padding-block: 0 var(--section-pad);
  background: var(--main-0);
}

.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.feature-card__icon {
  width: 180px;
  height: 180px;
  background: #f5f5f5;
  border: 4px solid var(--main-100);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* feature-card uses img directly (not .feature-card__icon wrapper) */
.feature-card > img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-card__title {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.32px;
}

.feature-card__body {
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--neutral-100);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE DETAIL INTRO
═══════════════════════════════════════════════════════════════ */
.feature-detail-intro {
  padding-block: var(--section-pad) 60px;
  background: var(--white-100);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE CAROUSEL
   Desktop slide title: 40px bold  tracking -0.4px
   Desktop bullets/body: 28px regular  tracking -0.28px  lh 1.84
   Mobile  slide title: 20px bold  tracking -0.2px
   Mobile  bullets/body: 14px regular  tracking -0.7px  lh 1.84
═══════════════════════════════════════════════════════════════ */
.feature-carousel-section {
  background: var(--white-100);
  padding-block: 0 var(--section-pad);
}

.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.carousel__slide {
  display: grid;
  grid-template-columns: 436fr 795fr;
  gap: 80px;
  align-items: center;
  padding-block: 60px;
  border-top: 1px solid rgba(188, 188, 188, 0.3);
}

.carousel__slide:first-child {
  border-top: none;
}

.feature-detail__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10.8px 1px rgba(0, 0, 0, 0.14);
}

.feature-detail__media--placeholder {
  background: #ececec;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(0,0,0,0.03) 10px, rgba(0,0,0,0.03) 20px
  );
}

.feature-video {
  width: 100%;
  height: auto;
  display: block;
}

.feature-detail__heading {
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}

.feature-detail__body {
  font-size: clamp(14px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--neutral-100);
  letter-spacing: -0.28px;
  margin-bottom: 24px;
}

.feature-detail__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: disc;
  padding-left: 42px;
}
.feature-detail__list li {
  font-size: clamp(14px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.84;
  color: var(--neutral-100);
  letter-spacing: -0.28px;
  display: list-item;
}

.carousel__dots { display: none; }

/* ═══════════════════════════════════════════════════════════════
   TEAM
   Desktop: photo 205×228px  name 24px semibold  role 20px  linkedin 18px  badge 20px
   Mobile:  photo 150×167px  name 16px semibold  role 14px  linkedin 14px  badge 16px
═══════════════════════════════════════════════════════════════ */
.team {
  background: var(--neutral-0);
  padding-block: var(--section-pad);
}

.team__heading {
  font-size: clamp(20px, 3.9vw, 56px);
  font-weight: 700;
  line-height: 1.21;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.team__logo {
  height: 40px;
  width: auto;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-bottom: 40px;
}

.team__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 75%;
  margin-inline: auto;
  margin-bottom: 0;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.team__photo-wrap {
  position: relative;
  width: clamp(150px, 20vw, 205px);
  flex-shrink: 0;
}

.team__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 150 / 167;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team__badges {
  position: absolute;
  bottom: 11.84%; /* 27px at 228px photo height, scales proportionally */
  right: 0;
  transform: translateX(33.33%); /* 1/3 of badge hangs outside right edge */
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  border-radius: 24px;
  background: var(--neutral-0);
  color: var(--main-100);
  border: 2px solid var(--main-100);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05px;
}

.team__name {
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 600;
  color: var(--main-100);
  line-height: var(--lh-16);
  letter-spacing: var(--letter-spacing);
}

.team__role {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--neutral-100);
  line-height: var(--lh-16);
  letter-spacing: var(--letter-spacing);
}

.team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 400;
  color: var(--neutral-100);
  transition: color 0.2s;
}
.team__linkedin:hover { color: var(--main-100); }
.team__linkedin img { flex-shrink: 0; width: 22px; height: auto; }

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   Desktop heading: 56px bold  body: 40px medium  buttons: 70px h / 236px w
   Mobile  heading: 20px bold  body: 18px regular  buttons: 56px h
═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--main-100);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.cta-section__chair {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(162px, 20vw, 300px);
  height: auto;
  opacity: 0.2;
  pointer-events: none;
}

.cta-section__heading {
  font-size: clamp(20px, 3.9vw, 56px);
  font-weight: 700;
  color: var(--neutral-0);
  margin-bottom: 20px;
  line-height: 1.4;
}

.cta-section__sub {
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  line-height: 1.3;
}

.cta-section__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   Desktop heading: 56px bold  sub: 40px semibold
   Mobile  heading: 20px bold  sub: 18px regular
   Input label: 24px semibold (desktop) / 18px (mobile)
   Submit btn: 70px h / 327px w (desktop) / 56px h / full (mobile)
═══════════════════════════════════════════════════════════════ */
.contact {
  background: var(--neutral-0);
  padding-block: var(--section-pad);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.contact__brand {
  display: flex;
  align-items: center;
}

.contact__logo {
  height: 40px;
  width: auto;
}

.contact__heading {
  font-size: clamp(20px, 3.9vw, 56px);
  font-weight: 700;
  color: var(--neutral-100);
  line-height: 1.21;
  max-width: 540px;
}

.contact__sub {
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 600;
  color: var(--neutral-100);
  line-height: 1.3;
  max-width: 800px;
}


/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form__field {
  border-bottom: 1px solid #cacaca;
}

.contact-form__field--textarea {
  min-height: 146px;
}

.contact-form__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 10px 32px;
  font-family: var(--font-family);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  color: var(--neutral-100);
  letter-spacing: var(--letter-spacing);
  resize: none;
}

.contact-form__input::placeholder {
  color: var(--neutral-100);
}

.contact-form__textarea {
  min-height: 146px;
  display: block;
}

.contact-form__submit {
  margin-top: 48px;
  width: 327px;
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   Desktop: 24px semibold  h 122px  radius 40px
   Mobile:  14px semibold  h  74px  radius 40px
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--main-100);
  padding-block: 48px;
  text-align: center;
  border-radius: 40px 40px 0 0;
}

.footer p {
  font-size: clamp(14px, 1.7vw, 24px);
  font-weight: 600;
  color: var(--white-100);
  letter-spacing: var(--letter-spacing);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .container { padding-inline: 40px; }

  .feature-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .feature-card > img,
  .feature-card__icon {
    width: 140px;
    height: 140px;
  }

  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid--three { max-width: 100%; grid-template-columns: repeat(3, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__heading { max-width: 100%; }
  .contact__sub { max-width: 100%; }
  .contact-form__submit { width: 100%; }

  .br-desktop { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .container { padding-inline: 20px; }

  /* Buttons — h 56px */
  .btn { padding: 16px 35px; font-size: 20px; }

  /* Nav */
  .nav { padding-block: 16px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 200;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 28px; }

  .nav__close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--neutral-0);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    opacity: 0.8;
  }
  .nav__close:hover { opacity: 1; }

  /* Hero */
  .hero { padding-top: 100px; }
  .hero__heading { font-size: 36px; line-height: normal; margin-bottom: 20px; }
  .hero__sub     { font-size: 20px; line-height: 1.4; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 0; }
  .hero__actions .btn { width: 100%; max-width: 300px; }

  /* Hero mockups — caps match desktop values at 768px to prevent jump at breakpoint */
  .hero__mockups {
    height: clamp(260px, 72vw, 318px);
    margin-top: -88px;
  }
  .hero__mockup--left   { transform: translateX(calc(-50% - min(24vw, 102px))) translateY(clamp(80px, 18vw, 100px)); height: 87%; }
  .hero__mockup--center { transform: translateX(-50%) translateY(clamp(70px, 16vw, 85px)); height: 80%; }
  .hero__mockup--right  { transform: translateX(calc(-50% + min(24vw, 102px))) translateY(clamp(80px, 18vw, 100px)); height: 87%; }

  /* Problem */
  .section-heading { font-size: 24px; line-height: 1.33; }
  .section-body    { font-size: 18px; font-weight: 400; margin-top: 16px; }

  /* Feature cards — single column, center-aligned */
  .feature-cards__grid { grid-template-columns: 1fr; gap: 25px; }
  .feature-card { align-items: center; gap: 20px; }
  .feature-card > img,
  .feature-card__icon {
    width: 96px;
    height: 96px;
    padding: 0;
    border-radius: 0;
    border-width: 4px;
  }
  .feature-card__title { font-size: 20px; letter-spacing: -0.2px; }
  .feature-card__body  { font-size: 18px; font-weight: 400; line-height: 1.33; }

  /* Feature detail — media on top, text below */
  .carousel__slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px;
  }
  .carousel__slide:first-child {
    padding-top: 0;
  }
  .feature-detail__media {
    order: 1;
    margin-inline: 60px;
  }
  .feature-detail__text { order: 2; }
  .feature-detail__heading { font-size: 20px; letter-spacing: -0.2px; }
  .feature-detail__body    { font-size: 14px; letter-spacing: -0.7px; }
  .feature-detail__list    { padding-left: 21px; }
  .feature-detail__list li { font-size: 14px; letter-spacing: -0.7px; }

  /* Carousel dots — visible on mobile */
  .carousel__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
  }
  .carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-50);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .carousel__dot--active { background: var(--main-100); }

  /* Team */
  .team__heading { font-size: 20px; line-height: 1.4; gap: 8px; margin-bottom: 40px; }
  .team__logo    { height: 18px; }
  .team__grid    { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .team__grid--three { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .team__name    { font-size: 16px; }
  .team__role    { font-size: 14px; }
  .team__linkedin { font-size: 14px; }
  .team__linkedin img { width: 18px; height: auto; }
  .badge         { font-size: 16px; }

  /* CTA */
  .cta-section__heading { font-size: 20px; line-height: 1.4; }
  .cta-section__sub     { font-size: 18px; font-weight: 400; }
  .cta-section__actions { flex-direction: column; align-items: center; gap: 16px; }
  .cta-section .btn--white { width: 100%; max-width: 260px; }

  /* Contact */
  .contact__grid   { gap: 40px; }
  .contact__heading { font-size: 20px; }
  .contact__sub    { font-size: 18px; font-weight: 400; }
  .contact-form__input { font-size: 18px; padding-bottom: 32px; }
  .contact-form__field--textarea { min-height: 127px; }
  .contact-form__textarea { min-height: 127px; }
  .contact-form__submit { width: 100%; margin-top: 33px; }

  /* Footer */
  .footer { padding-block: 25px; border-radius: 40px 40px 0 0; }
  .footer p { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  .hero__mockups { height: clamp(220px, 68vw, 280px); }

  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .team__grid--three { grid-template-columns: repeat(2, 1fr); }

}
