@font-face {
  font-family: 'Telegraf';
  src: url('../fonts/telegraf.woff2') format('woff2'),
       url('../fonts/telegraf.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --olive:       #6b6b50;
  --olive-dark:  #57574b;
  --olive-mid:   #787860;
  --white:       #ffffff;
  --black:       #0d0d0d;
  --gray-light:  #f5f5f3;
  --text-dark:   #1a1a18;
  --text-mid:    #3a3a30;

  --font-display: 'Telegraf', sans-serif;
  --font-body:    'Telegraf', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 30px;
}

.section-title--dark  { color: var(--text-dark); }
.section-title--light { color: var(--white); }

.read-more {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.read-more:hover { opacity: 0.7; }

.about__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about__more.is-open {
  max-height: 600px;
}

.about__more-inner {
  padding-top: 1.5rem;
}

.about__more-inner p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about__more-inner p:last-child {
  margin-bottom: 0;
}

.get-help__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.get-help__more.is-open {
  max-height: 500px;
}

.get-help__more-inner {
  padding-top: 0;
  padding-bottom: 30px;
}

.get-help__more-inner p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.get-help__more-inner p:last-child {
  margin-bottom: 0;
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.4rem 2rem;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__link:hover { opacity: 0.7; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: transform 0.3s, opacity 0.3s;
}

.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
}

.hero-split__image {
  position: relative;
  overflow: hidden;
}

.hero-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-split__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem 4rem;
  background: var(--white);
}

.hero-split__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--black);
  display: flex;
  flex-direction: column;
}

.hero-split__heading .line {
  display: block;
  overflow: hidden;
}

.hero-split__heading .line span {
  display: block;
  transform: translateY(100%);
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-split__heading .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-split__heading .line:nth-child(2) span { animation-delay: 0.22s; }
.hero-split__heading .line:nth-child(3) span { animation-delay: 0.34s; }
.hero-split__heading .line:nth-child(4) span { animation-delay: 0.46s; }

@keyframes lineReveal {
  to { transform: translateY(0); }
}

.hero-full {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-full__bg {
  position: absolute;
  inset: 0;
}

.hero-full__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-full__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 3rem 3rem;
}

.hero-full__tagline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tagline-word {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tagline-word:nth-child(1) { animation-delay: 0.2s; }
.tagline-word:nth-child(2) { animation-delay: 0.38s; }
.tagline-word:nth-child(3) { animation-delay: 0.56s; }

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.hero-full__sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.92);
  text-align: center;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.about {
  background: var(--olive-dark);
  padding: 3rem 0;
}

.about__inner {
  max-width: 1270px;
  margin: 0 auto;
}

.about__photo-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin: 0 0 1.2rem;
}

.about__inner + .about__photo-wrap {
  margin-top: 0;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.about__photo:hover { transform: scale(1.02); }

.about__text-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
  padding: 2rem 0 1.5rem;
}

.about__text {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  align-self: flex-start;
}

.mission {
  background: var(--white);
  padding: 4rem 0;
}

.mission__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem;
}

.mission__subtitle {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.mission__card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.mission__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mission__card:hover .mission__card-img { transform: scale(1.04); }

.mission__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.mission__card-text {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-mid);
}

.programs {
  background: var(--white);
  padding: 0 0 0;
}

.programs__top {
  max-width: 1270px;
  margin: 0 auto;
  padding: 4rem 3rem 2rem;
}

.programs__subtitle {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.programs__text {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 860px;
  margin-bottom: 2rem;
}

.programs__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 380px;
}

.programs__photo-wrap {
  overflow: hidden;
}

.programs__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.programs__photo-wrap:hover .programs__photo { transform: scale(1.03); }

.programs__icons-row {
  background: var(--olive-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3rem 4rem;
  gap: 2rem;
}

.programs__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.programs__icon {
  width: 60px;
  height: 60px;
}

.programs__icon svg {
  width: 100%;
  height: 100%;
}

.programs__icon-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.5;
}

.programs__icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  transition: opacity 0.2s;
}
.programs__icon-btn:hover { opacity: 0.75; }

.programs__icon-btn[aria-expanded="true"] .programs__icon {
  transform: scale(1.08);
}

.programs__icon-btn .programs__icon {
  transition: transform 0.25s ease;
}

.programs__accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--olive-dark);
  transition: max-height 0.5s ease;
}

.programs__accordion-panel.is-open {
  max-height: 300px;
}

.programs__accordion-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 2rem;
}

.programs__accordion-inner p {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.volunteer {
  background: var(--olive-dark);
  padding: 4rem 0 3rem;
}

.volunteer__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem;
}

.volunteer__subtitle {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.volunteer__photo-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin: 0 0 1.5rem;
}

.volunteer__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s ease;
}
.volunteer__photo-wrap:hover .volunteer__photo { transform: scale(1.02); }

.volunteer__text-block {
  max-width: 90%;
}

.volunteer__text-block p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

.bike-valet {
  background: var(--olive-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 4rem 0 0;
}

.bike-valet__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem 3rem;
}

.bike-valet__text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
  max-width: 90%;
  margin-bottom: 2rem;
}

.bike-valet__partner {
  width: 240px;
  background: var(--white);
  padding: 1rem;
  margin-bottom: 0;
}

.bike-valet__partner-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bike-valet__photo-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.bike-valet__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transition: transform 0.6s ease;
}
.bike-valet__photo-wrap:hover .bike-valet__photo { transform: scale(1.02); }

.get-help {
  background: var(--olive-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 4rem 0;
}

.get-help__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem;
}

.get-help__subtitle {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.get-help__readmore-row {
  text-align: right;
  margin-bottom: 3rem;
}

.get-help__important {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 2.5rem;
}

.get-help__important-title {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.get-help__important p {
  color: var(--white);
  font-size: 20px;
  line-height: 1.5;
  max-width: 800px;
  margin-bottom: 1rem;
}

.contact {
  background: var(--olive-dark);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 4rem 0;
}

.contact__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact__left {
  position: relative;
}

.contact__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.contact__photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
}

.contact__title {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0;
}

.contact__right {
  padding: 0;
  display: flex;
  align-items: center;
}

.contact__form-outer {
  width: 100%;
  border: 2px solid var(--black);
  padding: 0.6rem;
}

.contact__form-wrap {
  background: var(--white);
  padding: 2.5rem;
}

.contact-form__field {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1.5px solid #ccc;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--olive-dark);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.contact-form__submit:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
}

.footer {
  background: var(--black);
  padding: 1.5rem 3rem;
  text-align: center;
}

.footer__text {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--olive-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-overlay__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.nav-overlay__link:hover { opacity: 0.6; }

@media (max-width: 1024px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .programs__icons-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 2rem;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .contact__photo-wrap {
    min-height: 320px;
  }

  .contact__photo {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split__image {
    height: 55vw;
    min-height: 300px;
  }

  .hero-split__title {
    padding: 2.5rem 2rem;
    justify-content: center;
  }

  .nav__list { display: none; }
  .nav__burger { display: flex; }

  .hero-full__content { padding: 2rem; }

  .about__text-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .get-help__important-title {
    font-size: 48px;
  }

  .programs__photos {
    grid-template-columns: 1fr;
    height: auto;
  }

  .programs__photo-wrap { height: 260px; }

  .programs__icons-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
  }

  .about__inner,
  .mission__inner,
  .programs__top,
  .volunteer__inner,
  .bike-valet__inner,
  .get-help__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer { padding: 1.5rem; }

  .programs__accordion-inner {
    padding: 0 1.5rem 1.5rem;
  }

  .contact__form-outer {
    padding: 0.4rem;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }

  .about__more-inner,
  .get-help__more-inner {
    padding-top: 1rem;
  }

  .volunteer__text-block p {
    font-size: 0.9rem;
  }

  .bike-valet__text,
  .get-help__subtitle,
  .get-help__important p {
    font-size: 0.9rem;
  }

  .programs__icon-label {
    font-size: 14px;
  }

  .tagline-word {
    font-size: 38px;
  }

  .hero-full__sub {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .programs__icons-row {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem 1rem;
  }

  .hero-split__heading {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .about__photo-wrap,
  .volunteer__photo-wrap,
  .bike-valet__photo-wrap {
    height: 220px;
  }

  .contact__title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
.contact-form__msg {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-form__msg--success {
  color: #3a7d44;
}

.contact-form__msg--error {
  color: #c0392b;
}

.contact-form__msg-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0;
  color: inherit;
  opacity: 0.6;
  flex-shrink: 0;
}
.contact-form__msg-close:hover { 
  opacity: 1; 
}