.logo {
  text-decoration: none;
  background-image: none;
}

.logo:hover,
.logo:focus {
  color: var(--ink);
}
:root {
  color-scheme: light;
  --cream: #daddd8;
  --slate: #4f6d7a;
  --rust: #ba5c12;
  --ink: #141115;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 17, 21, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: var(--rust);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

a:hover,
a:focus {
  color: #a04f10;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(186, 92, 18, 0.4);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

.section-header p {
  margin: 0;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(20, 17, 21, 0.08);
  transition: box-shadow 0.2s ease;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}
.nav-compact .site-header {
  box-shadow: 0 12px 24px rgba(20, 17, 21, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  transition: padding 0.2s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

.logo img {
  height: 92px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: height 0.2s ease;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  background-image: none;
  font-size: 1.2rem;
  transition: font-size 0.2s ease;
}
.nav-compact .header-inner {
  padding: 10px 0;
}

.nav-compact .logo img {
  height: 70px;
}

.nav-compact .site-nav a {
  font-size: 1rem;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--rust);
}

.site-nav .social-link {
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.35rem;
}
.header-inner {
  font-size: 1.15rem;
}

.nav-compact .header-inner {
  font-size: 1.05rem;
}

.nav-compact .site-nav .social-link {
  font-size: 1.2rem;
}

.site-nav .social-link:hover,
.site-nav .social-link:focus {
  color: #a04f10;
  border-color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(20, 17, 21, 0.2);
  z-index: 20;
}

.skip-link:focus {
  left: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-open .hamburger {
  background: transparent;
}

.nav-open .hamburger::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .hamburger::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: var(--white);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  gap: 32px;
  align-items: start;
}

.hero-title-row {
  grid-column: 1 / -1;
}

.hero-content-row {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--ink);
  margin: 0 0 12px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 3rem);
}

.lead {
  margin: 0 0 24px;
  color: var(--ink);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  gap: 8px;
  cursor: pointer;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #a04f10;
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  border-color: rgba(20, 17, 21, 0.2);
  color: var(--ink);
}

.hero-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  width: min(420px, 100%);
  margin: 0 auto;
}

.hero-card h2 {
  margin-top: 0;
  text-align: center;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(20, 17, 21, 0.1);
}

.clean-list li:last-child {
  border-bottom: none;
}

.about {
  background-color: var(--cream);
  background-image: url("../img/bg_dimension.png");
  background-repeat: repeat;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.org-logo-row {
  display: flex;
  justify-content: center;
  margin: 4px 0 12px;
}

.org-logo-row img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.about .card h3 {
  text-align: center;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.benefits .card h3 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.benefits {
  background-color: var(--slate);
  background-image: url("../img/bg_dark-exa.png");
  background-repeat: repeat;
  color: var(--white);
}

.benefits .section-header h2,
.benefits .section-header p {
  color: var(--white);
}

.benefits .section-header p {
  opacity: 0.8;
}

.benefits .card {
  background: var(--white);
  color: var(--ink);
}

.benefits-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-icon-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.benefit-card {
  display: grid;
  gap: 0;
  padding: 16px 18px;
  background: var(--rust);
  color: var(--white);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
}

.benefit-card:hover,
.benefit-card:focus-visible {
  background: #a04f10;
}


.benefit-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.benefit-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.2s ease;
  font-size: 1rem;
  line-height: 1.55;
}

.benefit-card.is-open .benefit-details {
  opacity: 1;
}

.benefit-details-inner {
  display: block;
  overflow: hidden;
  padding-top: 6pt;
}

.join {
  background-color: var(--white);
  background-image: url("../img/bg_clean-textile.png");
  background-repeat: repeat;
}

.join-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.join-card .button-row {
  margin-left: auto;
}

.faq {
  background-color: var(--cream);
  background-image: url("../img/bg_dimension.png");
  background-repeat: repeat;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(186, 92, 18, 0.45);
  outline-offset: -6px;
  border-radius: 12px;
}

.faq-question i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.is-open .faq-question i {
  transform: rotate(90deg);
}

.faq-question:hover i,
.faq-question:focus-visible i {
  background: #a04f10;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 0 18px;
}

.faq-answer p {
  margin: 0;
}

.board-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.board {
  background-color: var(--slate);
  background-image: url("../img/bg_dark-exa.png");
  background-repeat: repeat;
  color: var(--white);
}

.board .section-header h2,
.board .section-header p {
  color: var(--white);
}

.board .section-header p {
  opacity: 0.8;
}

.board .person-card {
  background: var(--white);
  color: var(--ink);
}

.person-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  margin: 0;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.person-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 12px;
}

.person-card figcaption {
  min-height: 84px;
}

.person-card h3 {
  margin: 0 0 6px;
}

.person-card p {
  margin: 0;
  color: var(--ink);
}

.person-card .role-secondary {
  margin-top: 4px;
  color: var(--ink);
}

.gallery {
  background-color: var(--slate);
  background-image: url("../img/bg_dark-exa.png");
  background-repeat: repeat;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery .section-header h2,
.gallery .section-header p {
  color: var(--white);
}

.gallery .section-header p {
  opacity: 0.8;
}

.gallery-item {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border: 3px solid var(--rust);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 42px solid var(--rust);
  border-left: 42px solid transparent;
  transition: border-top-color 0.2s ease;
}

.gallery-icon {
  position: absolute;
  top: 6px;
  right: 9px;
  color: var(--white);
  font-size: 0.75rem;
  z-index: 1;
  transform: rotate(-45deg);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  border-color: #a04f10;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  border-top-color: #a04f10;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.lightbox-content img {
  max-height: 70vh;
  margin: 0 auto 12px;
}

.lightbox-content figcaption {
  color: var(--ink);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  background: var(--white);
  border: 1px solid rgba(20, 17, 21, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--rust);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  background: var(--cream);
}

.contact {
  background-color: var(--white);
  background-image: url("../img/bg_clean-textile.png");
  background-repeat: repeat;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(20, 17, 21, 0.2);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(186, 92, 18, 0.4);
  border-color: var(--rust);
}

.form-status {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 500;
}

.form-important {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-map {
  min-height: 340px;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 21, 0.2);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 32px 0;
  background: var(--slate);
  background-image: url("../img/bg_dark-exa.png");
  background-repeat: repeat;
  color: var(--white);
  text-align: center;
}

.footer-inner p {
  margin: 6px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(20, 17, 21, 0.1);
    display: none;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .join-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .join-card .button-row {
    margin-left: 0;
  }

  .contact-map {
    min-height: 260px;
  }
}
