
:root {
  --ease-elastic-in-out-1:       cubic-bezier(.5, -.1, .1, 1.5);
  --size-fluid-2:       clamp(1rem, 2vw, 1.5rem);
  --size-fluid-4:       clamp(2rem, 4vw, 3rem);
  --radius-3:       1rem;
  --size-fluid-3:       clamp(1.5rem, 3vw, 2rem);
  --shadow-4:       
    0 -2px 5px 0 hsl(var(--shadow-color) / var(--shadow-strength-3)),
    0 1px 1px -2px hsl(var(--shadow-color) / var(--shadow-strength-4)),
    0 2px 2px -2px hsl(var(--shadow-color) / var(--shadow-strength-4)),
    0 5px 5px -2px hsl(var(--shadow-color) / var(--shadow-strength-5)),
    0 9px 9px -2px hsl(var(--shadow-color) / var(--shadow-strength-6)),
    0 16px 16px -2px hsl(var(--shadow-color) / var(--shadow-strength-7));
  --shadow-color:       220 3% 15%;
  --shadow-strength-3:       calc(var(--shadow-strength) + 2%);
  --shadow-strength-4:       calc(var(--shadow-strength) + 3%);
  --shadow-strength-5:       calc(var(--shadow-strength) + 4%);
  --shadow-strength-6:       calc(var(--shadow-strength) + 5%);
  --shadow-strength-7:       calc(var(--shadow-strength) + 6%);
  --shadow-strength:       1%;
  --animation-fade-in:       fade-in .5s var(--ease-3);
  --ease-3:       cubic-bezier(.25, 0, .3, 1);
}
:root {
  /* Brand */
  --color-primary:       #4c7f6a;
  --color-primary-dark:  #1b4332;
  --color-primary-light: #52b788;

  /* Accent */
  --color-accent:        #D3FB00;
  --color-accent-text:   #1b4332;

  /* Text */
  --color-text:          #111a14;
  --color-text-muted:    #5f6360;
  --color-text-inverse:  #ffffff;

  /* Backgrounds */
  --color-bg:            #ffffff;
  --color-bg-subtle:     #f2f4f2;

  /* Header */
  --color-header-bg:     #ffffff;
  --color-header-text:   #111a14;

  /* Footer */
  --color-chrome-bg:     #111a14;
  --color-chrome-text:   #ffffff;

  /* Links */
  --color-link:          var(--color-primary);
  --color-link-hover:    var(--color-primary-dark);
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.02;
  margin-block-end: 0;
}
h1, h2, h3 {
  color: var(--color-primary-dark);
}
h1 {
  font-size: clamp(3.8rem, 8vw, 5.5rem);
}
h2 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
}
h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
p.large {
    font-size: 1.25rem;
}
p.secondary {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
em {
  font-style: normal;
  font-weight: 700;
}
a {
  color: var(--color-link);
  font-weight: 700;
  text-decoration: none;
}
a:hover {
    color: var(--color-link-hover);
    text-decoration: underline;
  }
.button {
  display: inline-flex;
}
.button[hidden] {
    display: none;
  }
.button {
  white-space: nowrap;
  padding: 0.6em 1.4em;
  background-color: var(--color-accent);
  color: var(--color-accent-text);
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 1.333;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.button:hover {
    background-color: #c4ea00;
    color: var(--color-accent-text);
    text-decoration: none;
  }
.form-fieldset {
  background-color: var(--color-bg);
}
li {
  font-size: 1rem;
  margin-block-end: 0.5em;
}
.ease-in-out {
  transition: all 0.3s var(--ease-elastic-in-out-1);
}
.dev-note {
  color: red;
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.1);
  font-size: 0.8rem;
}
.container {
  width: min(80rem, 100% - 3rem);
  margin-inline: auto;
}
.container > h2 {
  margin-block-start: 0;
}
main {
  overflow-x: hidden;
}
main .container {
  padding-block: 2rem;
}
.section-subtle {
  background-color: var(--color-bg-subtle);
  box-shadow: inset 0 15px 10px -10px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -10px rgba(0, 0, 0, 0.05);
  padding-block: 2rem;
}
header {
  background-color: var(--color-header-bg);
  color: var(--color-header-text);
  padding: 1.1rem 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e8ede9;
  box-shadow:  0 15px 10px -10px rgba(0, 0, 0, 0.05);
}
header a {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    color: var(--color-header-text);
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    padding: 0.6em 1.4em;
    border-radius: 100px;
    letter-spacing: 0.01em;
  }
header a:hover {
      color: var(--color-primary-dark);
      text-decoration: none;
      background-color: var(--color-bg-subtle);
    }
header a.button {
      border-bottom: none;
    }
header a.button:hover {
        border-bottom: none;
      }
/* Visually hidden but accessible */
header .nav-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }
header .nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    color: var(--color-header-text);
    user-select: none;
  }
header .nav-toggle-label::after {
      content: "☰";
      font-size: 1.25rem;
      line-height: 1;
    }
header .site-name-short {
    display: none;
  }
header .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
header .container .nav-home {
      flex: 1;
    }
header .container .nav-home a {
        padding: 0;
      }
header .container .nav-home a:hover {
          background-color: transparent;
        }
header .container .nav-home .logo {
        display: none;
      }
header .container nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
/* Hamburger breakpoint */
@media (max-width: 600px) {
    header .nav-toggle-label {
      display: inline-flex;
      align-items: center;
    }

    header .nav-toggle:checked ~ .nav-toggle-label::after {
      content: "✕";
    }

    header .container nav {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      flex-direction: column;
      background-color: var(--color-header-bg);
      border-bottom: 1px solid #e8ede9;
      padding-block: 0.75rem;
      z-index: 100;
    }

      header .container nav a {
        padding: 0.75rem 1.5rem;
        border-bottom: none;
        width: 100%;
      }

        header .container nav a:hover {
          background-color: var(--color-bg-subtle);
          border-radius: 0;
        }

        header .container nav a.button {
          margin: 0;
          width: 100%;
          justify-content: flex-start;
          border-radius: 0;
          background-color: transparent;
          color: var(--color-header-text);
          font-size: inherit;
          padding: 0.75rem 1.5rem;
          border: none;
        }

          header .container nav a.button:hover {
            background-color: var(--color-bg-subtle);
          }

    header .nav-toggle:checked ~ nav {
      display: flex;
    }
  }
/* Short name breakpoint */
@media (max-width: 380px) {
    header .site-name-full {
      display: none;
    }

    header .site-name-short {
      display: inline;
    }
  }
footer {
  background-color: var(--color-chrome-bg);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: var(--color-chrome-text);
  padding: 4rem 0 0 0;
}
footer a {
    color: var(--color-chrome-text);
  }
footer .container {
    min-height: 4rem;
  }
/* Homepage Hero */
.home--hero {
  position: relative;
  padding-block: 0rem 8rem;
}
.home--hero-inner {
  position: relative;
}
.home--hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  max-width: 52%;
}
.home--hero-text p {
    color: var(--color-text-muted);
    max-width: 42ch;
    margin: 0;
  }
.home--hero-media {
  position: absolute;
  right: 0;
  top: 3rem;
  width: 50%;
  z-index: 0;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: end;
}
.home--hero-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.home--hero-flourish {
  width: 85%;
  margin-top: -6rem;
  justify-self: start;
  opacity: 1;
}
/* What We Do */
.home--siting-challenge .container {
    padding-block: 3rem 2rem;
  }
.home--siting-challenge h2 {
    margin-bottom: 1.25rem;
  }
.home--siting-challenge p {
    max-width: 68ch;
  }
/* Mission */
.home--mission {
  padding: 1px 0;
}
.home--mission .container {
    padding-block: 4.5rem;
  }
.home--mission h2 {
    margin-bottom: 1.25rem;
  }
.home--mission p {
    max-width: 68ch;
  }
/* Newsletter */
.home--newsletter {
  padding: 1px 0;
  background-image: url('/media/photos/alex-eckermann-ofdFj1bUKQw-unsplash.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.home--newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
.home--newsletter .container {
    position: relative;
    padding-block: 7rem;
  }
.home--newsletter h2 {
    margin-bottom: 1rem;
    color: #fff;
  }
.home--newsletter p {
    max-width: 62ch;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.88);
  }
/* Contact */
.home--contact {
  padding: 1px 0;
}
.home--contact .container {
    padding-block: 4.5rem;
  }
.home--contact h2 {
    margin-bottom: 1rem;
  }
.home--contact p {
    max-width: 88ch;
    margin-bottom: 1.75rem;
  }
/* Responsive */
@media (max-width: 1100px) {
  .home--hero {
    padding-block: 0rem 3rem;
  }
  .home--hero-media {
    right: -4rem;
  }
}
@media (max-width: 700px) {
  .home--hero {
    padding: 0 0 0;
        padding-block: 0rem 2rem;

  }

  .home--hero-text {
    max-width: 65%;
  }

  .home--hero-media {
    width: 70%;
    right: -10rem;
    top: -5rem;
  }

  .home--mission-vision-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 400px) {
  .home--hero {
    padding: 0 0 0;
  }

  .home--hero-text {
    max-width: 100%;
  }

  .home--hero-media {
    width: 100%;
    top: 1rem;
    right: -5rem;
  }

  .home--hero-photo {
    opacity: 0.25;
  }

  .home--hero-flourish {
    width: 100%;
    margin-top: -4rem;
  }

}
/* About Page */
.about--intro h1 {
    max-width: 20ch;
  }
.about--approach-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about--approach-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.about--approach {
  background-size: cover;
  background-position: center;
}
.about--who-we-help-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}
.about--who-we-help-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.about--who-we-help-text p {
    max-width: 58ch;
  }
.about--who-we-help-media {
  flex: 0 0 38%;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: end;
  padding-top: 6rem;
}
.about--who-we-help-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about--who-we-help-flourish {
  width: 85%;
  margin-top: -6rem;
  justify-self: start;
}
@media (max-width: 768px) {
  .about--who-we-help-media {
    display: none;
  }
}
.about--approach-inset {
  max-width: calc(100% * 3 / 4);
}
.about--approach-inset--right {
  margin-left: 0;
}
.about--approach-inset--left {
  margin-right: calc(100% * 1 / 4);
}
@media (max-width: 768px) {
  .about--approach-inset {
    max-width: 100%;
  }

  .about--approach-inset--right,
  .about--approach-inset--left {
    margin-left: 0;
    margin-right: 0;
  }
}
.about--topics-list {
  columns: 2;
  column-gap: 2rem;
  padding-left: 0;
  list-style: none;
}
.about--topics-list li {
    break-inside: avoid;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 1.0em;
  }
.about--topics-list li::before {
      content: "•";
      margin-right: 0.4em;
    }
@media (max-width: 640px) {
  .about--topics-list {
    columns: 1;
  }
}
.about--team {
  position: relative;
}
.about--team .card {
  position: relative;
  z-index: 1;
  background: white;
}
.about--team .card-list {
  margin-top: var(--size-fluid-2);
  margin-bottom: var(--size-fluid-4);
}
.team-photo {
  aspect-ratio: 1;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-3) var(--radius-3) 0 0;
  margin: calc(-1 * var(--size-fluid-2)) calc(-1 * var(--size-fluid-2)) 1rem;
  display: block;
  width: calc(100% + 2 * var(--size-fluid-2));
  object-fit: cover;
}
.team-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin: 0.25rem 0 0;
}
.team-bio {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
}
.team-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.team-name-row h4 {
    margin: 0;
    margin-top: 0.2rem;
  }
.team-contact {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
}
.linkedin-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-primary);
  display: block;
}
.linkedin-icon:hover {
    fill: var(--color-primary-dark);
  }
.card-list--team {
    display: grid;
    gap: var(--size-fluid-3);
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
  border-radius: var(--radius-3);
  padding: var(--size-fluid-2);
  box-shadow: var(--shadow-4);
}
@media (--motionOK) {
.card {
    animation: var(--animation-fade-in)
}
  }
/* Contact Page */
.contact--intro p,
.contact--technical-assistance p {
  max-width: 70ch;
}
.contact--technical-assistance .container {
    padding-block: 4.5rem;
  }
.contact--intro p.large {
  font-size: 1.25rem;
  max-width: 66%;
}
@media (max-width: 768px) {
  .contact--intro p,
  .contact--technical-assistance p {
    max-width: 100%;
  }

  .contact--intro p.large {
    max-width: 100%;
  }
}
/* TA Types */
.contact--ta-types {
  padding: 1px 0;

}
.contact--ta-types .container {
    padding-block: 4.5rem;
  }
.contact--ta-types p {
    max-width: 80ch;
  }
.ta-type-list {
  margin-top: 2rem;
}
.ta-type {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 1.5rem;
  border-bottom: 1px solid #c8d4ca;
  padding: 1.25rem 0;
  align-items: start;
}
.ta-type--header {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: left;
  padding-top: 0;
  padding-bottom: 0.75rem;
  border-bottom-width: 2px;
}
.ta-type-activity h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
  }
.ta-type-activity p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
  }
.ta-type-usecase h4 {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
  }
@media (max-width: 700px) {
  .ta-type--header {
    display: none;
  }

  .ta-type {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .ta-type-usecase::before {
    content: "Best for";
    display: block;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
  }
}
/* TA Request Form */
.ta-form {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row--two {
  flex-direction: row;
}
@media (max-width: 640px) {
.form-row--two {
    flex-direction: column
}
  }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.form-field label {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}
.form-field .required {
  color: var(--color-primary);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1.5px solid #c8d4ca;
  border-radius: 6px;
  padding: 0.6em 0.85em;
  width: 100%;
  transition: border-color 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
  }
.form-field textarea {
  resize: vertical;
}
.form-hint {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0.25rem 0 0.6rem;
}
.form-fieldset {
  border: 1.5px solid #c8d4ca;
  border-radius: 6px;
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
}
.form-fieldset legend {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    padding: 0 0.25rem;
  }
.form-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    cursor: pointer;
  }
.form-checkbox--standalone {
  font-size: 1rem;
}
.form-field--conditional {
  margin-top: 0.75rem;
}
.form-field--conditional[hidden] {
    display: none;
  }
.form-field--other {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #c8d4ca;
}
.form-field--other[hidden] {
    display: none;
  }
.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-status {
  font-size: 0.95rem;
  margin: 0;
  min-height: 1.4em;
}
.form-status--error {
  color: #c0392b;
}
.ta-form-note {
  max-width: 48rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}
.ta-form-success {
  max-width: 48rem;
  padding: 2rem;
  background-color: var(--color-bg);
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
}
.ta-form-success-headline {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-primary-dark);
  margin: 0 0 0.5rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --shadow-color:       220 40% 2%;
    --shadow-strength:       25%;
  }
}
@keyframes fade-in {
  to { opacity: 1 }
}
