:root {
  --red: #c8181f;
  --red-dark: #721019;
  --cream: #f4ecd9;
  --yellow: #f7c900;
  --ink: #211516;
  --white: #fffaf0;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Archivo", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 10vw, 144px) 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: var(--cream);
  border-bottom: 1px solid rgba(33, 21, 22, 0.16);
}

.header-content {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  text-decoration: none;
}

.brand img {
  width: clamp(190px, 22vw, 270px);
  height: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a,
.contact-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--red);
}

.hero-art {
  width: 100%;
  height: auto;
}

.about {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--yellow);
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.92) contrast(1.04);
}

.about-burst {
  position: absolute;
  z-index: 2;
  right: -54px;
  bottom: -48px;
  width: clamp(94px, 13vw, 160px);
  transform: rotate(10deg);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--yellow);
  font-size: 1.5rem;
  line-height: 1;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.causes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid rgba(33, 21, 22, 0.28);
  list-style: none;
}

.causes li {
  position: relative;
  padding: 12px 12px 12px 19px;
  border-bottom: 1px solid rgba(33, 21, 22, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.causes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--red);
}

.community {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--red);
  background-image:
    radial-gradient(rgba(255, 250, 240, 0.13) 0.8px, transparent 0.8px),
    linear-gradient(105deg, transparent 0 65%, rgba(114, 16, 25, 0.32) 65% 100%);
  background-size: 6px 6px, auto;
}

.community-content {
  position: relative;
  z-index: 2;
}

.community h2 {
  max-width: 850px;
}

.community-content > p:not(.eyebrow) {
  max-width: 630px;
  margin: 30px 0 34px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.eyebrow-light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--yellow);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--red-dark);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 var(--red-dark);
}

.button span {
  font-size: 1.35rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.social-feeds {
  position: relative;
  z-index: 3;
  margin-top: clamp(80px, 10vw, 128px);
  padding-top: 44px;
  border-top: 1px solid rgba(255, 250, 240, 0.42);
}

.social-feeds-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.social-feeds-heading .eyebrow {
  margin: 0;
}

.social-feeds-heading h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-align: right;
  text-transform: uppercase;
}

.social-feeds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.social-feed-card {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--red-dark);
}

.social-feed-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 3px solid var(--ink);
}

.social-feed-header strong {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-feed-header a,
.social-feed-content > a {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.social-feed-content {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.social-feed-frame {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}

.social-feed-content .tiktok-embed {
  width: 100%;
  min-width: 0 !important;
  margin: 0 !important;
  border: 0;
}

.social-feeds-note {
  max-width: 720px;
  margin: 26px auto 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.74rem;
  text-align: center;
}

.community-flower {
  position: absolute;
  z-index: 1;
  right: -100px;
  bottom: -140px;
  width: min(48vw, 590px);
  opacity: 0.92;
  transform: rotate(-8deg);
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 250, 240, 0.78);
  background: var(--ink);
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 36px;
}

.site-footer p {
  margin: 3px 0;
}

.footer-brand img {
  width: min(100%, 260px);
  height: auto;
  margin-bottom: 18px;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.site-footer a {
  width: fit-content;
  text-underline-offset: 3px;
}

.digimax-strip {
  padding: 13px 0;
  color: var(--ink);
  background: var(--yellow);
}

.digimax-strip .container {
  display: flex;
  justify-content: center;
}

.digimax-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.digimax-credit strong {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.digimax-credit:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    max-width: 620px;
  }

  .about-photo {
    aspect-ratio: 4 / 3;
  }

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

  .social-feeds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-feed-card-tiktok {
    grid-column: 1 / -1;
  }

}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-content {
    min-height: 64px;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav a {
    font-size: 0.7rem;
  }

  h2 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .about-grid {
    gap: 64px;
  }

  .about-photo-wrap::before {
    inset: 12px -10px -12px 10px;
  }

  .about-photo {
    aspect-ratio: 4 / 5;
  }

  .about-burst {
    right: -12px;
    bottom: -42px;
  }

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

  .community-flower {
    right: -105px;
    bottom: -70px;
    width: 330px;
    opacity: 0.32;
  }

  .button {
    width: 100%;
  }

  .social-feeds-heading {
    display: block;
  }

  .social-feeds-heading .eyebrow {
    margin-bottom: 16px;
  }

  .social-feeds-heading h3 {
    text-align: left;
  }

  .social-feeds-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-card-tiktok {
    grid-column: auto;
  }

  .social-feed-content {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

}

@media (max-width: 460px) {
  .header-content {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
