/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1B3A1B;
  --forest-lt:#254D25;
  --amber:    #B87320;
  --amber-lt: #D4931E;
  --cream:    #F4EFE4;
  --parchment:#EDE6D6;
  --charcoal: #252320;
  --mid:      #5A5248;
  --white:    #FFFFFF;
  --max-w:    1140px;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Lato', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 58, 27, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--amber);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav__wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.nav__wordmark span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  font-family: var(--sans);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(184,115,32,0.25);
}

.nav__links .nav__cta a {
  background: var(--amber);
  color: var(--white);
  padding: 6px 14px;
}

.nav__links .nav__cta a:hover {
  background: var(--amber-lt);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* ── PAGE HEADER (for inner pages) ── */
.page-header {
  background: var(--forest);
  padding: 120px 24px 56px;
  text-align: center;
  border-bottom: 3px solid var(--amber);
}

.page-header__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 12px;
}

.page-header__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-header__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('Wally.jpg');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s both;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fd6204;
  max-width: 680px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.9s both;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

.hero__title em {
  font-style: italic;
  color: #fd6204;
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeUp 0.8s 0.6s both;
  text-shadow: none;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.8s both;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}

.btn--primary:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STAT STRIP ── */
.stats {
  background: var(--forest);
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}

.stats__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child { border-right: none; }

.stat__number {
  font-family: var(--sans);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── SECTION BASE ── */
.section {
  padding: 96px 24px;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 20px;
}

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

.section__divider {
  width: 56px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 28px;
}

.section__divider--center { margin-left: auto; margin-right: auto; }

/* ── WHY RELEASE ── */
.why {
  background-image: url('images/wheat.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.why__header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--white);
  border-top: 4px solid var(--amber);
  padding: 40px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,58,27,0.12);
}

.pillar__icon {
  width: 90px;
  height: 90px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  border: 3px solid var(--amber);
}

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

.pillar__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}

.pillar__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ── PHEASANT BREAK ── */
.break {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.break__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/1d144e_592a43c7fb01497f9fdc6e839b47541emv2_d_2800_1867_s_2.webp');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,58,27,0.88) 0%, rgba(27,58,27,0.4) 60%, transparent 100%);
}

.break__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.break__quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  max-width: 860px;
  line-height: 1.3;
  margin-bottom: 16px;
  white-space: nowrap;
}

.break__attr {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-lt);
}

/* ── OUR WORK ── */
.work { background: var(--white); }

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.work__visual { position: relative; }

.work__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.work__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--forest);
  color: var(--white);
  padding: 18px 22px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  max-width: 200px;
}

.work__badge strong {
  display: block;
  font-size: 2rem;
  color: var(--amber-lt);
}

.work__points {
  list-style: none;
  margin: 32px 0;
}

.work__points li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--parchment);
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.6;
}

.work__points li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 8px;
}

/* ── RELEASE SITES ── */
.sites {
  background: var(--forest);
  color: var(--white);
}

.sites .section__kicker { color: var(--amber-lt); }
.sites .section__divider { background: var(--amber-lt); }

.sites__list {
  list-style: none;
}

.sites__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.92rem;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  break-inside: avoid;
}

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

.sites__list a {
  font-weight: 700;
  color: var(--amber-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(212,147,30,0.4);
  transition: color 0.2s;
}

.sites__list a:hover { color: var(--white); }

.sites__season {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  white-space: nowrap;
}

.sites__county {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.sites__map-note {
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ── ABOUT ── */
.about { background: var(--parchment); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__img img {
  width: 100%;
  object-fit: cover;
  border-bottom: 4px solid var(--amber);
}

.about__body p {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__results {
  margin: 24px 0;
  border-left: 3px solid var(--amber);
  padding-left: 24px;
}

.about__results li {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--forest);
  padding: 4px 0;
}

.about__commitment {
  margin-top: 24px;
  background: var(--forest);
  color: var(--white);
  padding: 28px 32px;
}

.about__commitment p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.about__commitment p:last-child { margin-bottom: 0; }
.about__commitment strong { color: var(--amber-lt); }

/* ── DONATE ── */
.donate {
  background: var(--white);
  text-align: center;
}

.donate__inner {
  max-width: 640px;
  margin: 0 auto;
}

.donate__body {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 32px;
  line-height: 1.75;
}

.donate__nonproft {
  margin-top: 0;
  padding: 24px;
  background: var(--parchment);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  border-top: 3px solid var(--amber);
}

/* ── CONTACT ── */
.contact {
  background: var(--forest);
  text-align: center;
  color: var(--white);
}

.contact .section__kicker { color: var(--amber-lt); }
.contact .section__title { color: var(--white); }

.contact__info {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact__value {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.contact__value a { color: var(--amber-lt); transition: color 0.2s; }
.contact__value a:hover { color: var(--white); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 32px 24px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 85px; }

.footer__name {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer__social a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--amber-lt); }

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--forest);
    padding: 16px 0 24px;
    border-bottom: 2px solid var(--amber);
    gap: 0;
    z-index: 999;
  }

  .nav__links.open li { width: 100%; }
  .nav__links.open a { padding: 12px 24px; font-size: 0.85rem; border-radius: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .pillars           { grid-template-columns: 1fr; gap: 20px; }
  .work__grid        { grid-template-columns: 1fr; gap: 40px; }
  .about__grid       { grid-template-columns: 1fr; gap: 32px; }
  .stats__inner      { grid-template-columns: 1fr; }
  .stat              { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child   { border-bottom: none; }
  .work__badge       { position: static; margin-top: 16px; }
  .break__bg         { background-attachment: scroll; }
  .contact__info     { gap: 32px; }
  .footer__inner     { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
}

/* ── MOBILE ENHANCEMENTS ── */

/* --- 820px: tablet / large phone landscape --- */
@media (max-width: 820px) {

  /* iOS fix: background-attachment:fixed causes glitches on mobile Safari */
  .why { background-attachment: scroll; }

  /* Prevent quote from overflowing horizontally on narrow screens */
  .break__quote { white-space: normal; }

  /* Reduce hero content padding so content isn't buried below the nav */
  .hero__content { padding: 96px 20px 60px; }

  /* Reduce page-header padding for inner pages */
  .page-header { padding: 100px 20px 40px; }

  /* Trim the fixed image height — 380px is too tall when stacked */
  .work__visual img { height: 260px; }

  /* Tighten commitment box padding */
  .about__commitment { padding: 20px 24px; }

  /* Allow county/season tags to wrap below site name instead of overflowing */
  .sites__list li { flex-wrap: wrap; gap: 2px 12px; }

  /* Slightly reduce the large stat number when in single-column layout */
  .stat__number { font-size: 2.3rem; }

  /* Reduce nav inner padding so logo has more breathing room */
  .nav__inner { padding: 0 16px; }
}

/* --- 480px: phone portrait --- */
@media (max-width: 480px) {

  /* Further reduce page-header top padding — nav is 68px, give 20px buffer */
  .page-header { padding: 88px 16px 32px; }

  /* Center hero text on portrait phones */
  .hero__content { padding: 88px 16px 48px; }
  .hero__tagline { text-align: center; max-width: 100%; }
  .hero__kicker  { text-align: center; }
  .hero__actions { align-items: center; }

  /* Stack contact info vertically and center */
  .contact__info { flex-direction: column; align-items: center; gap: 24px; }

  /* Shrink stat number further in a stacked, narrow layout */
  .stat__number { font-size: 2rem; }

  /* Reduce image height on phones */
  .work__visual img { height: 220px; }

  /* Tighten commitment box padding on small phones */
  .about__commitment { padding: 16px; }

  /* Ensure donate buttons fill width for easy tapping */
  .donate__inner .btn { width: 100%; text-align: center; }

  /* Reduce footer padding on phones */
  .footer { padding: 24px 16px; }

  /* Tighten the break quote padding */
  .break__content { padding: 40px 16px; }
}

/* ── INDEX PAGE COMPONENTS ── */

/* Hero testimonial card */
.hero__testimonial {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  border-left: 4px solid var(--amber);
  padding: 10px 14px;
  max-width: 260px;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Hero title extra top push (desktop only) */
.hero__title--push { margin-top: 80px; }

/* Break section: quote + rooster image side by side */
.break__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.break__rooster {
  height: 340px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

/* Work section logo block */
.work__logo-wrap {
  text-align: center;
  margin-top: 80px;
  overflow: visible;
}

/* ── INDEX PAGE — MOBILE OVERRIDES ── */

@media (max-width: 820px) {
  /* Hide testimonial card — it overlaps hero content on tablets/phones */
  .hero__testimonial { display: none; }

  /* Remove extra top push on hero title — already padded by hero__content */
  .hero__title--push { margin-top: 0; }

  /* Stack quote and rooster image vertically */
  .break__flex { flex-direction: column; gap: 24px; }

  /* Shrink rooster on tablet */
  .break__rooster { height: 220px; }

  /* Reduce logo block top margin in stacked work layout */
  .work__logo-wrap { margin-top: 40px; }
}

@media (max-width: 480px) {
  /* Shrink rooster further on phones */
  .break__rooster { height: 160px; }

  /* Tighten logo block on small phones */
  .work__logo-wrap { margin-top: 24px; }

  /* Constrain logo image so it doesn't overflow on phones */
  .work__logo-wrap img { max-width: 260px; }
}

/* ── RELEASE SITES PAGE ── */

/* Page header decorative flanking images */
.page-header--decorated { position: relative; overflow: hidden; }

.page-header__deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.page-header__deco--left  { left: 40px; }
.page-header__deco--right { right: 40px; }

.page-header__deco-img {
  width: auto;
  height: 200px;
  object-fit: contain;
}

.page-header__deco-img--shadow {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

/* Two-column sites list */
.sites__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 32px;
}

/* ── RELEASE SITES PAGE — MOBILE OVERRIDES ── */

@media (max-width: 900px) {
  /* Hide flanking images at nav breakpoint — they start overlapping sooner */
  .page-header__deco { display: none; }
}

@media (max-width: 820px) {
  /* Single column site list on tablet/phone */
  .sites__grid { grid-template-columns: 1fr; }
}

/* ── FAQ PAGE ── */

/* Custom photo page header */
.faq__photo-header {
  position: relative;
  margin-top: 68px;
}

.faq__photo-header-img {
  width: 100%;
  height: auto;
  display: block;
}

.faq__photo-header-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
}

.faq__photo-header-title {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
               -1px  1px 0 #000,  1px  1px 0 #000;
}

/* Sub-heading band below photo */
.faq__sub-band {
  background: var(--cream);
  text-align: center;
  padding: 20px 24px;
}

.faq__sub-text {
  color: var(--forest);
  max-width: 600px;
  margin: 0 auto;
}

/* Logo divider between categories */
.faq__logo-divider {
  text-align: center;
  padding: 32px 0;
}

.faq__logo-divider-img {
  width: 320px;
  display: block;
  margin: 0 auto;
}

/* ── FAQ PAGE — MOBILE OVERRIDES ── */

@media (max-width: 820px) {
  /* Keep the title readable as the banner image shrinks */
  .faq__photo-header-overlay { bottom: 12px; }
  .faq__photo-header-title   { font-size: clamp(1.4rem, 4vw, 2rem); }

  /* Shrink logo divider on tablet */
  .faq__logo-divider-img { width: 240px; }
}

@media (max-width: 480px) {
  /* On small phones the overlay approach can crowd — drop the title below the photo */
  .faq__photo-header          { margin-bottom: 0; }
  .faq__photo-header-overlay  { position: static; background: var(--forest); padding: 16px 16px 12px; }
  .faq__photo-header-title    { color: var(--white); font-size: 1.5rem; text-shadow: none; }

  /* Tighten sub-band padding */
  .faq__sub-band { padding: 14px 16px; }

  /* Smaller logo divider on phones */
  .faq__logo-divider-img { width: 180px; }
}

/* ── ABOUT PAGE ── */

/* Page header — photo background with taller padding */
.about__page-header {
  background-image: url('images/Montage.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 140px 24px 70px;
}

.about__page-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.about__page-header-sub {
  text-align: center;
  margin-bottom: 0;
}

/* Shared two-column grid (Mission + Ken sections) */
.about__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Commitment box (Mission section) */
.about__commitment-box {
  background: var(--forest);
  color: var(--white);
  padding: 28px 32px;
  margin-top: 24px;
}

/* Three R's cards */
.about__three-r-card {
  margin-bottom: 24px;
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--amber);
}

.about__three-r-card--last { margin-bottom: 0; }

/* Ken quote box */
.about__quote-box {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--forest);
  border-left: 4px solid var(--amber);
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(212,147,30,0.3);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
  gap: 0;
}

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

.timeline__side {
  flex: 1;
}

.timeline__side--left {
  padding-right: 40px;
  text-align: right;
}

.timeline__side--right {
  padding-left: 40px;
}

.timeline__dot-wrap {
  position: relative;
  flex-shrink: 0;
  width: 0;
  display: flex;
  justify-content: center;
}

.timeline__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--forest);
  box-shadow: 0 0 0 3px var(--amber);
  position: absolute;
  top: 28px;
  left: -9px;
  z-index: 1;
}

.timeline__dot--large {
  width: 22px;
  height: 22px;
  background: var(--amber-lt);
  box-shadow: 0 0 0 4px var(--amber-lt);
  left: -11px;
}

.timeline__card {
  background: var(--forest-lt);
  border: 1px solid rgba(212,147,30,0.3);
  padding: 28px 24px 28px 28px;
}

.timeline__card--right-border {
  border-right: 4px solid var(--amber);
  padding: 28px 28px 28px 24px;
}

.timeline__card--left-border {
  border-left: 4px solid var(--amber);
}

.timeline__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 8px;
}

.timeline__heading {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.timeline__body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.timeline__year {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(212,147,30,0.15);
  line-height: 1;
  margin-top: 8px;
}

.timeline__year--right { text-align: right; }

.timeline__year--today {
  font-size: 3rem;
  font-style: italic;
  color: rgba(212,147,30,0.2);
}

/* Get Involved grid */
.about__involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.about__involve-card {
  background: var(--white);
  border-top: 4px solid var(--amber);
  padding: 28px 20px;
  text-align: center;
}

/* ── ABOUT PAGE — MOBILE OVERRIDES ── */

@media (max-width: 820px) {
  /* Reduce header padding and drop the min-height constraint */
  .about__page-header       { padding: 100px 20px 48px; }
  .about__page-header-inner { min-height: auto; gap: 20px; }

  /* Stack two-col grids */
  .about__two-col { grid-template-columns: 1fr; gap: 32px; }

  /* Tighten commitment box */
  .about__commitment-box { padding: 20px 24px; }

  /* Collapse timeline to single column */
  .timeline__line           { display: none; }

  .timeline__item {
    flex-direction: column;
    margin-bottom: 32px;
  }

  /* Show year as a compact label above the card */
  .timeline__side--left,
  .timeline__side--right {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  /* Put year-only sides before the card by reordering */
  .timeline__item .timeline__side--left  { order: 1; }
  .timeline__dot-wrap                    { order: 2; display: none; }
  .timeline__item .timeline__side--right { order: 3; }

  .timeline__year,
  .timeline__year--right,
  .timeline__year--today {
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: left;
    color: rgba(212,147,30,0.4);
  }

  /* All cards get the same left-border style on mobile */
  .timeline__card,
  .timeline__card--right-border,
  .timeline__card--left-border {
    border: none;
    border-left: 4px solid var(--amber);
    padding: 20px;
  }

  /* Stack Get Involved grid to single column */
  .about__involve-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about__page-header   { padding: 88px 16px 32px; }
  .about__commitment-box { padding: 16px; }
  .about__quote-box      { padding: 16px; }
}

/* ── DNR / RESOURCES PAGE ── */

/* Page header — fixed-height with centered content and decorative images */
.dnr__page-header {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 56px; /* inherit from .page-header, overridden below */
}

/* All decorative image wrappers share absolute positioning */
.dnr__header-deco {
  position: absolute;
  z-index: 2;
}

.dnr__header-deco--far-left  { left: 20px;   top: 50%; transform: translateY(-50%); }
.dnr__header-deco--far-right { right: 20px;  top: 50%; transform: translateY(-50%); }
.dnr__header-deco--near-left { left: 280px;  bottom: 0; }
.dnr__header-deco--near-right{ right: 320px; top: 10px; }

.dnr__header-deco-img          { width: auto; height: 160px; object-fit: contain; }
.dnr__header-deco-img--hunter  { height: 180px; }
.dnr__header-deco-img--bird    { height: 100px; }

/* Center text block */
.dnr__header-text {
  position: relative;
  z-index: 3;
  text-align: center;
}

.dnr__header-kicker {
  font-size: 1.44rem;
  line-height: 1.4;
}

/* Resource card: media variant (image column on right) */
.resource-card--media {
  padding: 0;
  overflow: hidden;
}

/* Inner flex row */
.resource-card__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* Text column */
.resource-card__content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Image column */
.resource-card__img-wrap {
  flex-shrink: 0;
  width: 180px;
}

.resource-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── DNR PAGE — MOBILE OVERRIDES ── */

@media (max-width: 900px) {
  /* Hide all decorative images at nav breakpoint — they collide with text sooner */
  .dnr__header-deco { display: none; }

  /* Let header height be driven by content instead of fixed */
  .dnr__page-header { min-height: auto; }
}

@media (max-width: 480px) {
  .dnr__header-kicker { font-size: 1.1rem; }
}

/* ── HERO — MOBILE FIXES ── */

@media (max-width: 820px) {
  /* Cap height so a portrait phone doesn't show a useless vertical strip.
     56vh keeps the hero prominent but shows the full width of the photo. */
  .hero { min-height: 56vh; }

  /* Shift focus toward the lower half of the frame where
     kneeling subjects and dogs typically sit in field photos. */
  .hero__bg { background-position: center 65%; }
}

@media (max-width: 480px) {
  /* On small phones go a little shorter so content is reachable */
  .hero { min-height: 50vh; }
  .hero__bg { background-position: center 70%; }
}
