@charset "UTF-8";
/*-----------------------------------------------------------------------------------

  Theme Name: Stahn - Modern Agency Portfolio HTML Template
  Author: 
  Support: 
  Description: 
  Version: 1.0.0

-----------------------------------------------------------------------------------/*

/* Entire snippet is namespaced to prevent Elementor/theme CSS leakage. */
.stahn-homepage,
.stahn-homepage * { box-sizing: border-box; }

.stahn-homepage {
  --stahn-ink: #151515;
  --stahn-paper: #fffaf0;
  --stahn-cream: #f7efe1;
  --stahn-gold: #dda619;
  --stahn-green: #218b36;
  --stahn-purple: #6820ae;
  --stahn-brown: #984500;
  --stahn-red: #c90036;
  --stahn-card: #fffdfa;
  --stahn-muted: #6f6962;
  margin: 0;
  color: var(--stahn-ink);
  background: var(--stahn-paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}

.stahn-homepage a { color: inherit; text-decoration: none; }
.stahn-homepage h1,
.stahn-homepage h2,
.stahn-homepage h3,
.stahn-homepage p { margin: 0; }
.stahn-homepage button,
.stahn-homepage input { font: inherit; }

/* Reused only where the visual treatment is identical. */
.stahn-shared-eyebrow {
  color: var(--stahn-gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.2;
  text-transform: uppercase;
}
.stahn-shared-heading {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: .98;
  text-transform: uppercase;
}
.stahn-shared-arrow { display: inline-block; margin-left: 11px; transition: transform .2s ease; }
.stahn-homepage a:hover .stahn-shared-arrow { transform: translateX(5px); }

/* Hero: independent from every other section. */
.stahn-hero-block {
  position: relative;
  isolation: isolate;
  min-height: 730px;
  color: #fff9ed;

  /* Dynamic image remains on the section */
  background-position: center 58%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Gradient overlay */
.stahn-hero-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(16, 13, 10, 0.82) 0%,
      rgba(24, 15, 9, 0.63) 48%,
      rgba(22, 10, 4, 0.22) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 8, 6, 0.42) 0%,
      transparent 55%
    );
}

/* Keep hero content above the overlay */
.stahn-hero-inner {
  position: relative;
  z-index: 1;
}
.stahn-hero-block::after,
.stahn-domains-block::after,
.stahn-newsletter-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg,
    #dca718 0 6.7%, #4b9b52 6.7% 13.4%, #6c20ad 13.4% 20.1%, #9c4b05 20.1% 26.8%,
    #d13b59 26.8% 33.5%, #e1b83f 33.5% 40.2%, #278d3b 40.2% 46.9%, #8842b0 46.9% 53.6%,
    #9d500c 53.6% 60.3%, #c90036 60.3% 67%, #e1bd53 67% 73.7%, #248a3a 73.7% 80.4%,
    #6a22a9 80.4% 87.1%, #a76530 87.1% 93.8%, #c90036 93.8% 100%);
}
.stahn-hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 100px;
}
.stahn-hero-kicker {
  margin-bottom: 24px;
  color: var(--stahn-gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.stahn-hero-title {
  max-width: 780px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(60px, 6.4vw, 105px);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: .93;
  text-transform: uppercase;
}
.stahn-hero-summary {
  max-width: 720px;
  margin-top: 28px !important;
  color: rgba(255,249,237,.88);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}
.stahn-hero-quote {
  margin: 31px 0 0;
  padding: 4px 0 4px 22px;
  border-left: 5px solid var(--stahn-gold);
}
.stahn-hero-quote-text { font-size: 18px; font-style: italic; }
.stahn-hero-quote-author {
  display: block;
  margin-top: 8px;
  color: var(--stahn-gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.stahn-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.stahn-hero-primary,
.stahn-hero-secondary {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 35px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease;
}
.stahn-hero-primary { background: var(--stahn-gold); color: #111; }
.stahn-hero-secondary { border: 2px solid var(--stahn-red); color: #fff; }
.stahn-hero-primary:hover,
.stahn-hero-secondary:hover { transform: translateY(-2px); }

/* Mission: independent markup and selectors. */
.stahn-mission-block {
  position: relative;
  overflow: hidden;
  background-color: oklch(0.975 0.017 85);
}

/* Exact crosshatch and dot pattern */
.stahn-mission-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;

  background-image:
    radial-gradient(
      circle at 12px 12px,
      rgba(156, 111, 57, 0.6) 2px,
      transparent 2.5px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(21, 21, 21, 0.4) 0,
      rgba(21, 21, 21, 0.4) 1px,
      transparent 1px,
      transparent 22px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(21, 21, 21, 0.4) 0,
      rgba(21, 21, 21, 0.4) 1px,
      transparent 1px,
      transparent 22px
    );
}

/* Keep content above pattern */
.stahn-mission-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  padding: 112px 0;
  text-align: center;
}

.stahn-mission-title {
  max-width: 896px;
  margin: 24px auto 0 !important;

  font-family: "Barlow Condensed", Arial, sans-serif !important;
  font-size: 48px;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #151515;
}

.stahn-mission-copy {
  max-width: 710px !important; 
  margin: 28px auto 0 !important;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #66615b;
}

.stahn-mission-block .stahn-shared-eyebrow {
  font-family: "Barlow Condensed", Arial, sans-serif !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #dda619;
}

/* Tablet */
@media (max-width: 900px) {
  .stahn-mission-inner {
    padding: 90px 0;
  }

  .stahn-mission-title {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .stahn-mission-inner {
    width: calc(100% - 32px);
    padding: 72px 0;
  }

  .stahn-mission-title {
    font-size: 34px;
    line-height: 1.18;
  }

  .stahn-mission-copy {
    font-size: 16px;
  }
}
/* Domains: card variants are explicit, not dependent on section inheritance. */
.stahn-domains-block { position: relative; background: var(--stahn-cream); }
.stahn-domains-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 105px 0 125px; }
.stahn-domains-intro { text-align: center; }
.stahn-domains-title { margin-top: 23px !important; font-size: clamp(42px, 4vw, 60px); }
.stahn-domains-copy { max-width: 730px !important; margin: 19px auto 0 !important; color: var(--stahn-muted); font-size: 18px; }
.stahn-domains-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 65px; }
.stahn-domain-card {
  min-height: 310px;
  padding: 34px 34px 30px;
  border: 1px solid #e7ded1;
  border-left: 7px solid var(--domain-color);
  border-radius: 13px;
  background: var(--stahn-card);
  box-shadow: 0 3px 7px rgba(21,18,15,.1);
}
.stahn-domain-card-hope { --domain-color: #d69f12; --domain-soft: #faedca; }
.stahn-domain-card-help { --domain-color: #218b36; --domain-soft: #dbead9; }
.stahn-domain-card-healing { --domain-color: #6820ae; --domain-soft: #ead9ef; }
.stahn-domain-card-history { --domain-color: #984500; --domain-soft: #ecdfd1; }
.stahn-domain-card-happenings { --domain-color: #c90036; --domain-soft: #f3d2d8; }
.stahn-domain-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--domain-color);
  background: var(--domain-soft);
}
.stahn-domain-icon svg { width: 25px; height: 25px; }
.stahn-domain-name {
  margin-top: 28px !important;
  color: var(--domain-color);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.stahn-domain-description { margin-top: 17px !important; color: var(--stahn-muted); font-size: 17px; }
.stahn-domain-link {
  display: inline-block;
  margin-top: 22px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.stahn-domain-sub {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 20px;
}
.stahn-domain-card2{
  min-height: 210px;
  padding: 30px 20px 30px;
}
.stahn-domain-card2 .stahn-domain-name{
  margin-top: 0px !important; 
}

/* domain page */
.stahn-membership-card {
  width: 100%;
  max-width: 334px;
  min-height: 190px;
  padding: 31px 30px;
  border: 1px solid #ded5c8;
  border-left: 7px solid #dda619;
  border-radius: 17px;
  background-color: #fffdfa;
  box-shadow: 0 3px 5px rgba(21, 18, 15, 0.16);
}

.stahn-membership-card__price {
  margin: 0 0 13px !important; 
  color: #c90036;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.stahn-membership-card__description {
  max-width: 245px;
  margin: 0;
  color: #4f4943;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .stahn-membership-card {
    max-width: 100%;
    min-height: auto;
    padding: 27px 25px;
  }

  .stahn-membership-card__description {
    max-width: none;
    font-size: 18px;
    line-height: 1.6;
  }
}

.stahn-volunteer-card {
  width: 100%;
  min-height: 284px;
  padding: 36px 34px 33px;
  border: 1px solid #ded5c8;
  border-left: 7px solid #218b36;
  border-radius: 17px;
  background-color: #fffdfa;
  box-shadow: 0 3px 5px rgba(21, 18, 15, 0.14);
}

.stahn-volunteer-card__icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  color: #218b36;
}

.stahn-volunteer-card__icon svg {
  display: block;
  width: 39px;
  height: 39px;
}

.stahn-volunteer-card__title {
  margin: 0 0 13px !important;
  color: #111111;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.stahn-volunteer-card__description {
  max-width: 355px;
  margin: 0;
  color: #514b45;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .stahn-volunteer-card {
    max-width: 100%;
    min-height: auto;
    padding: 30px 26px;
  }

  .stahn-volunteer-card__description {
    max-width: none;
    font-size: 18px;
    line-height: 1.6;
  }
}


/* Events: no dependency on domain-card styles. */
.stahn-events-block { background: #fffaf0; }
.stahn-events-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 105px 0 120px; }
.stahn-events-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.stahn-events-title { margin-top: 22px !important; font-size: clamp(42px, 4vw, 60px); }
.stahn-events-all-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border: 2px solid var(--stahn-ink);
  border-radius: 999px;
  padding: 10px 28px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.stahn-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 53px; }
.stahn-event-card {
  min-height: 340px;
  padding: 33px 34px;
  border: 1px solid #e5ddd1;
  border-left: 7px solid var(--stahn-red);
  border-radius: 13px;
  background: var(--stahn-card);
  box-shadow: 0 3px 7px rgba(21,18,15,.1);
}
.stahn-event-date {
  display: grid;
  width: 62px;
  height: 70px;
  place-content: center;
  border-radius: 13px;
  background: var(--stahn-ink);
  color: #fff;
  text-align: center;
}
.stahn-event-month { color: var(--stahn-gold); font-family: "Barlow Condensed", Arial, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .18em; }
.stahn-event-day { font-family: "Barlow Condensed", Arial, sans-serif; font-size: 29px; font-weight: 700; line-height: 1; }
.stahn-event-name { margin-top: 27px !important; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 27px; font-weight: 700; line-height: 1.08; text-transform: uppercase; }
.stahn-event-copy { margin-top: 17px !important; color: var(--stahn-muted); font-size: 17px; line-height: 1.65; }
.stahn-event-link { display: inline-block; margin-top: 22px; color: var(--stahn-red) !important; font-family: "Barlow Condensed", Arial, sans-serif; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

/* Stats: independent selectors. */
.stahn-stats-block { background: var(--stahn-ink); color: #fff; }
.stahn-stats-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 70px 0 72px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stahn-stat-item { text-align: center; }
.stahn-stat-number { color: var(--stahn-gold); font-family: "Barlow Condensed", Arial, sans-serif; font-size: 62px; font-weight: 700; line-height: 1; }
.stahn-stat-label { margin-top: 10px !important; color: #ded6cc; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .23em; text-transform: uppercase; }

/* Membership CTA: independent selectors. */
.stahn-join-block { background: var(--stahn-red); color: #fff9ed; }
.stahn-join-inner { width: min(960px, calc(100% - 48px)); margin: 0 auto; padding: 95px 0 100px; text-align: center; }
.stahn-join-title { font-size: clamp(49px, 4.8vw, 70px); }
.stahn-join-copy { max-width: 700px; margin: 24px auto 0 !important; font-size: 19px; }
.stahn-join-button { display: inline-flex; min-height: 60px; align-items: center; margin-top: 35px; border-radius: 999px; padding: 14px 42px; background: var(--stahn-gold); color: #111 !important; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

/* Newsletter: kept because it is page content, not the site footer. */
.stahn-newsletter-block { position: relative; background: var(--stahn-green); color: #fff9ed; }
.stahn-newsletter-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 65px 0 72px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 65px; }
.stahn-newsletter-title { font-size: clamp(42px, 4vw, 59px); }
.stahn-newsletter-copy { margin-top: 10px !important; font-size: 17px; }
.stahn-newsletter-input { width: 100%; min-height: 58px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; outline: none; padding: 12px 26px; background: rgba(255,255,255,.1); color: #fff; }
.stahn-newsletter-input::placeholder { color: rgba(255,255,255,.65); }
.stahn-newsletter-input:focus { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--stahn-red); }
.stahn-newsletter-button { min-height: 58px; border: 0; border-radius: 999px; padding: 12px 36px; background: #dda619; color: #111; cursor: pointer; font-family: "Barlow Condensed", Arial, sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

@media (max-width: 900px) {
  .stahn-hero-block { min-height: 660px; }
  .stahn-domains-grid,
  .stahn-events-grid { grid-template-columns: repeat(2, 1fr); }
  .stahn-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stahn-newsletter-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 620px) {
  .stahn-hero-inner,
  .stahn-mission-inner,
  .stahn-domains-inner,
  .stahn-events-inner,
  .stahn-stats-inner,
  .stahn-join-inner,
  .stahn-newsletter-inner { width: min(100% - 32px, 1180px); }
  .stahn-hero-inner { padding: 75px 0 82px; }
  .stahn-hero-title { font-size: clamp(52px, 16vw, 73px); }
  .stahn-hero-summary { font-size: 19px; }
  .stahn-hero-primary,
  .stahn-hero-secondary { width: 100%; }
  .stahn-mission-inner,
  .stahn-domains-inner,
  .stahn-events-inner { padding: 78px 0 85px; }
  .stahn-domains-grid,
  .stahn-events-grid,
  .stahn-stats-inner { grid-template-columns: 1fr; }
  .stahn-events-heading-row { align-items: flex-start; flex-direction: column; }
  .stahn-stat-item { padding: 18px 0; }
  .stahn-newsletter-form { grid-template-columns: 1fr; }
  .stahn-newsletter-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .stahn-homepage *, .stahn-homepage *::before, .stahn-homepage *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* about page */
.stahn-about-page,
.stahn-about-page * {
    box-sizing: border-box;
}

.stahn-about-page {
    --ink: #151515;
    --paper: #fffaf0;
    --cream: #f7efe1;
    --card: #fffdfa;
    --gold: #dda619;
    --green: #218b36;
    --red: #c90036;
    --muted: #6f6962;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: 16px/1.65 "DM Sans", Arial, sans-serif;
    overflow: hidden;
}

.stahn-about-page h1,
.stahn-about-page h2,
.stahn-about-page h3,
.stahn-about-page p {
    margin: 0;
}

.stahn-about-page a {
    color: inherit;
    text-decoration: none;
}

.stahn-about-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.stahn-about-display {
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.stahn-about-eyebrow {
    color: #DDA619;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.27em;
    line-height: 1.2;
    text-transform: uppercase;
}

.stahn-about-divider {
    position: relative;
}

.stahn-about-divider::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #dca718 0 6.7%, #4b9b52 6.7% 13.4%, 
      #6c20ad 13.4% 20.1%, #9c4b05 20.1% 26.8%, #d13b59 26.8% 33.5%, 
      #e1b83f 33.5% 40.2%, #278d3b 40.2% 46.9%, #8842b0 46.9% 53.6%, 
      #9d500c 53.6% 60.3%, #c90036 60.3% 67%, #e1bd53 67% 73.7%, 
      #248a3a 73.7% 80.4%, #6a22a9 80.4% 87.1%, #a76530 87.1% 93.8%, 
      #c90036 93.8% 100%);
}

.stahn-about-hero {
    position: relative;
    min-height: 450px;
    color: #fff9ed;
    background: url("stahn-about-hero.jpg") center 58% / cover no-repeat;
}

.stahn-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 12, 9, 0.86),
            rgba(23, 14, 8, 0.58) 55%,
            rgba(23, 10, 4, 0.3)
        ),
        linear-gradient(
            0deg,
            rgba(8, 7, 6, 0.42),
            transparent 60%
        );
}

.stahn-about-hero-inner {
    position: relative;
    z-index: 1;
    padding: 110px 0 105px;
}

.stahn-about-hero-title {
    margin-top: 25px !important;
    font-size: clamp(58px, 6vw, 82px);
}

.stahn-about-hero-copy {
    margin-top: 20px !important;
    color: #ded7cf;
    font-size: 20px;
}


/* --------------------------------
   Story
--------------------------------- */

.stahn-about-story {
    background: var(--paper);
}

.stahn-about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 95px 0 105px;
}

.stahn-about-story-title {
    margin-top: 25px !important;
    font-size: 52px;
}

.stahn-about-story-copy {
    margin-top: 22px !important;
    color: var(--muted);
    font-size: 18px;
}

.stahn-about-story-image {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-left: 6px solid #DDA619 !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 18px rgba(21, 18, 15, 0.17) !important;
}


/* --------------------------------
   Values
--------------------------------- */

.stahn-about-values {
    background: var(--cream);
}

.stahn-about-values-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 78px 0 88px;
}

.stahn-about-value {
    min-height: 210px;
    padding: 35px 36px;
    border: 1px solid #e3dacd;
    border-left: 7px solid;
    border-radius: 14px;
    background: var(--card);
    box-shadow: 0 3px 8px rgba(21, 18, 15, 0.1);
}

.stahn-about-value-vision {
    border-left-color: #DDA619;
    --value-color: #ce9810;
}

.stahn-about-value-mission {
    border-left-color: var(--green);
    --value-color: #1b8730;
}

.stahn-about-value-title {
    font-size: 31px;
    color: var(--value-color);
}

.stahn-about-value-copy {
    margin-top: 15px !important;
    color: var(--muted);
    font-size: 18px;
}


/* --------------------------------
   Bylaws
--------------------------------- */

.stahn-about-bylaws {
    background: var(--paper);
}

.stahn-about-bylaws-inner {
    padding: 90px 0 100px;
}

.stahn-about-section-title {
    margin-top: 24px !important;
    font-size: 50px;
}

.stahn-about-section-intro {
    margin-top: 16px !important;
    color: var(--muted);
    font-size: 18px;
}

.stahn-about-bylaws-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.stahn-about-bylaw-card {
    min-height: 135px;
    padding: 26px 27px;
    border: 1px solid #e3dacd;
    border-radius: 13px;
    background: var(--card);
}

.stahn-about-bylaw-title {
    font-size: 22px;
}

.stahn-about-bylaw-copy {
    margin-top: 10px !important;
    color: var(--muted);
    font-size: 16px;
}

.stahn-about-download {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    margin-top: 32px;
    padding: 12px 31px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* --------------------------------
   Board
--------------------------------- */

.stahn-about-board {
    background: var(--cream);
}

.stahn-about-board-inner {
    padding: 92px 0 110px;
}

.stahn-about-board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 45px;
}

.stahn-about-person {
    padding: 24px;
    border: 1px solid #e3dacd;
    border-radius: 13px;
    background: var(--card);
    box-shadow: 0 3px 8px rgba(21, 18, 15, 0.1);
}

.stahn-about-person-photo {
    display: grid;
    height: 205px;
    place-items: center;
    border-radius: 13px;
    background: var(--ink);
    color: #DDA619;
    font: 700 47px/1 "Barlow Condensed", Arial, sans-serif;
}

.stahn-about-person-name {
    margin-top: 24px !important;
    font-size: 27px;
}

.stahn-about-person-role {
    margin-top: 4px !important;
    color: var(--red);
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.stahn-about-person-bio {
    margin-top: 12px !important;
    color: var(--muted);
    font-size: 16px;
}


/* --------------------------------
   Council
--------------------------------- */

.stahn-about-council {
    background: var(--paper);
}

.stahn-about-council-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    padding: 100px 0 110px;
}

.stahn-about-council-copy {
    margin-top: 25px !important;
    color: var(--muted);
    font-size: 18px;
}

.stahn-about-plan-list {
    display: grid;
    gap: 15px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.stahn-about-plan-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 24px 25px;
    border: 1px solid #e3dacd;
    border-radius: 13px;
    background: var(--card);
}

.stahn-about-plan-number {
    color: #DDA619;
    font: 700 33px/1 "Barlow Condensed", Arial, sans-serif;
}

.stahn-about-plan-title {
    font: 700 20px/1.15 "Barlow Condensed", Arial, sans-serif;
    text-transform: uppercase;
}

.stahn-about-plan-copy {
    margin-top: 5px !important;
    color: var(--muted);
    font-size: 16px;
}

.stahn-about-plan-download {
    background: transparent;
    color: var(--ink);
}


/* --------------------------------
   Contact
--------------------------------- */

.stahn-about-contact {
    background: var(--ink);
    color: #fff;
}

.stahn-about-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 65px 0 70px;
}

.stahn-about-contact-title {
    font-size: 38px;
}

.stahn-about-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 16px;
    color: #d9d1c7;
}

.stahn-about-contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.stahn-about-contact-icon {
    color: #DDA619;
}

.stahn-about-contact-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    padding: 12px 40px;
    border-radius: 999px;
    background: #DDA619;
    color: #111 !important;
    font-family: "Barlow Condensed", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* --------------------------------
   Tablet
--------------------------------- */

@media (max-width: 900px) {

    .stahn-about-story-inner,
    .stahn-about-council-inner {
        grid-template-columns: 1fr;
    }

    .stahn-about-story-image {
        max-width: 680px;
    }

    .stahn-about-board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stahn-about-contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* --------------------------------
   Mobile
--------------------------------- */

@media (max-width: 620px) {

    .stahn-about-shell {
        width: calc(100% - 32px);
    }

    .stahn-about-hero {
        min-height: 380px;
    }

    .stahn-about-hero-inner {
        padding: 80px 0;
    }

    .stahn-about-story-inner,
    .stahn-about-council-inner {
        gap: 45px;
        padding: 72px 0;
    }

    .stahn-about-values-inner,
    .stahn-about-bylaws-grid,
    .stahn-about-board-grid {
        grid-template-columns: 1fr;
    }

    .stahn-about-values-inner,
    .stahn-about-bylaws-inner,
    .stahn-about-board-inner {
        padding: 70px 0 78px;
    }

    .stahn-about-section-title,
    .stahn-about-story-title {
        font-size: 42px;
    }

    .stahn-about-person-photo {
        height: 180px;
    }

    .stahn-about-contact-details {
        align-items: flex-start;
        flex-direction: column;
    }

    .stahn-about-contact-button {
        width: 100%;
        justify-content: center;
    }
}