/* ===================== VARIABLES ===================== */
:root {
  --dark-green: #2b3a1c;
  --mid-green: #23422a;
  --orange: #e2762e;
  --orange-dark: #cc6524;
  --orange-deep: #cf5720;
  --cream: #f4efe4;
  --cream-dark: #ece4d3;
  --text-dark: #23291f;
  --gold: #cfa227;
  --maroon: #7a2323;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.4;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.section-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark-green);
  margin: 3rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 2px;
  width: 60px;
  background: var(--orange);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn-disabled,
.btn-disabled:hover {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-green {
  background: var(--dark-green);
  color: var(--white);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
}

.btn-outline-header {
  background: transparent;
  border: 1px solid #ddd6c4;
  color: var(--text-dark);
  font-weight: 700;
}

.btn-outline-header:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
  opacity: 1;
}

/* ===================== HEADER ===================== */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 3rem;
  background: var(--cream);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #e3d9bd;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo .shield-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text .brand {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.logo-text .brand span {
  color: var(--orange);
}

.logo-text .sub-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 2px;
}

.logo-text .tagline {
  font-size: 0.62rem;
  color: #7a7a72;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.main-nav > ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  position: relative;
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #63645c;
  padding-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav li.active > a {
  color: var(--dark-green);
}

.main-nav a:hover::after,
.main-nav li.active > a::after {
  transform: scaleX(1);
}

.main-nav li {
  position: relative;
}

.nav-caret {
  font-size: 0.6rem;
  margin-left: 3px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-40%);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 6px;
  width: 210px;
  padding: 0.4rem 0;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
}

@media (min-width: 1101px) {
  .main-nav li:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
  }
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 1px solid #f1ede2;
}

.dropdown-panel svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-panel li:last-child a {
  border-bottom: none;
}

.dropdown-panel a:hover {
  color: var(--orange);
  background: #faf7f0;
}

.dropdown-panel a:hover svg {
  stroke: var(--orange);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-left: 4px;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#viewEventsBtn {
  font-family: inherit;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.events-box {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  min-width: 190px;
  overflow: hidden;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.events-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.events-box .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid #f1ede2;
  text-decoration: none;
  color: inherit;
}

.events-box a.row {
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.events-box a.row:hover {
  background: var(--cream-dark);
}

.events-box .row:last-child {
  border-bottom: none;
}

.events-box .label {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--text-dark);
}

.events-box .row.access .label {
  color: var(--orange);
}

.events-box .note {
  font-size: 0.56rem;
  color: #999;
  font-weight: 500;
  margin-top: 2px;
}

.events-box svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 1.8;
}

.events-box .row.access svg {
  stroke: var(--orange);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(246,240,222,0.97) 0%,
    rgba(246,240,222,0.9) 24%,
    rgba(246,240,222,0.55) 42%,
    rgba(246,240,222,0.12) 58%,
    rgba(246,240,222,0) 72%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 3rem;
  max-width: 640px;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-content h1 .line-1 {
  color: var(--dark-green);
  display: block;
}

.hero-content h1 .line-2 {
  color: var(--orange-deep);
  display: block;
}

.hero-content .hero-sub {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1.2rem;
}

.hero-accent {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--orange);
  margin-top: 0.9rem;
}

.hero-content .hero-desc {
  font-size: 0.85rem;
  color: #4c4c44;
  margin-top: 1rem;
  max-width: 420px;
}

/* ===================== FEATURE STRIP ===================== */
.feature-strip {
  background: var(--dark-green);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
}

.feature-strip .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.8rem;
  border-left: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.feature-strip .feature-item-first {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  border-left: none;
  gap: 0.5rem;
}

.feature-strip .feature-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.feature-strip .feature-item-first .feature-icon {
  width: 38px;
  height: 38px;
}

.feature-strip .feature-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--orange);
}

.feature-strip p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-transform: uppercase;
}

.feature-strip .feature-item-first p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.7;
  max-width: 165px;
  text-transform: uppercase;
}

/* ===================== EVENTS SECTION ===================== */
.events-section {
  padding: 0 3rem 2rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr;
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.event-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.event-banner {
  padding: 0.9rem 1.2rem;
  color: var(--white);
  position: relative;
}

.event-banner.obadiah {
  background: linear-gradient(135deg, #2a1810 0%, #4a2c1a 100%);
}

.event-banner.throttle {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}

.event-banner .fpm-tag {
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #d9c9a3;
}

.event-banner h3 {
  font-size: 1.7rem;
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
  margin: 0.2rem 0;
}

.event-banner .throttle-tag {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

.event-banner .sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: #e8dfc8;
}

.event-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.event-photos .photo,
.single-photo {
  aspect-ratio: 3/4;
  background-image: linear-gradient(160deg, #b9c9a9 0%, #8fa878 50%, #5f7a4a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.single-photo {
  aspect-ratio: 16/10;
  background-image: linear-gradient(160deg, #d8d0c0 0%, #a8998a 50%, #6b5a4a 100%);
  position: relative;
}

.event-body {
  padding: 1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #555;
  font-weight: 600;
}

.event-meta .icon {
  width: 14px;
  height: 14px;
  fill: var(--orange);
}

.event-meta-row {
  justify-content: space-between;
}

.event-meta-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-price {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange-dark);
}

.event-price.is-free {
  color: var(--dark-green);
}

.event-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.event-actions .btn {
  flex: 1;
  text-align: center;
}

/* Assessment Card */
.assessment-card {
  background: var(--dark-green);
  color: var(--white);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.assessment-card .icon-badge {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.assessment-card .icon-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.assessment-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.assessment-card p.desc {
  font-size: 0.78rem;
  color: #d7ddd1;
  margin-bottom: 1.1rem;
}

.assessment-card .btn-orange {
  width: fit-content;
  margin-bottom: 1.2rem;
}

.assessment-card .feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.assessment-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #e6e9e0;
}

.assessment-card .feature-list b {
  color: var(--white);
}

.assessment-card .feature-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-orange { background: var(--orange); }
.dot-yellow { background: var(--gold); }
.dot-green { background: #6fa860; }

.assessment-thumb {
  margin-top: auto;
  border-radius: 6px;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #3d5a3a 0%, #24371f 60%, #14200f 100%);
}

/* ===================== ASSESSMENT LANDING PAGE ===================== */
.assessment-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.assessment-hero-inner {
  max-width: 460px;
  width: 100%;
  background: var(--dark-green);
  color: var(--white);
  border-radius: 14px;
  padding: 2.6rem 2.4rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.assessment-hero-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.2rem;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assessment-hero-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.assessment-hero-inner h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
}

.assessment-hero-sub {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #d7ddd1;
  margin-bottom: 1.8rem;
}

.assessment-first-name {
  color: var(--orange);
}

.assessment-start-form {
  text-align: left;
}

.assessment-start-form .form-group {
  margin-bottom: 1.1rem;
}

.assessment-start-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #e6e9e0;
  margin-bottom: 0.35rem;
}

.assessment-start-form input[type="text"],
.assessment-start-form input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.88rem;
  font-family: inherit;
}

.assessment-start-form input::placeholder {
  color: #a9b3a2;
}

.assessment-start-form input:focus {
  outline: none;
  border-color: var(--orange);
}

.assessment-start-form .field-error {
  display: block;
  min-height: 1em;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  color: #ffb4a8;
}

.assessment-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #d7ddd1;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.assessment-consent input {
  margin-top: 0.2rem;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.assessment-start-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.assessment-start-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.assessment-wide {
  max-width: 640px;
}

.assessment-progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--orange);
  margin-bottom: 0.6rem;
  text-align: center;
}

.assessment-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.8rem;
}

.assessment-progress-fill {
  height: 100%;
  width: 0;
  background: var(--orange);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.assessment-question {
  text-align: left;
  margin-bottom: 1.6rem;
}

.assessment-question-text {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.assessment-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.assessment-option:hover {
  border-color: var(--orange);
}

.assessment-option:has(input:checked) {
  border-color: var(--orange);
  background: rgba(226,118,46,0.15);
}

.assessment-option input {
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

.assessment-back {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 6px;
  padding: 0.7rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.assessment-next {
  flex: 1;
  border: none;
  cursor: pointer;
}

.assessment-next:disabled {
  opacity: 0.5;
  cursor: default;
}

.assessment-results {
  text-align: center;
}

.assessment-results-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.assessment-score-value {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.assessment-tier-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.assessment-next-steps {
  text-align: left;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.2rem 1.3rem;
  margin: 1.6rem 0 1.8rem;
}

.assessment-next-steps h2 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.assessment-next-steps p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #d7ddd1;
}

.assessment-cta {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
}

@media (max-width: 700px) {
  .assessment-hero-inner { padding: 2rem 1.5rem; }
}

/* ===================== 10-POINT PLAN ===================== */
.plan-strip {
  padding: 0 3rem 1rem;
}

.plan-icons {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  text-align: center;
  border: 1px solid #e3d9bd;
  border-radius: 14px;
  background: rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.plan-icons .plan-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 0.6rem;
  border-left: 1px solid #e3d9bd;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.plan-icons .plan-item:hover {
  background: rgba(226,118,46,0.08);
}

.plan-icons .plan-item:first-child {
  border-left: none;
}

.plan-icons .plan-icon {
  width: 34px;
  height: 34px;
}

.plan-icons .plan-icon svg {
  width: 100%;
  height: 100%;
}

.plan-icons .plan-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--orange);
}

.plan-icons p {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.plan-cta {
  text-align: center;
  margin: 1.6rem 0 0.5rem;
}

.plan-cta .btn {
  background: var(--dark-green);
  color: var(--white);
  padding: 0.75rem 2.2rem;
  border-radius: 999px;
}

/* ===================== PREPAREDNESS IN ACTION ===================== */
.action-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.action-card {
  position: relative;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.2rem;
  color: var(--white);
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.action-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

/* ===================== PUT PREPAREDNESS INTO ACTION ===================== */
.put-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.put-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

.put-card .put-img {
  aspect-ratio: 16/10;
  background-image: linear-gradient(160deg, #cfc6b0 0%, #8a8368 50%, #4a4a3a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.put-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.put-body h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.put-body p {
  font-size: 0.72rem;
  color: #63645c;
  margin-bottom: 0.9rem;
}

.put-body .btn {
  width: 100%;
  text-align: center;
}

/* ===================== SERVICES STRIP ===================== */
.services-strip {
  padding: 0 3rem;
  margin-top: 2.5rem;
}

.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e3d9bd;
  border-radius: 14px;
  background: rgba(255,255,255,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.6rem 1.6rem;
  border-left: 1px solid #e3d9bd;
}

.service-item:first-child {
  border-left: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-item h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.service-item p {
  font-size: 0.72rem;
  color: #63645c;
  margin-bottom: 0.6rem;
}

.service-item a.link {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
}

/* ===================== CTA BAR ===================== */
.cta-bar {
  background: var(--dark-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 3rem;
  margin-top: 1rem;
  gap: 2.5rem;
}

.cta-bar .cta-left {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.cta-bar .cta-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.cta-bar .cta-icon svg {
  width: 100%;
  height: 100%;
}

.cta-bar .cta-text {
  flex-shrink: 0;
}

.cta-bar .cta-eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.cta-bar .cta-left h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  max-width: 360px;
  line-height: 1.3;
}

.cta-bar .cta-left p {
  font-size: 0.78rem;
  color: #cdd4c6;
  margin-top: 0.4rem;
  max-width: 340px;
}

.cta-bar .cta-left .btn {
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.cta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.cta-bar .cta-right {
  text-align: right;
  flex-shrink: 0;
}

.cta-bar .cta-right h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--orange);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--cream-dark);
  padding: 2.5rem 3rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  gap: 0.7rem;
}

.footer-brand .shield-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.68rem;
  color: #6b6a5f;
  margin-top: 0.5rem;
  max-width: 220px;
}

footer h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--dark-green);
  margin-bottom: 0.8rem;
}

footer ul li {
  font-size: 0.72rem;
  color: #5a5a52;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

footer ul li a {
  color: inherit;
  text-decoration: none;
}

footer ul li a:hover {
  color: var(--orange-dark);
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  margin: 0.6rem 0 0.9rem;
}

.social-icons a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons svg {
  width: 13px;
  height: 13px;
  fill: var(--white);
}

.email-signup {
  display: block;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.email-signup:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.footer-tree {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 140px;
  opacity: 0.5;
  background: radial-gradient(circle at 70% 100%, #b7ab8c 0%, transparent 60%);
  z-index: 1;
}

.footer-bottom {
  max-width: 1300px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #ddd4bd;
  font-size: 0.65rem;
  color: #8a8a7d;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ===================== EVENT DETAIL PAGE ===================== */

/* ---- Reveal-on-scroll transition ---- */
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-armed.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-armed { opacity: 1; transform: none; transition: none; }
}

/* ---- Eyebrow label + ornamental divider ---- */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow-light {
  color: #f0c893;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.9rem 0;
}

.ornament-line {
  width: 44px;
  height: 1px;
  background: var(--orange);
  opacity: 0.55;
}

.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.ornament.light .ornament-line { background: #e8dfc8; opacity: 0.7; }

/* ---- Hero ---- */
.event-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark-green);
}

.event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(160deg, #3d5a3a 0%, #24371f 60%, #14200f 100%);
  animation: event-hero-kenburns 16s ease-out forwards;
}

@keyframes event-hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .event-hero-bg { animation: none; }
}

.event-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,8,0.45) 0%, rgba(10,14,8,0.6) 35%, rgba(10,14,8,0.88) 100%);
}

.event-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.event-hero-content .ornament { margin: 1.3rem 0 1.6rem; }

.event-hero-content h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}

.event-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0.3rem;
  margin-bottom: 1.6rem;
}

.event-hero-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e6e9e0;
}

.event-hero-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.event-hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.event-hero-actions .btn {
  padding: 0.8rem 1.8rem;
}

/* ---- Overview (centered narrative) ---- */
.event-overview {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.event-overview .ornament { margin: 0.9rem 0 1.8rem; }

.event-overview p {
  font-size: 1rem;
  line-height: 1.85;
  color: #4c4c44;
}

/* ---- Gallery ("a glimpse") ---- */
.event-gallery {
  background: var(--cream-dark);
  padding: 4rem 2rem;
}

.event-gallery-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.event-gallery-heading .ornament { margin: 0.9rem 0 0; }

.event-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.9rem;
  max-width: 1100px;
  margin: 0 auto;
}

.event-gallery-main {
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.event-gallery-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.event-gallery-sub div {
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1;
}

/* ---- Two-column content + sticky register card ---- */
.event-columns {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 3rem;
  align-items: start;
}

.event-columns-main {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.event-block .eyebrow {
  display: block;
  margin-bottom: 1.1rem;
}

.event-register-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 10px;
  padding: 1.8rem;
}

.event-register-card .eyebrow {
  display: block;
  margin-bottom: 0.7rem;
}

.event-register-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-register-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.event-register-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.event-register-card .card-meta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.event-register-card p.card-note {
  font-size: 0.8rem;
  color: #63645c;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.event-register-card .btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
}

.event-register-card .card-back {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #63645c;
  margin-top: 1rem;
}

.event-register-card .card-back:hover {
  color: var(--orange);
}

.event-mobile-bar {
  display: none;
}

.event-mobile-bar-spacer {
  display: none;
}

/* ---- Section heading (major sections) ---- */
.event-detail-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.6rem 3rem;
}

.event-detail-section.alt {
  background: var(--cream-dark);
}

.event-section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.event-section-heading .ornament { margin: 0.9rem 0 0; }

.event-section-heading h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--dark-green);
}

.event-detail-section p {
  font-size: 0.9rem;
  color: #4c4c44;
  line-height: 1.6;
}

.event-detail-section.centered {
  text-align: center;
}

.event-detail-section.centered p {
  max-width: 620px;
  margin: 0 auto;
}

.event-location-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 10px;
  padding: 2rem 2.4rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.event-venue-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 0.8rem;
}

.event-venue-name svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.event-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.event-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #3a3a34;
  line-height: 1.5;
}

.event-bullet-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  flex-shrink: 0;
  margin-top: 2px;
}

.event-speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.speaker-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 10px;
  padding: 1.3rem;
}

.speaker-card .speaker-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.speaker-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-green);
  margin-bottom: 0.2rem;
}

.speaker-card .speaker-role {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.6rem;
}

.speaker-card p {
  font-size: 0.8rem;
}

.event-agenda {
  display: flex;
  flex-direction: column;
}

.agenda-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e3d9bd;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item .agenda-time {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.agenda-item h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 0.3rem;
}

.agenda-item p {
  font-size: 0.82rem;
}

/* ---- Countdown ---- */
.event-countdown {
  background: var(--cream-dark);
  text-align: center;
  padding: 3.4rem 2rem;
}

.event-countdown-grid {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.event-countdown-unit {
  min-width: 68px;
}

.event-countdown-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--dark-green);
  line-height: 1;
}

.event-countdown-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.5rem;
}

/* ---- FAQ ---- */
.event-faq {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 720px;
  margin: 0 auto;
}

.event-faq details {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

.event-faq summary {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark-green);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.event-faq summary::-webkit-details-marker {
  display: none;
}

.event-faq summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  font-style: normal;
}

.event-faq details[open] summary::after {
  content: "\2212";
}

.event-faq p {
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

/* ---- Closing CTA ---- */
.event-register-cta {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.event-register-cta .ornament { margin: 0.9rem 0 1.3rem; }

.event-register-cta h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.event-register-cta p {
  color: #cdd4c6;
  max-width: 480px;
  margin: 0 auto 1.6rem;
}

.event-register-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.event-register-cta .btn {
  padding: 0.9rem 2.2rem;
}

.event-register-cta .btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.event-register-cta .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

/* ---- Live / urgent banners ---- */
.event-live-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--dark-green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.65rem 1rem;
  text-align: center;
}

.event-live-banner .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: event-live-pulse 1.6s ease-in-out infinite;
}

@keyframes event-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.event-urgent-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #7a2323;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  text-align: center;
}

.event-urgent-banner svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  flex-shrink: 0;
}

/* ---- Hero logo ---- */
.event-hero-logo {
  max-height: 64px;
  width: auto;
  margin: 0 auto 1.1rem;
}

/* ---- Announcements ---- */
.event-announcements {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.event-announcements li {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 0.8rem 1.1rem;
  font-size: 0.86rem;
  color: #3a3a34;
  text-align: left;
}

/* ---- Speaker photo + session + links ---- */
.speaker-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.8rem;
}

.speaker-session {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-green);
  background: var(--cream-dark);
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.speaker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.speaker-links a {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ---- Schedule (public) ---- */
.event-schedule-day {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark-green);
  margin: 1.6rem 0 0.6rem;
}

.event-schedule-day:first-child {
  margin-top: 0;
}

.agenda-item .agenda-time {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.agenda-meta {
  font-size: 0.76rem !important;
  font-weight: 700;
  color: var(--orange-dark) !important;
  margin-bottom: 0.3rem;
}

.status-upcoming { background: #eef1ea; color: #4a5a3f; }
.status-happening-now { background: #fdecea; color: #a4262c; }
.status-updated { background: #e8f0fb; color: #1c5fa8; }
.status-completed { background: #eaf6ea; color: #256029; }
.status-cancelled { background: #fdecea; color: #a4262c; }

.event-agenda .status-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ---- Meals & refreshments ---- */
.event-meals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.meal-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.meal-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  margin-bottom: 0.7rem;
}

.meal-card .meal-period {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-green);
  margin-bottom: 0.4rem;
}

.meal-card p:not(.meal-period) {
  font-size: 0.85rem;
}

/* ---- Resources ---- */
.event-resources {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.event-resource-group h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.event-resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.event-resource-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

.event-resource-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.event-resource-list a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.event-resource-list a:hover {
  color: var(--orange-dark);
}

/* ===================== EVENTS LANDING PAGE ===================== */
.events-page-hero {
  min-height: 340px;
  align-items: center;
  justify-content: center;
}

.events-page-hero-content {
  max-width: 720px;
  text-align: center;
  padding: 2.5rem;
}

.events-page-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.events-page-hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
}

.featured-event {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.featured-event-media {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: linear-gradient(160deg, #b9c9a9 0%, #8fa878 50%, #5f7a4a 100%);
}

.featured-event-tag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: var(--dark-green);
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

.featured-event-body {
  padding: 2.6rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.featured-event-body h2 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--dark-green);
}

.featured-event-body h2.script {
  font-style: italic;
  color: var(--orange-dark);
}

.featured-event-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #63645c;
}

.featured-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin: 0.5rem 0 0.3rem;
}

.featured-event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
}

.featured-event-meta .featured-event-price {
  color: var(--orange-dark);
}

.featured-event-meta .featured-event-price svg {
  stroke: var(--orange-dark);
}

.featured-event-meta .featured-event-price.is-free {
  color: var(--dark-green);
}

.featured-event-meta .featured-event-price.is-free svg {
  stroke: var(--dark-green);
}

.featured-event-meta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.featured-event-desc {
  font-size: 0.88rem;
  color: #4c4c44;
  line-height: 1.6;
  margin: 0.3rem 0 0.6rem;
}

.featured-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.featured-event-actions .btn {
  padding: 0.8rem 1.8rem;
}

.events-empty-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: #63645c;
  font-size: 0.88rem;
  background: var(--white);
  border: 1px dashed #ddd6c4;
  border-radius: 10px;
}

.events-page-back {
  text-align: center;
  margin-top: 2rem;
}

.event-card-completed-badge {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  background: #eaf6ea;
  color: #256029;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* ===================== EVENT CALENDAR PAGE ===================== */
.cal-section {
  padding: 1rem 3rem 4rem;
}

.cal-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cal-month-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-green);
  padding-bottom: 0.6rem;
  margin: 2.6rem 0 1.4rem;
  border-bottom: 2px solid var(--orange);
}

.cal-month-heading:first-child {
  margin-top: 0;
}

.cal-event-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-bottom: 0.7rem;
  margin: 1.8rem 0 1.2rem;
  border-bottom: 1px solid #e3d9bd;
}

.cal-event-heading:first-of-type {
  margin-top: 0;
}

.cal-event-heading h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.cal-event-heading-meta {
  font-size: 0.74rem;
  font-weight: 700;
  color: #857d68;
  margin: 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 800px) { .cal-grid { grid-template-columns: repeat(2, 1fr); } }

.cal-entry {
  display: flex;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1.3rem;
}

.cal-day {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--orange);
}

.cal-entry-body {
  min-width: 0;
}

.cal-entry-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.cal-event-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #857d68;
}

.cal-time-pill {
  background: var(--dark-green);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}

.cal-entry-body h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.4rem;
}

.cal-entry-body p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #4c4c44;
  margin: 0 0 0.7rem;
}

.cal-entry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.cal-entry-link .plan-arrow {
  transition: transform 0.2s ease;
}

.cal-entry-link:hover .plan-arrow {
  transform: translateX(3px);
}

@media (max-width: 700px) {
  .cal-section { padding: 1rem 1.2rem 3rem; }
  .cal-day { font-size: 2rem; }
}

/* ===================== SIMPLE PAGE HERO (Learn, Services, ...) ===================== */
.simple-page-hero {
  text-align: center;
  padding: 4.5rem 2rem 3.5rem;
  border-bottom: 1px solid #e3d9bd;
}

.simple-page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.simple-page-hero .ornament { margin: 0.9rem 0 1.3rem; }

.simple-page-hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--dark-green);
  margin-bottom: 0.9rem;
}

.simple-page-hero p {
  font-size: 1rem;
  line-height: 1.7;
  color: #63645c;
}

/* ===================== LEARNING CENTER PAGE ===================== */
.learn-section {
  padding: 3.5rem 2rem 5rem;
}

.learn-section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e3d9bd;
}

.filter-pill {
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid #ddd6c4;
  border-radius: 20px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.filter-pill.is-active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .learn-grid { grid-template-columns: repeat(3, 1fr); } }

.learn-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 10px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.learn-card[hidden] {
  display: none;
}

.learn-type {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.learn-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.learn-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4c4c44;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.card-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.category-chip {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--dark-green);
  background: var(--cream-dark);
  border-radius: 4px;
  padding: 0.22rem 0.55rem;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--orange-dark);
}

.learn-link .plan-arrow {
  transition: transform 0.2s ease;
}

.learn-link:hover .plan-arrow {
  transform: translateX(3px);
}

/* ===================== SERVICES PAGE ===================== */
.services-page-section {
  padding: 4rem 2rem 5.5rem;
}

.services-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-page-grid { grid-template-columns: repeat(4, 1fr); } }

.service-page-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 10px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.service-page-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-icon svg {
  width: 28px;
  height: 28px;
}

.service-page-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 0.6rem;
}

.service-page-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4c4c44;
  margin-bottom: 1.2rem;
}

.service-page-card .learn-link {
  justify-content: center;
}

/* ===================== EMAIL SIGNUP MODAL ===================== */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 2.6rem 2.2rem 2.2rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}

.modal-overlay.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #8a8a7d;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.modal-close:hover {
  background: var(--cream-dark);
  color: var(--text-dark);
}

.email-modal-body {
  text-align: center;
}

.email-modal-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.1rem;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-modal-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-modal-body h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.email-modal-sub {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #63645c;
  margin-bottom: 1.7rem;
}

.email-modal-body .form-group {
  text-align: left;
  margin-bottom: 1.1rem;
}

.email-modal-body label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.email-modal-body input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ddd6c4;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
}

.email-modal-body input:focus {
  outline: none;
  border-color: var(--orange);
}

.email-modal-body .field-error {
  display: block;
  min-height: 1em;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  color: #a4262c;
}

.email-modal-submit {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.email-modal-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.email-modal-success {
  text-align: center;
  padding: 0.8rem 0 1rem;
}

.email-modal-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.3rem;
  background: #eaf6ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-modal-success-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #256029;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Event checkout modal ---- */
.checkout-modal-card {
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--dark-green);
  text-align: center;
  margin: 0 0 0.2rem;
}

.checkout-price span {
  display: block;
  font-family: inherit;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #857d68;
  margin-top: 0.2rem;
}

.checkout-event-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}

.cf-section-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin: 1.3rem 0 0.9rem;
}

.cf-section-title:first-of-type {
  margin-top: 0;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.cf-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.9rem;
}

.cf-field {
  text-align: left;
  margin-bottom: 1.1rem;
}

.cf-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.cf-optional {
  font-weight: 400;
  color: #857d68;
  text-transform: none;
  letter-spacing: normal;
}

.cf-field input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ddd6c4;
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: inherit;
}

.cf-field input:focus {
  outline: none;
  border-color: var(--orange);
}

.cf-field.error input {
  border-color: #a4262c;
}

.cf-field .field-error {
  display: block;
  min-height: 1em;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  color: #a4262c;
}

.checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  position: relative;
}

.checkout-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.checkout-secure-note {
  text-align: center;
  font-size: 0.7rem;
  color: #857d68;
  margin: 0.9rem 0 0;
}

.checkout-server-error {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #a4262c;
  background: #fdecea;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  margin: 0.9rem 0 0;
}

@media (max-width: 480px) {
  .cf-row,
  .cf-row-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkout-modal-card {
    padding: 2.2rem 1.4rem 1.6rem;
  }
}

.email-modal-success p {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.6;
}

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

/* ---- Event detail page: two-column -> stacked, sticky sidebar -> mobile bar (<=960px) ---- */
@media (max-width: 960px) {
  .event-columns { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.2rem; }
  .event-register-card { display: none; }
  .event-gallery-grid { grid-template-columns: 1fr; }
  .event-gallery-main { min-height: 220px; }

  .event-mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--white);
    border-top: 1px solid #e3d9bd;
    padding: 0.8rem 1.1rem;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.1);
  }

  .event-mobile-bar-info { flex: 1; min-width: 0; }

  .event-mobile-bar-info .title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-green);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .event-mobile-bar-info .date {
    font-size: 0.66rem;
    color: #63645c;
    margin-top: 0.15rem;
  }

  .event-mobile-bar .btn {
    flex-shrink: 0;
    padding: 0.7rem 1.3rem;
    font-size: 0.68rem;
  }

  .event-mobile-bar-spacer {
    display: block;
    height: 68px;
  }
}

/* ===================== PREPAREDNESS CATEGORY TEMPLATE (/preparedness/{slug}) ===================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: #857d68;
  margin-bottom: 1.6rem;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--orange-dark);
}

.breadcrumb-sep {
  opacity: 0.5;
}

.breadcrumb [aria-current="page"] {
  color: var(--text-dark);
}

.cat-hero {
  padding: 3.2rem 3rem 3rem;
  border-bottom: 1px solid #e3d9bd;
  text-align: center;
}

.cat-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cat-hero .breadcrumb {
  justify-content: center;
}

.cat-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--orange);
  margin: 0 auto 1.3rem;
}

.cat-hero-icon svg {
  width: 26px;
  height: 26px;
}

.cat-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--dark-green);
  margin: 0;
}

/* ---- Shared section shell ---- */
.cat-section {
  padding: 3.4rem 3rem;
  border-bottom: 1px solid #e3d9bd;
}

.cat-section:last-of-type {
  border-bottom: none;
}

.cat-section.cat-section-alt {
  background: var(--cream-dark);
}

.cat-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cat-section-title {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  color: var(--dark-green);
  padding-bottom: 0.55rem;
  margin: 0 0 1.8rem;
  border-bottom: 2px solid var(--orange);
}

/* ---- Overview ---- */
.cat-overview-copy p {
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4c4c44;
  margin: 0;
  white-space: pre-line;
}

/* ---- Learn ---- */
.cat-learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 640px) { .cat-learn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-learn-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-learn-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1.6rem;
}

.cat-learn-type {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.6rem;
}

.cat-learn-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.cat-learn-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4c4c44;
  margin: 0 0 1rem;
}

/* ---- Resources ---- */
.cat-resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 720px;
}

.cat-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  flex-wrap: wrap;
  padding: 1rem 1.3rem;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
}

.cat-resource-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.cat-resource-item-meta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #857d68;
  margin: 0.25rem 0 0;
}

/* ---- Upcoming Training ---- */
.cat-training-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cat-training-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1.5rem;
}

.cat-training-date {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 8px;
  text-align: center;
}

.cat-training-date .day {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--orange-dark);
}

.cat-training-date .month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #857d68;
  margin-top: 0.3rem;
}

.cat-training-info {
  flex: 1 1 260px;
}

.cat-training-info h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 0.3rem;
}

.cat-training-info p {
  font-size: 0.85rem;
  color: #4c4c44;
  margin: 0;
}

/* ---- Shop ---- */
.cat-shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

@media (min-width: 640px) { .cat-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-shop-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-shop-card {
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  overflow: hidden;
}

.cat-shop-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #d8d0c0 0%, #a8998a 50%, #6b5a4a 100%);
}

.cat-shop-card-body {
  padding: 1.3rem;
}

.cat-shop-card-body h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.7rem;
}

/* ---- Services & Continue Learning ("connect card": introduce, explain relevance, link out) ---- */
.cat-connect-cards {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cat-connect-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid #e3d9bd;
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
}

.cat-connect-card-body {
  max-width: 560px;
}

.cat-connect-card-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 0.5rem;
}

.cat-connect-card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--dark-green);
  margin: 0 0 0.5rem;
}

.cat-connect-card-copy {
  font-size: 0.86rem;
  line-height: 1.6;
  color: #4c4c44;
  margin: 0;
}

.cat-connect-card .btn {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cat-hero { padding: 2.4rem 1.2rem 2rem; }
  .cat-section { padding: 2.4rem 1.2rem; }
  .cat-connect-card { padding: 1.3rem 1.4rem; }
}

/* ---- Tablet (<=1100px) ---- */
@media (max-width: 1100px) {
  .top-header { padding: 0.7rem 1.5rem; position: relative; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 14px 26px rgba(0,0,0,0.12);
    z-index: 90;
    transition: max-height 0.25s ease;
  }

  .main-nav.open { max-height: 80vh; overflow-y: auto; }

  .main-nav > ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li { width: 100%; position: static; }

  .main-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1.5rem;
    border-bottom: 1px solid #f1ede2;
  }

  .main-nav a::after {
    display: none;
  }

  .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #faf7f0;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .has-dropdown.open .dropdown-panel {
    visibility: visible;
    max-height: 320px;
    padding: 0.4rem 0;
  }

  .dropdown-panel a { padding: 0.75rem 2rem; }

  .events-box { right: 0; left: auto; }

  .hero { min-height: 82vh; }
  .hero-content { padding: 0 2rem; max-width: 100%; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content .hero-sub { font-size: 1.05rem; }

  .event-hero { min-height: 82vh; }

  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip .feature-item-first { grid-column: 1 / -1; justify-content: flex-start; }

  .events-section { padding: 0 1.5rem 2rem; }
  .events-grid { grid-template-columns: 1fr; max-width: 640px; }

  .events-page-hero-content h1 { font-size: 1.7rem; }
  .featured-event { grid-template-columns: 1fr; max-width: 640px; }

  .event-hero-content { padding: 2.4rem 1.6rem; }
  .event-detail-section { padding: 2.4rem 1.6rem; }
  .event-overview { padding: 3rem 1.6rem; }
  .event-gallery { padding: 3rem 1.6rem; }
  .event-columns { padding: 3rem 1.6rem; }
  .featured-event-media { min-height: 260px; }
  .featured-event-body { padding: 1.8rem 1.8rem 2.2rem; }
  .featured-event-body h2 { font-size: 1.7rem; }

  .plan-strip { padding: 0 1.5rem 1rem; }
  .plan-icons { grid-template-columns: repeat(5, 1fr); }
  .plan-icons .plan-item { padding: 1.1rem 0.5rem; }
  .plan-icons .plan-item:nth-child(5n+1) { border-left: none; }
  .plan-icons .plan-item:nth-child(n+6) { border-top: 1px solid #e3d9bd; }

  .action-section, .put-section { padding: 0 1.5rem; }
  .action-grid { grid-template-columns: repeat(3, 1fr); }
  .put-action-grid { grid-template-columns: repeat(2, 1fr); }

  .services-strip { padding: 0 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item { border-left: none; border-top: 1px solid #e3d9bd; }
  .service-item:nth-child(1), .service-item:nth-child(2) { border-top: none; }

  .cta-bar { padding: 1.4rem 1.5rem; flex-wrap: wrap; }

  footer { padding: 2.5rem 1.5rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-tree { display: none; }
}

/* ---- Mobile (<=700px) ---- */
@media (max-width: 700px) {
  .top-header { padding: 0.6rem 1rem; flex-wrap: wrap; row-gap: 0.5rem; }
  .logo .shield-icon { width: 36px; height: 36px; }
  .logo-text .brand { font-size: 0.92rem; }
  .logo-text .tagline { display: none; }

  .header-actions { gap: 0.5rem; }
  .btn-outline-header { display: none; }
  #viewEventsBtn { padding: 0.5rem 0.6rem; font-size: 0; gap: 0; }
  #viewEventsBtn .btn-icon { width: 16px; height: 16px; margin-left: 0; }
  .events-box { min-width: 220px; }
  .nav-toggle { width: 28px; height: 28px; }

  .hero { min-height: 78vh; }
  .hero-content { padding: 0 1.2rem; }

  .event-hero { min-height: 78vh; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content .hero-sub { font-size: 0.95rem; }
  .hero-content .hero-desc { font-size: 0.8rem; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(246,240,222,0.55) 0%,
      rgba(246,240,222,0.85) 55%,
      rgba(246,240,222,0.97) 100%);
  }

  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-strip .feature-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); }
  .feature-strip .feature-item-first { grid-column: 1 / -1; border-top: none; flex-direction: column; text-align: center; justify-content: center; }
  .feature-strip .feature-item-first p { max-width: 100%; text-align: center; }

  .section-title { font-size: 0.92rem; margin: 2.2rem 0 1.3rem; gap: 0.6rem; }
  .section-title::before, .section-title::after { width: 30px; }

  .events-section { padding: 0 1.2rem 1.5rem; }
  .event-photos { grid-template-columns: repeat(2, 1fr); }

  .events-page-hero { min-height: 280px; }
  .events-page-hero-content { padding: 1.8rem 1.2rem; }
  .events-page-hero-content h1 { font-size: 1.4rem; }
  .featured-event-body { padding: 1.5rem 1.3rem 1.8rem; gap: 0.6rem; }
  .featured-event-body h2 { font-size: 1.4rem; }
  .featured-event-actions .btn { flex: 1; text-align: center; }

  .event-hero-content { padding: 1.8rem 1.2rem; }
  .event-detail-section { padding: 2rem 1.2rem; }
  .event-overview { padding: 2.6rem 1.2rem; }
  .event-overview p { font-size: 0.92rem; }
  .event-gallery { padding: 2.6rem 1.2rem; }
  .event-columns { padding: 2.6rem 1.2rem; }
  .agenda-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .event-countdown-grid { gap: 1.4rem; }
  .event-countdown-unit { min-width: 56px; }
  .event-register-cta { padding: 3rem 1.2rem; }

  .simple-page-hero { padding: 3rem 1.2rem 2.4rem; }
  .learn-section { padding: 2.6rem 1.2rem 3.5rem; }
  .filter-bar { gap: 0.4rem; margin-bottom: 2.2rem; padding-bottom: 1.8rem; }
  .filter-pill { padding: 0.42rem 0.85rem; font-size: 0.7rem; }

  .modal-card { padding: 2.2rem 1.5rem 1.8rem; }

  .plan-strip { padding: 0 1.2rem 1rem; }
  .plan-icons { grid-template-columns: repeat(2, 1fr); border-radius: 10px; }
  .plan-icons .plan-item { border-left: none; border-top: 1px solid #e3d9bd; padding: 1rem 0.5rem; }
  .plan-icons .plan-item:nth-child(1), .plan-icons .plan-item:nth-child(2) { border-top: none; }

  .action-section, .put-section { padding: 0 1.2rem; }
  .action-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .put-action-grid { grid-template-columns: 1fr; }

  .services-strip { padding: 0 1.2rem; }
  .services-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .service-item { border-top: 1px solid #e3d9bd; padding: 1.2rem; }
  .service-item:first-child { border-top: none; }

  .cta-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1.2rem;
    padding: 1.6rem 1.2rem;
  }
  .cta-bar .cta-left { flex-direction: column; text-align: center; gap: 0.8rem; }
  .cta-bar .cta-left p { max-width: 100%; }
  .cta-bar .cta-left .btn { margin-left: 0; }
  .cta-divider { width: 100%; height: 1px; align-self: stretch; }
  .cta-bar .cta-right { text-align: center; }

  footer { padding: 2rem 1.2rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { max-width: 100%; }
  .social-icons { justify-content: center; }
}

/* ---- Small phones (<=420px) ---- */
@media (max-width: 420px) {
  .hero-content h1 { font-size: 1.7rem; }
  .action-grid { grid-template-columns: 1fr; }
  .plan-icons { grid-template-columns: 1fr; }
  .plan-icons .plan-item { border-top: 1px solid #e3d9bd; }
  .plan-icons .plan-item:first-child { border-top: none; }
  .event-photos { grid-template-columns: repeat(2, 1fr); }
}
