/*
Theme Name: Red House Run
Theme URI: https://redhouserun.org
Author: TenThirty.One
Author URI: https://tenthirty.one
Description: Community theme for Red House Run, Rosedale MD
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: redhouserun
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:  #2D4A2D;
  --green2: #3D6B3D;
  --brick:  #8B4A3C;
  --sky:    #A8C4D4;
  --cream:  #F5F2ED;
  --dark:   #1A1A1A;
  --white:  #FFFFFF;
  --font:   'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--dark);
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: -8%;
  background-image: url('images/hero-aerial.jpg');
  background-size: cover;
  background-position: center 40%;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; }
  .rhr-pulse-ring { animation: none; }
  .hero__scroll-line { animation: none; }
  .nav__logo-word { opacity: 1; transform: none; animation: none; }
  .nav__logo-name::after { width: 100%; animation: none; }
  .nav__logo-sub { opacity: 1; animation: none; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.2) 0%,
    rgba(26,26,26,0.55) 55%,
    rgba(26,26,26,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 2rem;
  max-width: 900px;
}

.hero__title {
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__since {
  color: var(--cream);
  font-weight: 300;
  display: block;
  letter-spacing: 0.3em;
  font-size: 0.65em;
  margin-top: 0.3em;
  opacity: 0.8;
}

.hero__cta {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.85rem 2.2rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.hero__cta:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

/* Welcome */
.welcome {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
}

.welcome__inner { max-width: 680px; margin: 0 auto; }

.section-eyebrow {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1.2rem;
}

.welcome__heading {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.welcome__tagline {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1.5rem;
}

.welcome__body {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* Facebook */
.facebook {
  background: var(--green);
  padding: 5rem 2rem;
  text-align: center;
}

.facebook__inner { max-width: 600px; margin: 0 auto; }

.facebook__heading {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.facebook__body {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--white);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-fb:hover { background: var(--cream); }
.btn-fb svg { width: 18px; height: 18px; fill: #1877F2; flex-shrink: 0; }

/* Info Cards */
.info {
  background: var(--cream);
  padding: 5rem 2rem;
}

.info__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.info-card {
  padding: 2rem 1.8rem;
  border-top: 3px solid var(--green);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,74,45,0.12);
}

.info-card__icon { font-size: 1.8rem; margin-bottom: 1rem; }

.info-card__title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.info-card__body {
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

/* Map */
.neighborhood-map { background: var(--white); }

.map__header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.map__heading {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--green);
  margin-bottom: 2rem;
}

#rhr-map {
  width: 100%;
  height: 480px;
  display: block;
  background: var(--cream);
}

.rhr-marker-pin {
  width: 22px;
  height: 22px;
  background: #2D4A2D;
  border: 3px solid #F5F2ED;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
}

.rhr-pulse-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhr-pulse-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(45,74,45,0.25);
  animation: rhr-pulse 2.2s ease-out infinite;
  z-index: 1;
}

@keyframes rhr-pulse {
  0%   { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.rhr-poi-pin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #F5F2ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
}

.leaflet-container { font-family: 'Montserrat', sans-serif; }
.leaflet-control-attribution {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  background: rgba(245,242,237,0.85) !important;
}

/* Page template */
.rhr-page {
  background: var(--cream);
  min-height: 80vh;
  padding-top: 80px;
}

.admin-bar .rhr-page { padding-top: 112px; }

.rhr-page__title-bar {
  background-color: var(--green);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
  padding: 3rem 3rem 3.5rem;
  position: relative;
}

.rhr-page__title-bar--has-img {
  padding: 5rem 3rem 5.5rem;
  background-size: cover !important;
  background-position: center !important;
}

.rhr-page__eyebrow {
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}

.rhr-page__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.rhr-page__content { background: var(--cream); }

.rhr-page__content .entry-content,
.rhr-page__content p,
.rhr-page__content li,
.rhr-page__content td {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.rhr-page__content h1,
.rhr-page__content h2,
.rhr-page__content h3,
.rhr-page__content h4 {
  font-family: var(--font);
  color: var(--green);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.rhr-page__content h2:not(.rhr-article-card__title),
.rhr-page__content h3:not(.rhr-article-card__title) {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rhr-page__content h2:not(.rhr-article-card__title)::before,
.rhr-page__content h3:not(.rhr-article-card__title)::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--green);
  border-radius: 2px;
  flex-shrink: 0;
}

.rhr-page__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  padding: 3.5rem 2rem 2rem;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__brand { text-align: center; }

.site-footer__name {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.3rem;
}

.site-footer__tagline {
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.site-footer__nav a {
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

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

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__copy,
.site-footer__credit {
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

.site-footer__credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

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

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.8rem 2rem;
  background: rgba(35,58,35,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, top 0.3s;
}

.admin-bar .site-nav { top: 32px; }

@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

.site-nav.scrolled {
  background: rgba(35,58,35,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.page .site-nav,
body.single .site-nav,
body.single-post .site-nav,
body.home .site-nav,
body.blog .site-nav,
body.archive .site-nav,
body.category .site-nav,
body.tag .site-nav {
  background: rgba(28,46,28,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.page .site-nav.scrolled,
body.single .site-nav.scrolled,
body.single-post .site-nav.scrolled,
body.home .site-nav.scrolled,
body.blog .site-nav.scrolled,
body.archive .site-nav.scrolled,
body.category .site-nav.scrolled,
body.tag .site-nav.scrolled {
  background: rgba(28,46,28,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Badge + wordmark — left column */
.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__badge {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nav__badge-rect {
  stroke: rgba(255,255,255,0.55);
  stroke-width: 1.5;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  animation: badge-draw 1s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}

@keyframes badge-draw {
  to { stroke-dashoffset: 0; }
}

.nav__badge-text {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__wordmark-name {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  animation: wordmark-in 0.6s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}

.nav__wordmark-sub {
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,237,0.65);
  margin-top: 0.3rem;
  opacity: 0;
  animation: rhr-fade-in 0.5s ease 0.9s forwards;
}

@keyframes wordmark-in {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rhr-fade-in {
  to { opacity: 1; }
}

/* Nav links — center column */
.nav__links,
.nav__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.nav__links li { position: relative; }

/* Invisible hover bridge — fills gap between button and dropdown */
.nav__links > li::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

/* Top-level buttons */
.nav__links > li > a {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  display: block;
  white-space: nowrap;
  text-align: center;
  min-width: 80px;
}

.nav__links > li > a:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.nav__links > li > a:active {
  transform: scale(0.97);
  background: rgba(255,255,255,0.2);
  transition-duration: 0.06s;
}

.nav__links > li > a.current,
.nav__links > li.current-menu-item > a,
.nav__links > li.current-menu-ancestor > a {
  background: rgba(255,255,255,0.13);
  color: var(--white);
  border-color: rgba(255,255,255,0.24);
}

/* Dropdowns */
.nav__links .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 210px;
  background: rgba(22,38,22,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  list-style: none;
  z-index: 300;
  padding: 0.4rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav__links > li:hover > .sub-menu,
.nav__links > li.open > .sub-menu,
.nav__links .menu-item-has-children:hover > .sub-menu,
.nav__links .menu-item-has-children.open > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__links .sub-menu li { position: relative; }
.nav__links .sub-menu li::after { display: none; }

/* Dropdown items */
.nav__links .sub-menu a {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  display: block;
  padding: 0.65rem 1.2rem;
  white-space: nowrap;
  background: none;
  border: none;
  outline: none;
  transition: background 0.14s, color 0.14s;
  transform: none !important;
  box-shadow: none !important;
}

.nav__links .sub-menu a:hover {
  background: rgba(255,255,255,0.09) !important;
  color: var(--white) !important;
}

.nav__links .sub-menu li + li {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Nested sub-menus — fly right by default */
.nav__links .sub-menu .sub-menu {
  top: -0.4rem;
  left: calc(100% + 4px);
  right: auto;
  transform: translateY(-4px);
  border-radius: 8px;
}

.nav__links .sub-menu li:hover > .sub-menu,
.nav__links .sub-menu li.open > .sub-menu {
  transform: translateY(0);
}

/* Submenu caret */
.nav__caret {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  transition: transform 0.2s, color 0.2s;
}
.nav__caret:hover { color: #fff; }
.menu-item-has-children.open > .nav__caret { transform: rotate(180deg); color: #fff; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  justify-self: end;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile */
@media (max-width: 768px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    padding: 0.75rem 1.25rem;
  }
  .nav__hamburger { display: flex; }
  .nav__links { display: none; }

  .nav__links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22,38,22,0.98);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  /* Hide empty list items WP sometimes injects */
  .nav__links li:empty { display: none; }

  .nav__links li { width: 100%; }

  .nav__links > li > a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 0.82rem;
    text-align: center;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    transform: none !important;
  }

  .nav__links > li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__links > li.menu-item-has-children > a {
    flex: 0 0 auto;
    border-bottom: none;
    text-align: center;
    padding-right: 0.25rem;
  }

  .nav__caret {
    display: flex;
    align-items: center;
    padding: 0.9rem 0.5rem 0.9rem 0;
    flex: 0 0 auto;
    order: 1;
  }

  .nav__caret svg { width: 14px; height: 14px; }

  .nav__links > li.menu-item-has-children > .sub-menu {
    width: 100%;
    order: 2;
  }

  .nav__links .sub-menu {
    display: none;
    position: static;
    transform: none !important;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav__links li.open > .sub-menu {
    display: block;
  }

  .nav__links .sub-menu a {
    padding: 0.75rem 2.5rem;
    font-size: 0.76rem;
    border-left: none;
    text-align: center;
    justify-content: center;
  }

  /* Sub-sub-menu items — caret stays right */
  .nav__links .sub-menu .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .nav__links .sub-menu .menu-item-has-children > a {
    flex: 0 0 auto;
    border-bottom: none;
    padding-right: 0.25rem;
  }
  .nav__links .sub-menu .menu-item-has-children > .nav__caret {
    flex: 0 0 auto;
    order: 1;
    padding: 0.75rem 0.25rem;
  }
  .nav__links .sub-menu .menu-item-has-children > .sub-menu {
    width: 100%;
    order: 2;
  }

  .nav__links .sub-menu .sub-menu a {
    padding-left: 3.5rem;
    text-align: center;
  }

  .nav__links .sub-menu li + li { border-top: none; }

  /* Hide music player on mobile */
  .rhr-music-wrap { display: none !important; }

  .nav__wordmark-name { font-size: 1rem; }
  .nav__wordmark-sub { display: none; }
  .nav__badge { width: 36px; height: 36px; }
  .nav__badge-text { font-size: 0.68rem; }

  .hero__content { padding: 5rem 1.5rem 2rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3.2rem); }

  .welcome { padding: 4rem 1.5rem; }
  .facebook { padding: 4rem 1.5rem; }
  .info { padding: 4rem 1.5rem; }
  .info__inner { gap: 1.5rem; }

  .rhr-page__title-bar { padding: 2rem 1.5rem 2.5rem; }
  .rhr-page { padding-top: 70px; }

  .site-footer__bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  #rhr-map { height: 320px; }

  .map__header { padding: 3rem 1.5rem 1.5rem; }
}

@media (max-width: 400px) {
  .nav__logo-name { font-size: 1.2rem; }
  .hero__title { font-size: 2rem; }
}


/* Music player */
.rhr-music-wrap {
  position: fixed;
  top: 160px;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: stretch;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  transform: translateX(calc(100% - 52px));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  box-shadow: -4px 4px 24px rgba(0,0,0,0.4);
}

.rhr-music-wrap.visible {
  opacity: 1;
}

.rhr-music-wrap.open {
  transform: translateX(0);
}

/* Pull tab */
.rhr-player-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 52px;
  min-width: 52px;
  padding: 16px 0;
  background: rgba(45,74,45,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
  flex-shrink: 0;
}

.rhr-player-tab:hover { background: rgba(55,88,55,1); }

/* Equalizer */
.rhr-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.rhr-eq__bar {
  display: block;
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: rgba(255,255,255,0.8);
  height: 5px;
}

.rhr-eq.active .rhr-eq__bar:nth-child(1) { animation: eq1 0.7s ease-in-out infinite; }
.rhr-eq.active .rhr-eq__bar:nth-child(2) { animation: eq1 0.45s ease-in-out 0.12s infinite; }
.rhr-eq.active .rhr-eq__bar:nth-child(3) { animation: eq1 0.85s ease-in-out 0.06s infinite; }
.rhr-eq.active .rhr-eq__bar:nth-child(4) { animation: eq1 0.6s ease-in-out 0.22s infinite; }

@keyframes eq1 {
  0%, 100% { height: 5px; }
  50%       { height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rhr-eq.active .rhr-eq__bar { animation: none; height: 12px; }
}

/* Arrow */
.rhr-tab__arrow {
  width: 10px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.rhr-music-wrap.open .rhr-tab__arrow {
  transform: rotate(180deg);
}

/* Drawer */
.rhr-player-drawer {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(22,22,22,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 1.2rem 0.85rem 1rem;
  white-space: nowrap;
}

.rhr-player__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.rhr-player__btn:hover { background: var(--green2); transform: scale(1.06); }
.rhr-player__play-icon { display: flex; align-items: center; justify-content: center; }
.rhr-player__play-icon svg { width: 17px; height: 17px; color: var(--white); }

.rhr-player__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rhr-player__label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(100,160,100,1);
}

.rhr-player__track {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--white);
}

.rhr-player__track em {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.rhr-player__mute {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.2s;
}

.rhr-player__mute:hover { color: var(--white); }
.rhr-player__mute svg { width: 17px; height: 17px; }
.rhr-player__mute.muted { color: var(--brick); }

@media (max-width: 768px) {
  .rhr-music-wrap { top: 86px; }
}


/* WP block editor — strip injected padding so content start is consistent */
.rhr-page__content > .wp-block-group,
.rhr-page__content > .is-layout-flow,
.rhr-page__content > .wp-block-post-content,
.rhr-page__content > .entry-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* WP block editor — force consistent layout on pages */
.rhr-page__content .wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
}

.rhr-page__content .wp-block-column {
  width: auto !important;
  flex: none !important;
}

/* WP blocks responsive */
@media (max-width: 768px) {
  .rhr-page__content .wp-block-columns {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .rhr-page__content .wp-block-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* General page typography */
.rhr-page__content img {
  max-width: 100%;
  height: auto;
}

.rhr-page__content a {
  color: var(--green);
  text-decoration: none;
}

.rhr-page__content p a,
.rhr-page__content li a,
.rhr-page__content td a {
  text-decoration: underline;
}

.rhr-page__content h1 a,
.rhr-page__content h2 a,
.rhr-page__content h3 a,
.rhr-page__content h4 a {
  text-decoration: none;
  color: inherit;
}

.rhr-page__content a:hover {
  color: var(--brick);
}

/* Single post — constrain body text width without shifting left edge */
.single .rhr-page__content {
  max-width: 1100px;
}

.rhr-post-meta {
  max-width: 760px;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(68,68,68,0.55);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(45,74,45,0.12);
}

.rhr-post-meta span { display: flex; align-items: center; gap: 0.4rem; }
.rhr-post-meta a { color: var(--green) !important; text-decoration: none !important; }
.rhr-post-meta a:hover { color: var(--brick) !important; text-decoration: underline !important; }

.rhr-post-thumb {
  display: none;
}

.rhr-post-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #3a3a3a;
}

.rhr-post-body p {
  margin-bottom: 1.5rem;
}

.rhr-post-body h2 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em;
}

.rhr-post-body h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green);
  margin: 2rem 0 0.6rem;
}

.rhr-post-body h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--brick);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rhr-post-body strong { color: var(--dark); }

.rhr-post-body a { color: var(--green); text-decoration: underline; }
.rhr-post-body a:hover { color: var(--brick); }

.rhr-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.rhr-post-body ul,
.rhr-post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.rhr-post-body li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.rhr-post-body blockquote {
  border-left: 4px solid var(--green);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: rgba(45,74,45,0.04);
  font-style: italic;
  color: #555;
}

.rhr-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(45,74,45,0.12);
  flex-wrap: wrap;
}

.rhr-post-nav__link {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

.rhr-post-nav__link:hover { color: var(--brick); }
.rhr-post-nav__link--next { margin-left: auto; text-align: right; }

/* -------------------------------------------------------
   Articles page (home.php — Posts page)
------------------------------------------------------- */
.rhr-articles {
  padding-bottom: 1rem;
}

.rhr-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.rhr-article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rhr-article-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.rhr-article-card__thumb-wrap {
  overflow: hidden;
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  display: flex;
}

.rhr-article-card__thumb {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  flex: 1;
}

.rhr-article-card:hover .rhr-article-card__thumb {
  transform: scale(1.04);
}

.rhr-article-card__body {
  padding: 1.25rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

.rhr-article-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(68,68,68,0.5);
  margin-bottom: 0.75rem;
}

.rhr-article-card__cat {
  background: var(--green);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.rhr-article-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 0.75rem !important;
  color: var(--dark);
}

.rhr-article-card__title a {
  color: inherit;
  text-decoration: none;
}

.rhr-article-card__title a:hover {
  color: var(--green);
}

.rhr-article-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.25rem;
  flex: 1;
}

.rhr-article-card__link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.2s;
}

.rhr-article-card__link:hover {
  color: var(--brick);
}

/* Pagination */
.rhr-articles__pagination {
  margin-top: 1rem;
}

.rhr-articles__pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rhr-articles__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border: 2px solid rgba(45,74,45,0.2);
  border-radius: 4px;
  transition: all 0.2s;
}

.rhr-articles__pagination .page-numbers.current,
.rhr-articles__pagination .page-numbers:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.rhr-articles__empty {
  text-align: center;
  padding: 4rem 0;
  color: #888;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .rhr-article-card {
    flex-direction: column;
  }
  .rhr-article-card__thumb-wrap {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .rhr-article-card__body {
    padding: 1.25rem;
  }
}

/* -------------------------------------------------------
   History page — rhr-hist components
------------------------------------------------------- */
.rhr-hist { font-family: var(--font); color: #2a2a2a; }

.rhr-hist__intro { margin-bottom: 3.5rem; font-size: 1.05rem; line-height: 1.85; color: #444; }
.rhr-hist__intro p { margin-bottom: 1.25rem; }
.rhr-hist__intro p:last-child { margin-bottom: 0; }
.rhr-hist__lead { font-size: 1.25rem; font-weight: 600; color: var(--green); line-height: 1.6; border-left: 4px solid var(--green); padding-left: 1.25rem; margin-bottom: 1.5rem; }

.rhr-hist__section-title { font-size: 1.5rem !important; font-weight: 800 !important; color: var(--green) !important; display: flex !important; align-items: center !important; gap: 0.65rem !important; margin: 3.5rem 0 1.5rem !important; }
.rhr-hist__section-title::before { content: '' !important; display: inline-block !important; width: 4px !important; height: 1em !important; background: var(--green) !important; border-radius: 2px !important; flex-shrink: 0 !important; }

.rhr-hist__body { font-size: 1rem; line-height: 1.85; color: #444; margin-bottom: 2rem; }
.rhr-hist__body p { margin-bottom: 1.1rem; }
.rhr-hist__body p:last-child { margin-bottom: 0; }

.rhr-hist__timeline { position: relative; margin: 2rem 0 3rem; padding-left: 0; list-style: none; }
.rhr-hist__timeline::before { content: ''; position: absolute; left: 72px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #2D4A2D, rgba(45,74,45,0.15)); }
.rhr-hist__tl-item { display: flex; gap: 0; margin-bottom: 2rem; position: relative; }
.rhr-hist__tl-item:last-child { margin-bottom: 0; }
.rhr-hist__tl-year { width: 72px; flex-shrink: 0; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em; color: var(--green); padding-top: 0.15rem; line-height: 1.3; text-align: right; padding-right: 1rem; }
.rhr-hist__tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 0.2rem; position: relative; z-index: 1; box-shadow: 0 0 0 3px var(--cream); }
.rhr-hist__tl-item--present .rhr-hist__tl-dot { background: var(--brick); box-shadow: 0 0 0 3px var(--cream); }
.rhr-hist__tl-item--present .rhr-hist__tl-year { color: var(--brick); }
.rhr-hist__tl-text { padding-left: 1.25rem; font-size: 0.95rem; line-height: 1.7; color: #444; }
.rhr-hist__tl-text strong { color: #1a1a1a; font-weight: 700; }

.rhr-hist__feature { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.09); display: flex; flex-direction: column; margin: 2rem 0 2.5rem; }
.rhr-hist__feature-header { background: var(--green); padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rhr-hist__feature-tag { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.15); padding: 0.25rem 0.6rem; border-radius: 20px; flex-shrink: 0; }
.rhr-hist__feature-title { font-size: 1.15rem !important; font-weight: 800 !important; color: #fff !important; margin: 0 !important; line-height: 1.2 !important; }
.rhr-hist__feature-body { padding: 1.5rem 1.75rem; font-size: 0.95rem; line-height: 1.75; color: #444; }
.rhr-hist__feature-body p { margin-bottom: 1rem; }
.rhr-hist__feature-body p:last-child { margin-bottom: 0; }
.rhr-hist__feature-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff !important; background: var(--green); padding: 0.75rem 1.5rem; text-decoration: none !important; margin: 0 1.75rem 1.75rem; align-self: flex-start; border-radius: 2px; transition: background 0.2s; }
.rhr-hist__feature-link:hover { background: var(--green2) !important; }

.rhr-hist__callout { background: #fffbf0; border: 1px solid #e8d89a; border-left: 4px solid #b8860b; border-radius: 0 6px 6px 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.rhr-hist__callout-title { font-size: 1rem !important; font-weight: 800 !important; color: #7a5c00 !important; margin-bottom: 0.6rem !important; }
.rhr-hist__callout p { font-size: 0.92rem; line-height: 1.75; color: #665500; margin: 0; }
.rhr-hist__callout p + p { margin-top: 0.75rem; }

.rhr-hist__coming-soon { margin: 2rem 0; border: 2px dashed rgba(45,74,45,0.25); border-radius: 8px; padding: 2rem; background: rgba(45,74,45,0.02); }
.rhr-hist__cs-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); background: #e8f0e8; border: 1px solid rgba(45,74,45,0.2); padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem; }
.rhr-hist__cs-badge::before { content: '◑'; font-size: 0.7rem; }
.rhr-hist__cs-title { font-size: 1.2rem !important; font-weight: 800 !important; color: var(--green) !important; margin-bottom: 0.75rem !important; }
.rhr-hist__coming-soon p { font-size: 0.92rem; line-height: 1.75; color: #555; margin-bottom: 0.75rem; }
.rhr-hist__coming-soon p:last-child { margin-bottom: 0; }
.rhr-hist__coming-soon a { color: var(--green) !important; text-decoration: underline !important; }

/* -------------------------------------------------------
   404 page
------------------------------------------------------- */
.rhr-404 {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding: 1rem 0 2rem;
}

.rhr-404__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.rhr-404__post {
  width: 10px;
  height: 60px;
  background: #8B6914;
  border-radius: 2px;
}

.rhr-404__board {
  background: #2D4A2D;
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
  border: 3px solid #fff;
  outline: 3px solid #2D4A2D;
  min-width: 120px;
  order: -1;
  margin-bottom: 0;
}

.rhr-404__number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.rhr-404__sign-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.35rem;
}

.rhr-404__content {
  flex: 1;
  padding-top: 0.5rem;
}

.rhr-404__lead {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.rhr-404__body {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  max-width: 560px;
}

.rhr-404__suggestions {
  margin-bottom: 2rem;
}

.rhr-404__suggest-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

.rhr-404__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rhr-404__links li a {
  font-size: 0.95rem;
  color: var(--green) !important;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.rhr-404__links li a:hover {
  color: var(--brick) !important;
}

.rhr-404__creek-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f7f4ef;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  max-width: 500px;
}

.rhr-404__creek-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.rhr-404__creek-note p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.rhr-404__creek-note a {
  color: var(--green) !important;
  text-decoration: underline !important;
}

@media (max-width: 600px) {
  .rhr-404 {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .rhr-404__sign {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .rhr-404__post {
    width: 60px;
    height: 10px;
    order: 1;
  }
  .rhr-404__board {
    order: 0;
  }
}

/* -------------------------------------------------------
   Resources section — rhr-res components
------------------------------------------------------- */
.rhr-res { font-family: var(--font); color: #2a2a2a; }

/* Intro */
.rhr-res__intro { margin: 0 0 3rem; font-size: 1.05rem; line-height: 1.85; color: #444; }
.rhr-res__intro p { margin-bottom: 1.25rem; }
.rhr-res__intro p:last-child { margin-bottom: 0; }
.rhr-res__lead { font-size: 1.25rem; font-weight: 600; color: var(--green); line-height: 1.6; border-left: 4px solid var(--green); padding-left: 1.25rem; margin-bottom: 1.5rem; }

/* Section titles */
.rhr-res__section-title { font-size: 1.4rem !important; font-weight: 800 !important; color: var(--green) !important; display: flex !important; align-items: center !important; gap: 0.65rem !important; margin: 3rem 0 1.25rem !important; }
.rhr-res__section-title::before { content: '' !important; display: inline-block !important; width: 4px !important; height: 1em !important; background: var(--green) !important; border-radius: 2px !important; flex-shrink: 0 !important; }

/* Landing page cards */
.rhr-res__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.rhr-res__cards > a.rhr-res__card { display: flex; gap: 1.25rem; background: #fff; border-radius: 8px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); text-decoration: none !important; color: inherit !important; border-top: 3px solid var(--green); transition: box-shadow 0.2s, transform 0.2s; }
.rhr-res__cards > div.rhr-res__card { display: flex; gap: 1.25rem; border-radius: 8px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 3px solid var(--green); }
.rhr-res__cards > *:not(a):not(div) { display: none !important; }
.rhr-res__cards > div:not([class]) { display: none !important; }
.rhr-res__card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.12); transform: translateY(-2px); }
.rhr-res__card-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.rhr-res__card-body { display: flex; flex-direction: column; gap: 0.5rem; }
.rhr-res__card-title { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.rhr-res__card-desc { font-size: 0.9rem; line-height: 1.7; color: #555; margin: 0; }
.rhr-res__card-link { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-top: 0.25rem; }

/* Landing note */
.rhr-res__note { display: flex; gap: 1rem; align-items: flex-start; background: #f7f4ef; border-radius: 6px; padding: 1.25rem 1.5rem; }
.rhr-res__note-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.5; }
.rhr-res__note p { font-size: 0.92rem; line-height: 1.75; color: #555; margin: 0; }

/* Issue cards */
.rhr-res__issue { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-bottom: 1.5rem; }
.rhr-res__issue-header { padding: 1rem 1.5rem; display: flex; align-items: center; gap: 0.75rem; background: #f7f4ef; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.rhr-res__issue-tag { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; flex-shrink: 0; }
.rhr-res__issue-tag--violation { background: #8B4A3C; color: #fff; }
.rhr-res__issue-tag--expectation { background: #2D4A2D; color: #fff; }
.rhr-res__issue-title { font-size: 1.05rem !important; font-weight: 800 !important; color: var(--dark) !important; margin: 0 !important; }
.rhr-res__issue-body { padding: 1.25rem 1.5rem; font-size: 0.95rem; line-height: 1.8; color: #444; }
.rhr-res__issue-body p { margin-bottom: 0.85rem; }
.rhr-res__issue-body p:last-child { margin-bottom: 0; }
.rhr-res__code-ref { display: flex; gap: 0.75rem; align-items: baseline; background: #f0f5f0; border-top: 1px solid #dde8dd; padding: 0.85rem 1.5rem; font-size: 0.82rem; color: #444; flex-wrap: wrap; }
.rhr-res__code-label { font-weight: 700; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); flex-shrink: 0; }
.rhr-res__code-ref a { color: var(--green) !important; text-decoration: underline !important; }

/* Callout */
.rhr-res__callout { background: #fffbf0; border: 1px solid #e8d89a; border-left: 4px solid #b8860b; border-radius: 0 6px 6px 0; padding: 1.5rem 1.75rem; margin: 2rem 0; }
.rhr-res__callout--green { background: #f0f5f0; border-color: #c8ddc9; border-left-color: var(--green); }
.rhr-res__callout-title { font-size: 1rem !important; font-weight: 800 !important; color: #7a5c00 !important; margin-bottom: 0.6rem !important; }
.rhr-res__callout--green .rhr-res__callout-title { color: var(--green) !important; }
.rhr-res__callout p { font-size: 0.92rem; line-height: 1.75; color: #665500; margin: 0; }
.rhr-res__callout--green p { color: #2a3d2a; }
.rhr-res__callout p + p { margin-top: 0.75rem; }
.rhr-res__callout a { color: var(--green) !important; text-decoration: underline !important; }

/* Action CTA */
.rhr-res__action { background: var(--green); border-radius: 8px; padding: 1.75rem 2rem; margin: 2.5rem 0; max-width: 600px; }
.rhr-res__action-title { font-size: 1.1rem !important; font-weight: 800 !important; color: #fff !important; margin-bottom: 0.5rem !important; }
.rhr-res__action p { font-size: 0.92rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.rhr-res__action-link { display: inline-block; background: #fff; color: var(--green) !important; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.65rem 1.25rem; border-radius: 3px; text-decoration: none !important; transition: background 0.2s; }
.rhr-res__action-link:hover { background: rgba(255,255,255,0.9) !important; }

/* Highlight box (app download) */
.rhr-res__highlight-box { display: flex; gap: 1.25rem; align-items: flex-start; background: #fff; border-radius: 8px; padding: 1.75rem; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 3px solid var(--green); margin-bottom: 2.5rem; }
.rhr-res__highlight-icon { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.rhr-res__highlight-title { font-size: 1.05rem !important; font-weight: 800 !important; color: var(--dark) !important; margin-bottom: 0.5rem !important; }
.rhr-res__highlight-box p { font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 1rem; }
.rhr-res__app-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rhr-res__app-btn { display: inline-block; background: var(--green); color: #fff !important; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1.1rem; border-radius: 3px; text-decoration: none !important; transition: background 0.2s; }
.rhr-res__app-btn:hover { background: #3D6B3D !important; }

/* Steps */
.rhr-res__steps { list-style: none; padding: 0; margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rhr-res__step { display: flex; gap: 1.25rem; align-items: flex-start; background: #fff; border-radius: 8px; padding: 1.25rem 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.rhr-res__step-num { width: 2rem; height: 2rem; border-radius: 50%; background: var(--green); color: #fff; font-size: 0.85rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rhr-res__step-body { flex: 1; }
.rhr-res__step-title { font-size: 0.95rem !important; font-weight: 800 !important; color: var(--dark) !important; margin-bottom: 0.4rem !important; }
.rhr-res__step-body p { font-size: 0.9rem; line-height: 1.75; color: #555; margin: 0; }
.rhr-res__step-list { margin: 0.5rem 0 0 1rem; padding: 0; font-size: 0.88rem; line-height: 1.8; color: #555; }
.rhr-res__step-list li { margin-bottom: 0.2rem; }
.rhr-res__step-body a { color: var(--green) !important; }

/* Process timeline (complaint page) */
.rhr-res__timeline { margin: 0 0 2.5rem; display: flex; flex-direction: column; gap: 0; position: relative; }
.rhr-res__timeline::before { content: ''; position: absolute; left: 11px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(to bottom, var(--green), rgba(45,74,45,0.15)); }
.rhr-res__tl-item { display: flex; gap: 1.25rem; position: relative; padding-bottom: 1.5rem; }
.rhr-res__tl-item:last-child { padding-bottom: 0; }
.rhr-res__tl-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--green); flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 3px var(--cream); margin-top: 0.15rem; }
.rhr-res__tl-item--alt .rhr-res__tl-dot { background: #b8860b; }
.rhr-res__tl-body { flex: 1; background: #fff; border-radius: 6px; padding: 1rem 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.rhr-res__tl-title { font-size: 0.95rem !important; font-weight: 800 !important; color: var(--dark) !important; margin-bottom: 0.35rem !important; }
.rhr-res__tl-item--alt .rhr-res__tl-title { color: #7a5c00 !important; }
.rhr-res__tl-body p { font-size: 0.88rem; line-height: 1.7; color: #555; margin: 0; }

/* Contact grid */
.rhr-res__contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.rhr-res__contact-card { background: #fff; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 3px solid var(--green); }
.rhr-res__contact-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.rhr-res__contact-title { font-size: 0.9rem !important; font-weight: 800 !important; color: var(--dark) !important; margin-bottom: 0.5rem !important; }
.rhr-res__contact-card p { font-size: 0.85rem; line-height: 1.7; color: #555; margin: 0; }
.rhr-res__contact-card a { color: var(--green) !important; text-decoration: underline !important; word-break: break-all; }

/* Responsive */
@media (max-width: 768px) {
  .rhr-res__cards { grid-template-columns: 1fr; }
  .rhr-res__contact-grid { grid-template-columns: 1fr; }
  .rhr-res__card { flex-direction: column; gap: 0.75rem; }
  .rhr-res__highlight-box { flex-direction: column; gap: 0.75rem; }
}

/* Resources — school cards */
.rhr-res__school-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-bottom: 1.5rem; }
.rhr-res__school-header { background: #f7f4ef; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.rhr-res__school-grade-badge { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: var(--green); color: #fff; padding: 0.25rem 0.65rem; border-radius: 20px; flex-shrink: 0; }
.rhr-res__school-name { font-size: 1.05rem !important; font-weight: 800 !important; color: var(--dark) !important; margin: 0 !important; }
.rhr-res__school-body { padding: 1.25rem 1.5rem; font-size: 0.95rem; line-height: 1.8; color: #444; }
.rhr-res__school-body p { margin-bottom: 1rem; }
.rhr-res__school-body p:last-child { margin-bottom: 0; }
.rhr-res__school-details { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; border-top: 1px solid #eee; padding-top: 1rem; }
.rhr-res__school-detail { display: flex; gap: 1rem; align-items: baseline; font-size: 0.88rem; }
.rhr-res__school-detail-label { font-weight: 700; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); width: 70px; flex-shrink: 0; }
.rhr-res__school-detail a { color: var(--green) !important; text-decoration: underline !important; }

/* Resources — feature card (fire dept) */
.rhr-res__feature-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.09); margin-bottom: 2.5rem; }
.rhr-res__feature-card-header { background: var(--green); padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.rhr-res__feature-card-tag { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.15); padding: 0.25rem 0.6rem; border-radius: 20px; flex-shrink: 0; }
.rhr-res__feature-card-title { font-size: 1.15rem !important; font-weight: 800 !important; color: #fff !important; margin: 0 !important; }
.rhr-res__feature-card-body { padding: 1.5rem 1.75rem; }

/* Resources — body text blocks */
.rhr-res__body-text { font-size: 1rem; line-height: 1.85; color: #444; margin-bottom: 2rem; }
.rhr-res__body-text p { margin-bottom: 1.1rem; }
.rhr-res__body-text p:last-child { margin-bottom: 0; }

/* Coming soon card variant */
.rhr-res__card--coming-soon { border-top-color: #b8860b; background: #fffbf0; opacity: 0.9; cursor: default; }
.rhr-res__card--coming-soon:hover { transform: none; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.rhr-res__card-coming-badge { display: inline-flex; align-items: center; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #7a5c00; background: #e8d89a; border: 1px solid #c8a800; padding: 0.2rem 0.6rem; border-radius: 20px; margin-bottom: 0.4rem; }
.rhr-res__card--coming-soon .rhr-res__card-title { color: #7a5c00; }
.rhr-res__card--coming-soon .rhr-res__card-desc { color: #665500; }
.rhr-res__card--coming-soon a { color: #7a5c00 !important; }
