/* ==========================================================================
   Faces of Heroes - Main Stylesheet
   A first responder media brand theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --foh-primary: #0D1B2A;
  --foh-accent: #C1121F;
  --foh-gold: #D4AF37;
  --foh-light: #F5F5F5;
  --foh-white: #FFFFFF;
  --foh-navy-light: #162a3e;
  --foh-text-muted: rgba(255, 255, 255, 0.7);
  --foh-text-dark: #333333;
  --foh-font-heading: 'Oswald', sans-serif;
  --foh-font-body: 'Inter', sans-serif;
  --foh-container: 1200px;
  --foh-radius: 8px;
  --foh-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --foh-transition: 0.3s ease;
}

/* --------------------------------------------------------------------------
   1. Reset & Global
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--foh-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foh-text-dark);
  background-color: var(--foh-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--foh-font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   2. Accessibility
   -------------------------------------------------------------------------- */
.skip-link.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link.screen-reader-text:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--foh-gold);
  color: var(--foh-primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--foh-radius);
  box-shadow: var(--foh-shadow);
}

/* --------------------------------------------------------------------------
   3. Container
   -------------------------------------------------------------------------- */
.foh-container {
  width: 100%;
  max-width: var(--foh-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.foh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--foh-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--foh-radius);
  cursor: pointer;
  transition: all var(--foh-transition);
  text-decoration: none;
  line-height: 1.2;
}

.foh-btn:hover {
  transform: translateY(-2px);
}

.foh-btn:active {
  transform: translateY(0);
}

.foh-btn--primary {
  background-color: var(--foh-accent);
  color: var(--foh-white);
  border-color: var(--foh-accent);
}

.foh-btn--primary:hover {
  background-color: #a3101a;
  border-color: #a3101a;
  box-shadow: 0 6px 20px rgba(193, 18, 31, 0.4);
}

.foh-btn--outline {
  background-color: transparent;
  color: var(--foh-white);
  border-color: var(--foh-white);
}

.foh-btn--outline:hover {
  background-color: var(--foh-white);
  color: var(--foh-primary);
}

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

.foh-btn--white:hover {
  background-color: var(--foh-light);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.foh-btn--full {
  width: 100%;
}

.foh-btn--large {
  padding: 16px 40px;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   5. Section Title
   -------------------------------------------------------------------------- */
.foh-section-title {
  font-family: var(--foh-font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  line-height: 1.2;
}

.foh-section-title--center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--foh-primary);
  transition: all var(--foh-transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--foh-container);
  margin: 0 auto;
}

.site-header__brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.site-header__brand .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-header__brand .custom-logo {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-header__logo-text {
  font-family: var(--foh-font-heading);
  color: var(--foh-white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Hamburger */
.site-header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--foh-white);
  border-radius: 2px;
  transition: all var(--foh-transition);
}

.hamburger__line:nth-child(1) {
  top: 0;
}

.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__line:nth-child(3) {
  bottom: 0;
}

/* Hamburger to X animation */
[aria-expanded="true"] .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}

[aria-expanded="true"] .hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Navigation */
.site-header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--foh-primary);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.site-header__nav.is-open {
  display: flex;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-menu li a {
  font-family: var(--foh-font-heading);
  color: var(--foh-white);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--foh-transition);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--foh-gold);
  transition: width var(--foh-transition);
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: var(--foh-gold);
}

.nav-menu li a:hover::after,
.nav-menu li a:focus::after {
  width: 100%;
}

.nav-menu__cta {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--foh-accent);
  color: var(--foh-white);
  font-family: var(--foh-font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--foh-radius);
  transition: background-color var(--foh-transition);
}

.nav-menu__cta:hover {
  background-color: #a3101a;
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--foh-primary);
  color: var(--foh-white);
  padding: 60px 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__logo {
  font-family: var(--foh-font-heading);
  font-size: 22px;
  color: var(--foh-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-footer__tagline {
  color: var(--foh-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav-menu a {
  color: var(--foh-white);
  font-size: 14px;
  transition: color var(--foh-transition);
}

.footer-nav-menu a:hover {
  color: var(--foh-gold);
}

.site-footer__social {
  display: flex;
  gap: 16px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--foh-white);
  font-size: 18px;
  transition: all var(--foh-transition);
}

.site-footer__social-link:hover {
  color: var(--foh-gold);
  border-color: var(--foh-gold);
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.site-footer__copyright {
  font-size: 13px;
  color: var(--foh-text-muted);
}

.site-footer__powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.site-footer__powered-by-text {
  font-size: 11px;
  color: var(--foh-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--foh-font-heading);
}

.site-footer__powered-by-logo {
  width: 100px;
  height: auto;
  opacity: 0.7;
  transition: opacity var(--foh-transition);
}

.site-footer__powered-by a:hover .site-footer__powered-by-logo {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.foh-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.foh-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 42, 0.7) 0%,
    rgba(13, 27, 42, 0.85) 100%
  );
  z-index: 1;
}

.foh-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.foh-hero__title {
  font-family: var(--foh-font-heading);
  color: var(--foh-white);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.foh-hero__subtitle {
  font-family: var(--foh-font-body);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.foh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   9. About Home
   -------------------------------------------------------------------------- */
.foh-about-home {
  padding: 60px 0;
  background-color: var(--foh-light);
}

.foh-about-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.foh-about-home__text {
  order: 2;
}

.foh-about-home__summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--foh-text-dark);
  margin-bottom: 24px;
}

.foh-about-home__image {
  order: 1;
}

.foh-about-home__image img {
  border-radius: var(--foh-radius);
  box-shadow: var(--foh-shadow);
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.foh-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 40px 0;
}

.foh-stats--row {
  width: 100%;
}

.foh-stats__item {
  text-align: center;
  padding: 24px 16px;
}

.foh-stats__number {
  font-family: var(--foh-font-heading);
  color: var(--foh-gold);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.foh-stats__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   11. Services Home
   -------------------------------------------------------------------------- */
.foh-services-home {
  background-color: var(--foh-primary);
  color: var(--foh-white);
  padding: 60px 0;
}

.foh-services-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.foh-service-card {
  background-color: var(--foh-navy-light);
  padding: 32px 24px;
  border-radius: var(--foh-radius);
  transition: transform var(--foh-transition), box-shadow var(--foh-transition);
}

.foh-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.foh-service-card__icon {
  color: var(--foh-gold);
  font-size: 32px;
  margin-bottom: 16px;
}

.foh-service-card__title {
  font-family: var(--foh-font-heading);
  color: var(--foh-white);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.foh-service-card__desc {
  color: var(--foh-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.foh-service-card__link {
  color: var(--foh-gold);
  font-family: var(--foh-font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--foh-transition);
}

.foh-service-card__link::after {
  content: '\2192';
}

.foh-service-card__link:hover {
  gap: 12px;
}

/* --------------------------------------------------------------------------
   12. Gallery Home
   -------------------------------------------------------------------------- */
.foh-gallery-home {
  padding: 60px 0;
}

.foh-gallery-home__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
  font-size: 16px;
}

.foh-gallery-home__feed {
  margin-bottom: 32px;
}

.foh-gallery-home__placeholder {
  border: 2px dashed #ccc;
  border-radius: var(--foh-radius);
  padding: 60px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.foh-gallery-home__cta {
  text-align: center;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   12b. Partnered Agencies
   -------------------------------------------------------------------------- */
.foh-partners {
  background-color: var(--foh-light);
  padding: 60px 0;
  text-align: center;
}

.foh-partners__subtitle {
  font-size: 16px;
  color: var(--foh-text-dark);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.foh-partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.foh-partner-card {
  background-color: var(--foh-white);
  border-radius: var(--foh-radius);
  padding: 32px 24px;
  box-shadow: var(--foh-shadow);
  transition: transform var(--foh-transition), box-shadow var(--foh-transition);
}

.foh-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.foh-partner-card__icon {
  color: var(--foh-accent);
  margin-bottom: 16px;
}

.foh-partner-card__name {
  font-family: var(--foh-font-heading);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--foh-primary);
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   13. CTA Banner
   -------------------------------------------------------------------------- */
.foh-cta-banner {
  background-color: var(--foh-accent);
  color: var(--foh-white);
  text-align: center;
  padding: 60px 20px;
}

.foh-cta-banner__title {
  font-family: var(--foh-font-heading);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.foh-cta-banner__text {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   14. Page Hero
   -------------------------------------------------------------------------- */
.foh-page-hero {
  background-color: var(--foh-primary);
  color: var(--foh-white);
  padding: 120px 0 40px;
  text-align: center;
}

.foh-page-hero--fundraiser {
  border-bottom: 4px solid var(--foh-accent);
}

.foh-page-hero__title {
  font-family: var(--foh-font-heading);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

.foh-page-hero__subtitle {
  color: var(--foh-text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foh-page-hero__date {
  color: var(--foh-gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   15. About Bio
   -------------------------------------------------------------------------- */
.foh-about-bio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
}

.foh-about-bio__image img {
  border-radius: var(--foh-radius);
  box-shadow: var(--foh-shadow);
  width: 100%;
}

.foh-about-bio__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--foh-text-dark);
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   16. Quote
   -------------------------------------------------------------------------- */
.foh-quote {
  background-color: var(--foh-light);
  padding: 60px 0;
}

.foh-quote__block {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--foh-text-dark);
  border-left: 4px solid var(--foh-gold);
  padding-left: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.foh-quote__block cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  color: #666;
}

/* --------------------------------------------------------------------------
   17. Timeline
   -------------------------------------------------------------------------- */
.foh-timeline {
  padding: 60px 0;
}

.foh-timeline__track {
  position: relative;
  padding-left: 32px;
}

.foh-timeline__track::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #ddd;
}

.foh-timeline__item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}

.foh-timeline__item:last-child {
  margin-bottom: 0;
}

.foh-timeline__marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--foh-gold);
  border-radius: 50%;
  border: 3px solid var(--foh-white);
  box-shadow: 0 0 0 2px var(--foh-gold);
  z-index: 1;
}

.foh-timeline__content {
  padding-left: 8px;
}

.foh-timeline__year {
  color: var(--foh-gold);
  font-family: var(--foh-font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.foh-timeline__title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--foh-text-dark);
}

.foh-timeline__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* --------------------------------------------------------------------------
   18. Stats Row
   -------------------------------------------------------------------------- */
.foh-stats-row {
  background-color: var(--foh-primary);
  color: var(--foh-white);
  padding: 40px 0;
}

/* --------------------------------------------------------------------------
   19. Service Detail
   -------------------------------------------------------------------------- */
.foh-service-detail {
  padding: 60px 0;
}

.foh-service-detail:nth-child(odd) {
  background-color: var(--foh-white);
}

.foh-service-detail:nth-child(even) {
  background-color: var(--foh-light);
}

.foh-service-detail--highlight {
  background-color: var(--foh-primary) !important;
  color: var(--foh-white);
}

.foh-service-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.foh-service-detail--right .foh-service-detail__image {
  order: 1;
}

.foh-service-detail--right .foh-service-detail__text {
  order: 2;
}

.foh-service-detail__image img {
  border-radius: var(--foh-radius);
  box-shadow: var(--foh-shadow);
  width: 100%;
}

.foh-service-detail__placeholder {
  background-color: #e0e0e0;
  min-height: 300px;
  border-radius: var(--foh-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.foh-service-detail__title {
  font-family: var(--foh-font-heading);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.2;
}

.foh-service-detail__subtitle {
  color: var(--foh-gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.foh-service-detail__list {
  list-style: none;
  padding: 0;
}

.foh-service-detail__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.foh-service-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--foh-gold);
  border-radius: 50%;
}

/* Callout */
.foh-callout {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  margin: 16px 0;
}

.foh-callout--large {
  padding: 24px 0;
}

.foh-callout__number {
  font-family: var(--foh-font-heading);
  color: var(--foh-gold);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.foh-callout--large .foh-callout__number {
  font-size: 48px;
}

.foh-callout__text {
  font-size: 14px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   20. Contact
   -------------------------------------------------------------------------- */
.foh-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 60px 0;
}

.foh-contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.foh-contact__heading {
  font-family: var(--foh-font-heading);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.foh-contact__social-link {
  color: var(--foh-text-dark);
  transition: color var(--foh-transition);
  font-size: 14px;
}

.foh-contact__social-link:hover {
  color: var(--foh-gold);
}

.foh-contact__mission {
  background-color: var(--foh-light);
  padding: 24px;
  border-radius: var(--foh-radius);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.foh-contact__form-wrapper {
  background-color: var(--foh-white);
}

/* --------------------------------------------------------------------------
   21. Contact Form
   -------------------------------------------------------------------------- */
.foh-contact-form__group {
  margin-bottom: 20px;
}

.foh-contact-form__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--foh-text-dark);
}

.foh-contact-form__input,
.foh-contact-form__select,
.foh-contact-form__textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--foh-font-body);
  font-size: 15px;
  color: var(--foh-text-dark);
  background-color: var(--foh-white);
  border: 1px solid #ccc;
  border-radius: var(--foh-radius);
  transition: border-color var(--foh-transition), box-shadow var(--foh-transition);
  -webkit-appearance: none;
  appearance: none;
}

.foh-contact-form__input:focus,
.foh-contact-form__select:focus,
.foh-contact-form__textarea:focus {
  outline: none;
  border-color: var(--foh-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.foh-contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.foh-contact-form__status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.foh-contact-form__status--success {
  color: var(--foh-gold);
}

.foh-contact-form__status--error {
  color: var(--foh-accent);
}

.required {
  color: var(--foh-accent);
  margin-left: 2px;
}

/* --------------------------------------------------------------------------
   22. Gallery Page
   -------------------------------------------------------------------------- */
.foh-gallery-feed__placeholder {
  border: 2px dashed #ccc;
  border-radius: var(--foh-radius);
  padding: 60px 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.foh-photo-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.foh-photo-grid__item {
  overflow: hidden;
  border-radius: var(--foh-radius);
}

.foh-photo-grid__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.foh-photo-grid__item:hover img {
  transform: scale(1.05);
}

.foh-photo-grid__placeholder {
  background-color: #e0e0e0;
  border-radius: var(--foh-radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.foh-gallery-cta {
  text-align: center;
  padding: 40px 0;
}

/* --------------------------------------------------------------------------
   23. Fundraiser Page
   -------------------------------------------------------------------------- */
.foh-fundraiser-about__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.foh-fundraiser-about__location {
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

.foh-fundraiser-causes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.foh-cause-card {
  background-color: var(--foh-white);
  box-shadow: var(--foh-shadow);
  padding: 32px 24px;
  border-radius: var(--foh-radius);
  transition: transform var(--foh-transition);
}

.foh-cause-card:hover {
  transform: translateY(-4px);
}

.foh-cause-card__icon {
  color: var(--foh-gold);
  font-size: 32px;
  margin-bottom: 16px;
}

.foh-cause-card__title {
  font-family: var(--foh-font-heading);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.foh-fundraiser-stats {
  background-color: var(--foh-primary);
  color: var(--foh-white);
  text-align: center;
  padding: 60px 0;
}

.foh-fundraiser-gallery {
  padding: 60px 0;
}

/* --------------------------------------------------------------------------
   24. Lightbox
   -------------------------------------------------------------------------- */
.foh-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.foh-lightbox.is-active {
  display: flex;
}

.foh-lightbox__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.foh-lightbox__image {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   25. Scroll Animations
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   26. Article / Utility
   -------------------------------------------------------------------------- */
.foh-article {
  padding: 60px 0;
  max-width: 720px;
  margin: 0 auto;
}

.foh-article h2 {
  font-family: var(--foh-font-heading);
  font-size: 24px;
  margin-bottom: 16px;
  margin-top: 40px;
}

.foh-article p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.foh-article img {
  border-radius: var(--foh-radius);
  margin: 24px 0;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   480px - Small devices
   -------------------------------------------------------------------------- */
@media (min-width: 480px) {
  .foh-hero__title {
    font-size: 48px;
  }

  .foh-hero__subtitle {
    font-size: 18px;
  }

  .foh-section-title {
    font-size: 32px;
  }

  .foh-page-hero__title {
    font-size: 36px;
  }

  .foh-photo-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .foh-fundraiser-causes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   768px - Tablet
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .foh-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  /* Header */
  .site-header__inner {
    padding: 12px 32px;
  }

  .site-header__menu-toggle {
    display: none;
  }

  .site-header__nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    align-items: center;
  }

  .nav-menu {
    flex-direction: row;
    gap: 28px;
  }

  .nav-menu li a {
    font-size: 13px;
  }

  /* Hero */
  .foh-hero__title {
    font-size: 56px;
  }

  .foh-hero__subtitle {
    font-size: 18px;
  }

  /* Section Title */
  .foh-section-title {
    font-size: 36px;
  }

  /* About Home */
  .foh-about-home {
    padding: 80px 0;
  }

  .foh-about-home__grid {
    grid-template-columns: 1fr 1fr;
  }

  .foh-about-home__text {
    order: 1;
  }

  .foh-about-home__image {
    order: 2;
  }

  /* Stats */
  .foh-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .foh-stats__number {
    font-size: 44px;
  }

  /* Services */
  .foh-services-home {
    padding: 80px 0;
  }

  .foh-services-home__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Partners */
  .foh-partners {
    padding: 80px 0;
  }

  .foh-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA Banner */
  .foh-cta-banner {
    padding: 80px 20px;
  }

  .foh-cta-banner__title {
    font-size: 32px;
  }

  /* Page Hero */
  .foh-page-hero {
    padding: 140px 0 60px;
  }

  .foh-page-hero__title {
    font-size: 42px;
  }

  /* About Bio */
  .foh-about-bio__grid {
    grid-template-columns: 1fr 1fr;
    padding: 80px 0;
  }

  /* Quote */
  .foh-quote__block {
    font-size: 24px;
  }

  /* Service Detail */
  .foh-service-detail {
    padding: 80px 0;
  }

  .foh-service-detail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .foh-service-detail--left .foh-service-detail__image {
    order: 1;
  }

  .foh-service-detail--left .foh-service-detail__text {
    order: 2;
  }

  .foh-service-detail--right .foh-service-detail__image {
    order: 2;
  }

  .foh-service-detail--right .foh-service-detail__text {
    order: 1;
  }

  /* Contact */
  .foh-contact__grid {
    grid-template-columns: 1fr 1fr;
    padding: 80px 0;
  }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }

  /* Photo Grid */
  .foh-photo-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   1024px - Desktop
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  /* Header */
  .site-header__logo-text {
    font-size: 24px;
  }

  .nav-menu {
    gap: 36px;
  }

  .nav-menu li a {
    font-size: 14px;
  }

  /* Hero */
  .foh-hero__title {
    font-size: 72px;
  }

  .foh-hero__subtitle {
    font-size: 20px;
  }

  /* Section Title */
  .foh-section-title {
    font-size: 40px;
    margin-bottom: 48px;
  }

  /* About Home */
  .foh-about-home {
    padding: 100px 0;
  }

  .foh-about-home__grid {
    gap: 64px;
  }

  /* Stats */
  .foh-stats__number {
    font-size: 52px;
  }

  /* Services */
  .foh-services-home {
    padding: 100px 0;
  }

  .foh-services-home__grid {
    gap: 32px;
  }

  /* Gallery */
  .foh-gallery-home {
    padding: 80px 0;
  }

  /* Partners */
  .foh-partners {
    padding: 100px 0;
  }

  .foh-partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .foh-partner-card__name {
    font-size: 16px;
  }

  /* CTA Banner */
  .foh-cta-banner__title {
    font-size: 36px;
  }

  /* Page Hero */
  .foh-page-hero {
    padding: 160px 0 80px;
  }

  .foh-page-hero__title {
    font-size: 52px;
  }

  /* About Bio */
  .foh-about-bio__grid {
    gap: 64px;
    padding: 100px 0;
  }

  /* Timeline */
  .foh-timeline {
    padding: 80px 0;
  }

  /* Service Detail */
  .foh-service-detail {
    padding: 100px 0;
  }

  .foh-service-detail__grid {
    gap: 64px;
  }

  .foh-service-detail__title {
    font-size: 28px;
  }

  /* Contact */
  .foh-contact__grid {
    gap: 64px;
    padding: 100px 0;
  }

  /* Photo Grid */
  .foh-photo-grid__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .foh-photo-grid__item img {
    height: 320px;
  }

  /* Footer */
  .site-footer {
    padding: 80px 0 0;
  }
}
