/* ============================================
   LUMINARA — Global Styles
   A faith-driven creative community
   ============================================ */

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

:root {
  /* Primary greens */
  --forest: #1A4731;
  --forest-dark: #0F2E1F;
  --sage: #6B8F71;
  --sage-light: #A3C4A3;
  --mint: #D4E7D0;

  /* Neutrals */
  --cream: #FAF7F2;
  --off-white: #F5F0E8;
  --warm-gray: #B8B0A4;
  --medium-gray: #7A746B;
  --charcoal: #2C2C2C;
  --near-black: #1A1A1A;

  /* Accent */
  --gold-subtle: #C4A96A;

  /* Typography */
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --gap: 24px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--medium-gray);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
}

.btn-primary:hover {
  background-color: var(--forest-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn-outline:hover {
  background-color: var(--forest);
  color: var(--cream);
}

.btn-light {
  background-color: var(--cream);
  color: var(--forest);
  border: 1px solid var(--cream);
}

.btn-light:hover {
  background-color: var(--off-white);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 71, 49, 0.08);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--medium-gray);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--forest);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--forest);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--forest);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__btn {
  padding: 10px 24px;
  font-size: 0.8125rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--forest);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--cream);
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 0;
  padding-left: calc((100vw - var(--container-width)) / 2 + var(--gap));
}

.hero__label {
  margin-bottom: 24px;
}

.hero__title {
  color: var(--forest);
  margin-bottom: 24px;
}

.hero__title span {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--sage);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.hero__description {
  font-size: 1.0625rem;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__right {
  position: relative;
  background-color: var(--mint);
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sage-light) 50%, var(--sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
  color: var(--forest);
}

/* Featured Creator Card */
.hero__creator-card {
  background-color: var(--cream);
  border-top: 1px solid rgba(26, 71, 49, 0.1);
}

.hero__creator-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.hero__creator-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest);
}

.hero__creator-details h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.hero__creator-details p {
  font-size: 0.8125rem;
  color: var(--sage);
}

.hero__creator-label {
  font-size: 0.6875rem;
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background-color: var(--off-white);
  text-align: center;
}

.page-hero .label {
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  color: var(--forest);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--dark {
  background-color: var(--forest);
}

.page-hero--dark .label {
  color: var(--sage-light);
}

.page-hero--dark h1 {
  color: var(--cream);
}

.page-hero--dark p {
  color: var(--sage-light);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: var(--section-padding);
  background-color: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header .label {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  color: var(--forest);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.0625rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.category-card {
  position: relative;
  background-color: var(--cream);
  border: 1px solid rgba(26, 71, 49, 0.08);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--forest);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.category-card:hover::before {
  transform: translateY(0);
}

.category-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--forest);
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-card__icon {
  color: var(--cream);
}

.category-card__icon svg {
  width: 100%;
  height: 100%;
}

.category-card h3 {
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 8px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover h3 {
  color: var(--cream);
}

.category-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover p {
  color: var(--sage-light);
}

.category-card__count {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-card__count {
  color: var(--sage-light);
}

/* ============================================
   FEATURED WORKS SECTION
   ============================================ */
.featured-works {
  padding: var(--section-padding);
  background-color: var(--cream);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: var(--gap);
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.work-card:first-child {
  grid-row: span 2;
}

.work-card__bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.work-card:hover .work-card__bg {
  transform: scale(1.05);
}

.work-card__color {
  width: 100%;
  height: 100%;
}

.work-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.work-card:hover .work-card__overlay {
  transform: translateY(0);
  opacity: 1;
}

.work-card__overlay h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.work-card__overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
}

.work-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: rgba(250, 247, 242, 0.9);
  color: var(--forest);
  backdrop-filter: blur(4px);
}

/* ============================================
   PROMISE / SAFETY SECTION
   ============================================ */
.promise {
  padding: var(--section-padding);
  background-color: var(--forest);
  color: var(--cream);
}

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

.promise__text .label {
  color: var(--sage-light);
  margin-bottom: 16px;
  display: block;
}

.promise__text h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.promise__text p {
  color: var(--sage-light);
  font-size: 1.0625rem;
  max-width: 480px;
  margin-bottom: 32px;
}

.promise__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.promise__feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--sage-light);
}

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

.promise__feature p {
  font-size: 0.9375rem;
  color: var(--sage-light);
  line-height: 1.5;
}

/* Stats Panel */
.promise__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  text-align: center;
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--sage-light);
  letter-spacing: 0.05em;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--off-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 64px;
}

.testimonial-card {
  background-color: var(--cream);
  border: 1px solid rgba(26, 71, 49, 0.06);
  padding: 40px 32px;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 28px;
}

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

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--forest);
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--sage);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: var(--section-padding);
  background-color: var(--cream);
  text-align: center;
}

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

.cta .label {
  margin-bottom: 16px;
  display: block;
}

.cta h2 {
  color: var(--forest);
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--near-black);
  color: var(--warm-gray);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  max-width: 320px;
  line-height: 1.7;
}

.footer__column h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__column a {
  display: block;
  font-size: 0.875rem;
  color: var(--warm-gray);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer__column a:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--warm-gray);
}

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

.footer__social a {
  color: var(--warm-gray);
  transition: color 0.3s ease;
}

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

.footer__social svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--cream);
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--forest);
  cursor: pointer;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav__panel {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 72px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.mobile-nav__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.mobile-nav__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__label {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--medium-gray);
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--forest);
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 71, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
}

.mobile-nav a:not(.btn):last-of-type {
  border-bottom: 0;
}

.mobile-nav a:not(.btn).is-active,
.mobile-nav a:not(.btn):hover {
  color: var(--sage);
}

.mobile-nav__badge {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__cta {
  gap: 12px;
  margin-top: 8px;
}

.mobile-nav__cta .btn,
.mobile-nav__logout {
  width: 100%;
  justify-content: center;
}

.mobile-nav__logout {
  margin-top: 12px;
}

.mobile-nav__auth {
  padding-top: 8px;
  border-top: 1px solid rgba(26, 71, 49, 0.12);
}

/* ============================================
   LEARN MORE PAGE
   ============================================ */

/* Phase Cards */
.lm-phases {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lm-phase {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: var(--off-white);
  border: 1px solid rgba(26, 71, 49, 0.08);
  padding: 32px;
}

.lm-phase__badge {
  flex-shrink: 0;
  background-color: var(--forest);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  white-space: nowrap;
}

.lm-phase__badge--mid {
  background-color: var(--sage);
}

.lm-phase__badge--late {
  background-color: var(--gold-subtle);
  color: var(--near-black);
}

.lm-phase__content h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.lm-phase__content p {
  font-size: 0.9375rem;
}

/* Moderation Engine */
.lm-moderation {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lm-mod-layer {
  width: 100%;
  background-color: var(--cream);
  border: 1px solid rgba(26, 71, 49, 0.1);
  padding: 32px;
}

.lm-mod-layer__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.lm-mod-layer__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.lm-mod-layer__number--human {
  background-color: var(--gold-subtle);
  color: var(--near-black);
}

.lm-mod-layer__header h3 {
  font-size: 1.25rem;
  color: var(--forest);
}

.lm-mod-layer__tech {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.lm-mod-flow {
  color: var(--sage);
}

.lm-mod-outcomes {
  display: flex;
  gap: 16px;
  width: 100%;
}

.lm-mod-outcome {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.lm-mod-outcome--approved {
  background-color: rgba(26, 71, 49, 0.08);
  color: var(--forest);
}

.lm-mod-outcome--rejected {
  background-color: rgba(196, 169, 106, 0.12);
  color: var(--charcoal);
}

/* Tech Stack Grid */
.lm-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.lm-stack__card {
  background-color: var(--off-white);
  border: 1px solid rgba(26, 71, 49, 0.08);
  padding: 32px;
}

.lm-stack__icon {
  color: var(--forest);
  margin-bottom: 20px;
}

.lm-stack__card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.lm-stack__card p {
  font-size: 0.9375rem;
}

/* Culture-First Cards */
.lm-culture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 900px;
  margin: 0 auto;
}

.lm-culture__card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
}

.lm-culture__icon {
  color: var(--sage-light);
  margin-bottom: 20px;
}

.lm-culture__card h3 {
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.lm-culture__card p {
  font-size: 0.9375rem;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.lm-culture__card em {
  font-style: italic;
  color: var(--cream);
}

.lm-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lm-reaction {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
}

.lm-aesthetic-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lm-aesthetic-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--sage-light);
}

/* Learn More Responsive */
@media (max-width: 768px) {
  .lm-stack,
  .lm-culture {
    grid-template-columns: 1fr;
  }

  .lm-phase {
    flex-direction: column;
    gap: 16px;
  }

  .lm-mod-outcomes {
    flex-direction: column;
  }
}

/* ============================================
   SUPPORT PAGES (contact, help, privacy, terms)
   ============================================ */

.support-page {
  padding: 80px 0;
  background: var(--cream);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* Contact page two-col */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

/* ---- Contact Form ---- */
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest-dark);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--medium-gray);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--forest-dark);
  letter-spacing: 0.03em;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 14px 16px;
  border: 1px solid rgba(26, 71, 49, 0.16);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--forest-dark);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231A4731' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 71, 49, 0.08);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---- Contact page (redesign) ---- */
body.contact-page .contact-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #faf7f2 0%, #f3efe8 100%);
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
}

body.contact-page .contact-breadcrumb {
  font-size: 0.8125rem;
  color: #7a746b;
  margin: 0 0 18px;
}

body.contact-page .contact-breadcrumb a {
  color: #6b8f71;
}

body.contact-page .contact-breadcrumb a:hover {
  color: var(--forest);
}

body.contact-page .contact-hero .label {
  display: block;
  margin-bottom: 12px;
}

body.contact-page .contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 14px;
  max-width: 12ch;
  line-height: 1.12;
}

body.contact-page .contact-hero > .container > p {
  max-width: 540px;
  margin: 0;
  color: var(--medium-gray);
  font-size: 1.0625rem;
  line-height: 1.7;
}

body.contact-page .contact-body {
  padding: 56px 0 104px;
  background: #f3efe8;
}

body.contact-page .contact-panel {
  background: #fff;
  border: 1px solid rgba(26, 71, 49, 0.12);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 18px 40px rgba(15, 46, 31, 0.05);
}

body.contact-page .contact-panel__head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
}

body.contact-page .contact-panel__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--forest);
  margin: 0 0 8px;
}

body.contact-page .contact-panel__head p {
  margin: 0;
  color: var(--medium-gray);
}

body.contact-page .contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 4px;
}

body.contact-page .contact-form__actions .btn {
  min-width: 180px;
  justify-content: center;
}

body.contact-page .contact-form__note {
  margin: 0;
  font-size: 0.8125rem;
  color: #7a746b;
}

body.contact-page .contact-success {
  margin-top: 8px;
  padding: 18px 20px;
  background: #e8f0e6;
  border: 1px solid rgba(26, 71, 49, 0.16);
}

body.contact-page .contact-success strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
}

body.contact-page .contact-success p {
  margin: 0;
  color: #3d5c48;
  line-height: 1.6;
  font-size: 0.9375rem;
}

body.contact-page .contact-success a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.contact-page .contact-aside {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #faf7f2;
  border: 1px solid rgba(26, 71, 49, 0.12);
  padding: 8px 28px;
}

body.contact-page .contact-aside__block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
}

body.contact-page .contact-aside__block:last-child {
  border-bottom: 0;
}

body.contact-page .contact-aside__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8f71;
}

body.contact-page .contact-aside__block a {
  display: inline-block;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

body.contact-page .contact-aside__block a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.contact-page .contact-aside__block p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--medium-gray);
}

body.contact-page .contact-aside__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

body.contact-page .contact-aside__social a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0;
}

/* ---- Contact Info Cards (legacy help pages) ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light, #e8f0e8);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 12px;
}

.contact-info__card h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.contact-info__card p,
.contact-info__card a {
  font-size: 0.875rem;
  color: var(--medium-gray);
  text-decoration: none;
}

.contact-info__card a:hover {
  color: var(--forest);
}

/* ---- FAQ Section ---- */
.faq-section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest-dark);
  margin-bottom: 40px;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group__title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest-dark);
  text-align: left;
}

.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--forest);
}

.faq-item.open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--forest);
}

.help-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--forest-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.help-cta p {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 500;
}

/* ---- Support Sidebar ---- */
.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.support-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-links li a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--medium-gray);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.support-links li a:hover {
  background: var(--sage-light, #e8f0e8);
  color: var(--forest);
}

/* ---- Legal Content ---- */
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--forest-dark);
  margin-bottom: 12px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-list {
  padding-left: 20px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.legal-section a {
  color: var(--forest);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .support-layout,
  .contact-layout,
  body.contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  body.contact-page .contact-aside {
    position: static;
  }

  .support-sidebar {
    position: static;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .help-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   MENTORSHIP PAGE
   ============================================ */

/* Hero */
.ms-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ms-hero__bg {
  position: absolute;
  inset: 0;
}

.ms-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.ms-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 18, 0.88) 0%, rgba(15, 46, 31, 0.70) 60%, rgba(15, 46, 31, 0.35) 100%);
}

.ms-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 100px;
}

.ms-hero__label {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  margin-bottom: 24px;
}

.ms-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ms-hero__verse {
  font-size: 0.875rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.ms-hero__sub {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.ms-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ms-hero__btn-outline {
  color: var(--cream) !important;
  border-color: rgba(245, 240, 232, 0.5) !important;
}

.ms-hero__btn-outline:hover {
  border-color: var(--cream) !important;
  background: rgba(245, 240, 232, 0.1) !important;
}

/* Pillars */
.ms-pillars {
  padding: 100px 0;
  background: var(--cream);
}

.ms-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ms-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 46, 31, 0.08);
}

.ms-pillar__icon {
  width: 56px;
  height: 56px;
  background: var(--sage-light, #d4e7d0);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 20px;
}

.ms-pillar__icon svg {
  width: 28px;
  height: 28px;
}

.ms-pillar h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 10px;
}

.ms-pillar p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Banner image */
.ms-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.ms-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.ms-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 28, 18, 0.82) 0%, rgba(10, 28, 18, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.ms-banner__quote {
  max-width: 520px;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
}

.ms-banner__quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.04em;
}

/* How it works */
.ms-how {
  padding: 100px 0;
  background: var(--forest-dark);
}

.ms-how .section-header .label {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

.ms-how .section-header h2 {
  color: var(--cream);
}

.ms-how .section-header p {
  color: rgba(245, 240, 232, 0.7);
}

.ms-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ms-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.ms-step:last-child {
  border-bottom: none;
}

.ms-step__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--sage-light, #a3c4a3);
}

.ms-step__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}

.ms-step__body p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
}

/* Commitment */
.ms-commitment {
  padding: 100px 0;
  background: var(--cream);
}

.ms-commitment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.ms-commitment__col h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--forest);
}

.ms-commitment__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-commitment__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.ms-commitment__list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--forest);
}

/* Mentor cards */
.ms-mentors {
  padding: 100px 0;
  background: var(--off-white, #f9f6f1);
}

.ms-mentors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.ms-mentor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-mentor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 46, 31, 0.1);
}

.ms-mentor-card__img {
  height: 240px;
  overflow: hidden;
}

.ms-mentor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.ms-mentor-card:hover .ms-mentor-card__img img {
  transform: scale(1.04);
}

.ms-mentor-card__body {
  padding: 24px;
}

.ms-mentor-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.ms-mentor-card__role {
  display: block;
  font-size: 0.8125rem;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.ms-mentor-card__body p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.ms-mentor-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ms-mentor-card__tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--forest);
  background: var(--sage-light, #d4e7d0);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Testimonials on mentorship page */
.ms-testimonials {
  background: var(--cream) !important;
}

/* Apply section */
.ms-apply {
  padding: 100px 0;
  background: var(--off-white, #f9f6f1);
}

.ms-apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ms-apply__panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
}

.ms-apply__panel h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--forest-dark);
  margin: 8px 0 12px;
}

.ms-apply__panel > p {
  color: var(--medium-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ms-apply__panel--dark {
  background: var(--forest-dark);
  border-color: transparent;
}

.ms-apply__panel--dark h2 {
  color: var(--cream);
}

.ms-apply__panel--dark > p {
  color: rgba(245, 240, 232, 0.75);
}

.ms-apply__label-light {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

.ms-become__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ms-become__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
}

.ms-become__list strong {
  color: var(--cream);
}

.ms-become__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light, #a3c4a3);
}

.ms-become__btn {
  color: var(--cream) !important;
  border-color: rgba(245, 240, 232, 0.4) !important;
  width: 100%;
  justify-content: center;
}

.ms-become__btn:hover {
  background: rgba(245, 240, 232, 0.1) !important;
  border-color: var(--cream) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .ms-pillars__grid,
  .ms-mentors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ms-hero__content {
    padding: 100px 0 80px;
  }

  .ms-pillars__grid,
  .ms-mentors__grid,
  .ms-commitment__grid,
  .ms-apply__grid {
    grid-template-columns: 1fr;
  }

  .ms-banner {
    height: 260px;
  }

  .ms-banner__overlay {
    padding: 0 24px;
  }

  .ms-step {
    gap: 24px;
  }

  .ms-apply__panel {
    padding: 36px 24px;
  }
}

/* ============================================
   OUR STORY PAGE (promise.html)
   ============================================ */

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

.os-hero__bg {
  position: absolute;
  inset: 0;
}

.os-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.os-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 20, 12, 0.93) 0%, rgba(15, 46, 31, 0.78) 50%, rgba(15, 46, 31, 0.45) 100%);
}

.os-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 140px 0 120px;
}

.os-hero__label {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  margin-bottom: 24px;
}

.os-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}

.os-hero__verse {
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 20px;
  border-left: 2px solid rgba(245, 240, 232, 0.25);
  padding-left: 20px;
}

.os-hero__sub {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.os-hero__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.06em;
  animation: os-bob 2s ease-in-out infinite;
}

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

/* Name section */
.os-name {
  background: var(--forest-dark);
  padding: 80px 0;
}

.os-name__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.os-name__word {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  white-space: nowrap;
}

.os-name__lumi {
  color: var(--cream);
}

.os-name__nara {
  color: rgba(245, 240, 232, 0.3);
}

.os-name__latin {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5) !important;
  margin-bottom: 14px !important;
  letter-spacing: 0.04em;
}

.os-name__latin strong {
  color: var(--sage-light, #a3c4a3);
}

.os-name__meaning p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.8;
  margin-bottom: 12px;
}

.os-name__meaning p:last-child {
  margin-bottom: 0;
}

/* Chapter sections */
.os-chapter {
  padding: 100px 0;
  background: var(--cream);
}

.os-chapter:nth-child(even) {
  background: var(--off-white, #f9f6f1);
}

.os-chapter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.os-chapter--reverse .os-chapter__inner {
  direction: rtl;
}

.os-chapter--reverse .os-chapter__inner > * {
  direction: ltr;
}

.os-chapter__media {
  position: relative;
}

.os-chapter__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.os-chapter__img-caption {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--medium-gray);
  font-style: italic;
  text-align: center;
}

.os-chapter__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}

.os-chapter__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--forest-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.os-chapter__text p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.os-pullquote {
  border-left: 3px solid var(--forest);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--forest-dark);
  line-height: 1.55;
  font-style: normal;
}

/* Full width image */
.os-fullwidth-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.os-fullwidth-img__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.os-fullwidth-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 28, 18, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 48px 80px;
}

.os-fullwidth-img__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  color: var(--cream);
  max-width: 680px;
  line-height: 1.45;
  margin: 0;
}

/* Impact counters */
.os-impact {
  padding: 100px 0;
  background: var(--forest-dark);
}

.os-impact__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.os-impact__header .label {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  margin-bottom: 16px;
}

.os-impact__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  color: var(--cream);
  margin-bottom: 14px;
}

.os-impact__header p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}

.os-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.os-impact__stat {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(245, 240, 232, 0.08);
}

.os-impact__stat:last-child {
  border-right: none;
}

.os-impact__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.os-impact__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.os-impact__sub {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
  font-style: italic;
}

/* Vision section */
.os-vision {
  padding: 112px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(107, 143, 113, 0.1), transparent 42%),
    var(--cream);
}

.os-vision__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.os-vision__header {
  max-width: 780px;
}

.os-vision__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.os-vision__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.os-vision__lead {
  font-size: 1.125rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 760px;
}

.os-vision__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: pillar;
}

.os-vision__pillar {
  position: relative;
  padding: 40px 32px 36px;
  border: 1px solid rgba(26, 71, 49, 0.12);
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.os-vision__pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.os-vision__pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 71, 49, 0.24);
  box-shadow: 0 24px 50px rgba(15, 46, 31, 0.1);
}

.os-vision__pillar:hover::before {
  transform: scaleX(1);
}

.os-vision__pillar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #e8f0e6, #d4e7d0);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 22px;
}

.os-vision__pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.25;
}

.os-vision__pillar p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.75;
  margin: 0;
}

/* Prayer wall */
.os-prayer {
  padding: 112px 0;
  background:
    linear-gradient(180deg, #f4efe7 0%, #efe8dd 100%);
}

.os-prayer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.os-prayer__text {
  position: sticky;
  top: 104px;
}

.os-prayer__label {
  display: inline-block;
  margin-bottom: 18px;
}

.os-prayer__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.os-prayer__text p {
  font-size: 1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 460px;
}

.os-prayer__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem !important;
  color: var(--sage) !important;
  font-style: normal;
  font-weight: 500;
  margin-top: 8px;
}

.os-prayer__note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.os-prayer__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.os-prayer__form {
  background: #fff;
  border: 1px solid rgba(26, 71, 49, 0.12);
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 20px 48px rgba(15, 46, 31, 0.06);
}

.os-prayer__form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.os-prayer__form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.os-prayer__form-group select,
.os-prayer__form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26, 71, 49, 0.16);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--forest-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
  box-sizing: border-box;
}

.os-prayer__form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231A4731' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.os-prayer__form-group textarea {
  min-height: 120px;
  padding-bottom: 28px;
}

.os-prayer__form-group select:focus,
.os-prayer__form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 71, 49, 0.08);
}

.os-prayer__char-count {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.75rem;
  color: var(--medium-gray);
  pointer-events: none;
}

.os-prayer__submit {
  align-self: flex-start;
  min-width: 200px;
  justify-content: center;
}

/* Wall items */
.os-prayer__wall {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.os-prayer__wall::before {
  content: "From the community";
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2px;
}

.os-prayer__wall-item {
  background: #fff;
  border: 1px solid rgba(26, 71, 49, 0.1);
  border-left: 3px solid var(--sage);
  border-radius: 0;
  padding: 20px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.os-prayer__wall-item:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 26px rgba(15, 46, 31, 0.06);
}

.os-prayer__wall-item--new {
  animation: os-slidein 0.4s ease;
  border-left-color: var(--forest);
}

@keyframes os-slidein {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.os-prayer__wall-item p {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 10px 0 0;
  font-style: italic;
}

.os-prayer__wall-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}

.os-prayer__wall-tag--prayer {
  background: rgba(26, 71, 49, 0.1);
  color: var(--forest);
}

.os-prayer__wall-tag--encouragement {
  background: rgba(245, 193, 100, 0.18);
  color: #8a6000;
}

.os-prayer__wall-tag--gratitude {
  background: rgba(25, 118, 210, 0.1);
  color: #1565c0;
}

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

  .os-prayer__inner {
    grid-template-columns: 1fr;
  }

  .os-prayer__text {
    position: static;
  }

  .os-prayer__text p {
    max-width: none;
  }
}

/* Responsive — Our Story */
@media (max-width: 1024px) {
  .os-name__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .os-name__word {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .os-chapter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .os-chapter--reverse .os-chapter__inner {
    direction: ltr;
  }

  .os-chapter__img {
    height: 320px;
  }

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

  .os-impact__stat {
    border-right: none;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  }

  .os-impact__stat:nth-child(2n) {
    border-right: none;
  }

  .os-impact__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .os-vision__pillars {
    grid-template-columns: 1fr 1fr;
  }

  .os-prayer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .os-hero__inner {
    padding: 100px 0 80px;
  }

  .os-fullwidth-img {
    height: 260px;
  }

  .os-fullwidth-img__overlay {
    padding: 24px;
  }

  .os-impact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .os-vision__pillars {
    grid-template-columns: 1fr;
  }

  .os-prayer__form {
    padding: 24px 20px;
  }
}

/* ============================================
   GUIDELINES PAGE
   ============================================ */

/* Hero */
.gl-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gl-hero__bg {
  position: absolute;
  inset: 0;
}

.gl-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.gl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 28, 18, 0.90) 0%, rgba(15, 46, 31, 0.75) 55%, rgba(15, 46, 31, 0.4) 100%);
}

.gl-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 96px;
}

.gl-hero__label {
  color: var(--sage-light, #a3c4a3) !important;
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  margin-bottom: 20px;
}

.gl-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.gl-hero__verse {
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 16px;
  border-left: 2px solid rgba(245, 240, 232, 0.3);
  padding-left: 16px;
}

.gl-hero__sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 24px;
}

.gl-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.5);
}

.gl-hero__jump {
  color: var(--sage-light, #a3c4a3);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.gl-hero__jump:hover {
  color: var(--cream);
}

/* Body layout */
.gl-body {
  background: var(--cream);
  padding: 80px 0 100px;
}

.gl-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.gl-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gl-sidebar__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.gl-sidebar__card--dark {
  background: var(--forest-dark);
  border-color: transparent;
  text-align: center;
}

.gl-sidebar__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin-bottom: 14px;
}

.gl-sidebar__heading-light {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 8px;
}

.gl-sidebar__sub {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 16px;
  line-height: 1.5;
}

.gl-sidebar__btn {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
}

.gl-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gl-toc li a {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.875rem;
  color: var(--medium-gray);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}

.gl-toc li a:hover {
  background: var(--sage-light, #e8f0e8);
  color: var(--forest);
}

.gl-sidebar__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gl-sidebar__links li a {
  display: block;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.875rem;
  color: var(--medium-gray);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.gl-sidebar__links li a:hover {
  background: var(--sage-light, #e8f0e8);
  color: var(--forest);
}

/* Content sections */
.gl-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gl-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.gl-section:last-child {
  border-bottom: none;
}

.gl-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.gl-section h2 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  color: var(--forest-dark);
  margin-bottom: 20px;
}

.gl-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 12px;
}

.gl-section p {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gl-section a {
  color: var(--forest);
  text-decoration: underline;
}

/* Verse block */
.gl-verse-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--sage-light, #e8f0e8);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.gl-verse-block svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--forest);
}

.gl-verse-block blockquote {
  margin: 0;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.65;
}

/* Checklist */
.gl-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gl-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.65;
}

.gl-checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.gl-checklist__icon--green {
  background: rgba(46, 125, 50, 0.12);
  color: var(--forest);
}

.gl-checklist__icon--red {
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
}

.gl-checklist li strong {
  color: var(--forest-dark);
}

/* Plain list */
.gl-list {
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gl-list li {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.7;
}

.gl-list strong {
  color: var(--forest-dark);
}

/* Highlight box */
.gl-highlight-box {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 28px 32px;
  margin: 24px 0;
}

.gl-highlight-box--green {
  background: rgba(46, 125, 50, 0.05);
  border-color: rgba(46, 125, 50, 0.2);
}

.gl-highlight-box h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 14px;
}

.gl-highlight-box p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.75;
}

/* Two column cards */
.gl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.gl-two-col__card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 28px;
}

.gl-two-col__card--alert {
  background: rgba(198, 40, 40, 0.04);
  border-color: rgba(198, 40, 40, 0.2);
}

.gl-two-col__card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 14px;
}

/* Steps inline */
.gl-steps-inline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gl-step-inline {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--medium-gray);
  line-height: 1.65;
}

.gl-step-inline:last-child {
  border-bottom: none;
}

.gl-step-inline__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-dark);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-step-inline strong {
  color: var(--forest-dark);
}

.gl-step-inline a {
  color: var(--forest);
}

/* Agreement box */
.gl-section--agreement {
  border-bottom: none;
}

.gl-agreement-box {
  background: var(--forest-dark);
  border-radius: 20px;
  padding: 48px;
  margin-top: 28px;
}

.gl-agreement-box__header {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  margin-bottom: 16px;
}

.gl-agreement-box__header h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--cream);
  margin: 0;
}

.gl-agreement-box p {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.gl-agreement-box__check {
  margin-bottom: 32px;
}

/* Custom checkbox */
.gl-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.55;
}

.gl-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gl-checkbox__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  background: rgba(255,255,255,0.08);
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gl-checkbox input:checked + .gl-checkbox__box {
  background: var(--forest);
  border-color: var(--forest);
}

.gl-checkbox input:checked + .gl-checkbox__box::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.gl-checkbox strong {
  color: var(--cream);
}

.gl-agreement-box__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gl-agreement-box__actions .btn-outline {
  color: var(--cream) !important;
  border-color: rgba(245, 240, 232, 0.4) !important;
}

.gl-agreement-box__actions .btn-outline:hover {
  background: rgba(245, 240, 232, 0.1) !important;
  border-color: var(--cream) !important;
}

.gl-agreement-box__actions .btn-primary {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 960px) {
  .gl-layout {
    grid-template-columns: 1fr;
  }

  .gl-sidebar {
    position: static;
    order: 2;
  }

  .gl-content {
    order: 1;
  }
}

@media (max-width: 640px) {
  .gl-two-col {
    grid-template-columns: 1fr;
  }

  .gl-agreement-box {
    padding: 32px 24px;
  }

  .gl-agreement-box__actions {
    flex-direction: column;
  }

  .gl-agreement-box__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   CATEGORY PAGES (cat-*.html)
   ============================================ */

/* Make category-card work as <a> without losing styles */
a.category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Category Hero */
.cat-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 72px;
}

.cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(8, 20, 12, 0.82) 0%, rgba(15, 46, 31, 0.65) 50%, rgba(15, 46, 31, 0.3) 100%);
}

.cat-hero__inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 64px;
}

.cat-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.65);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.02em;
}

.cat-hero__back:hover {
  color: var(--cream);
  gap: 12px;
}

.cat-hero__icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 240, 232, 0.1);
  border: 1.5px solid rgba(245, 240, 232, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 18px;
}

.cat-hero__icon svg {
  width: 28px;
  height: 28px;
}

.cat-hero__label {
  color: rgba(245, 240, 232, 0.65) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  margin-bottom: 14px;
}

.cat-hero__inner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cat-hero__inner > p {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cat-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.cat-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-hero__stat strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1;
}

.cat-hero__stat span {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Filter bar */
.cat-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.cat-filter-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.cat-filter-bar__tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--medium-gray);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cat-tab:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.cat-tab--active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.cat-filter-bar__count {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  white-space: nowrap;
}

/* Works grid */
.cat-works {
  padding: 80px 0;
  background: var(--cream);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cat-work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15, 46, 31, 0.1);
}

.cat-work-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.cat-work-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.cat-work-card:hover .cat-work-card__img-wrap img {
  transform: scale(1.06);
}

.cat-work-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(250, 247, 242, 0.92);
  color: var(--forest-dark);
  backdrop-filter: blur(6px);
}

.cat-work-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-work-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--forest-dark);
  line-height: 1.35;
  margin-bottom: 4px;
}

.cat-work-card__author {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.cat-work-card__desc {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.cat-work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.cat-work-card__link:hover { gap: 10px; }

/* Featured creators */
.cat-creators {
  padding: 80px 0;
  background: var(--off-white, #f9f6f1);
}

.cat-creators__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cat-creator-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 46, 31, 0.08);
}

.cat-creator-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--border);
}

.cat-creator-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 3px;
}

.cat-creator-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-gray);
  margin-bottom: 6px;
}

.cat-creator-card p {
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 500;
}

/* Responsive — Category pages */
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cat-filter-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-hero__stats {
    gap: 20px;
  }
}

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

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

  .cat-filter-bar__tabs {
    gap: 6px;
  }

  .cat-tab {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
}

/* ============================================
   EVENTS PAGE
   ============================================ */

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

.ev-hero__slides {
  position: absolute;
  inset: 0;
}

.ev-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.ev-hero__slide--active {
  opacity: 1;
}

.ev-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 20, 12, 0.9) 0%, rgba(15, 46, 31, 0.7) 55%, rgba(15, 46, 31, 0.3) 100%);
  z-index: 1;
}

.ev-hero__inner {
  position: relative;
  z-index: 2;
  padding: 140px 0 60px;
  max-width: 860px;
}

.ev-hero__label {
  color: rgba(245, 240, 232, 0.75) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  margin-bottom: 22px;
}

.ev-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 18px;
}

.ev-hero__sub {
  font-size: 1.0625rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

/* Filter bar */
.ev-filter {
  display: flex;
  align-items: center;
  background: rgba(250, 247, 242, 0.97);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  gap: 0;
  max-width: 760px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.ev-filter__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  padding: 10px 16px 10px 0;
}

.ev-filter__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

.ev-filter__select {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--forest-dark);
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a4731' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.ev-filter__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 8px;
  flex-shrink: 0;
}

.ev-filter__btn {
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 8px;
}

/* Slide dots */
.ev-hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.ev-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 240, 232, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}

.ev-hero__dot--active {
  background: var(--cream);
  width: 24px;
  border-radius: 4px;
}

/* Grid section */
.ev-grid-section {
  padding: 100px 0;
  background: var(--cream);
}

.ev-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.ev-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--forest-dark);
  margin: 6px 0 0;
}

.ev-section-sub {
  font-size: 0.9375rem;
  color: var(--medium-gray);
  margin-top: 8px;
  max-width: 480px;
}

.ev-result-count {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  padding-bottom: 4px;
}

/* Event cards */
.ev-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ev-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 46, 31, 0.1);
}

.ev-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.ev-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ev-card:hover .ev-card__img {
  transform: scale(1.05);
}

.ev-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ev-card__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: ev-pulse 1.4s ease infinite;
}

@keyframes ev-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.ev-card__badge--live { background: #ffeaea; color: #c0392b; }
.ev-card__badge--virtual { background: rgba(25, 118, 210, 0.12); color: #1565c0; }
.ev-card__badge--limited { background: rgba(245, 193, 100, 0.2); color: #8a6000; }
.ev-card__badge--opening { background: rgba(46, 125, 50, 0.12); color: var(--forest); }
.ev-card__badge--wip { background: rgba(156, 39, 176, 0.1); color: #6a1b9a; }

.ev-card__follow {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(250, 247, 242, 0.92);
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--font-sans);
}

.ev-card__follow:hover {
  background: #fff;
  transform: scale(1.04);
}

.ev-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ev-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  color: var(--forest-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.ev-card__artist {
  font-size: 0.8125rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 12px;
}

.ev-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.ev-card__meta span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: var(--medium-gray);
}

.ev-card__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* No results */
.ev-no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--medium-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ev-no-results p {
  font-size: 1rem;
}

/* Timeline section */
.ev-timeline {
  padding: 100px 0;
  background: var(--off-white, #f9f6f1);
}

.ev-diary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.ev-diary-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-diary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 46, 31, 0.08);
}

.ev-diary-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ev-diary-card:hover .ev-diary-card__img {
  transform: scale(1.04);
}

.ev-diary-card__body {
  padding: 22px;
}

.ev-diary-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(46, 125, 50, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.ev-diary-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--forest-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.ev-diary-card__body p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ev-diary-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.ev-diary-card__link:hover {
  gap: 10px;
}

/* WIP timeline */
.ev-wip {
  background: var(--forest-dark);
  border-radius: 24px;
  padding: 48px;
}

.ev-wip__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.ev-wip__header h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--cream);
}

.ev-wip__header h3 span {
  color: rgba(245, 240, 232, 0.55);
  font-style: italic;
}

.ev-wip__opens {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ev-wip__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,240,232,0.15) transparent;
}

.ev-wip__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  flex: 1;
}

.ev-wip__step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.1);
  border: 2px solid rgba(245, 240, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.4);
  flex-shrink: 0;
  position: relative;
  margin-bottom: 14px;
}

.ev-wip__step--done .ev-wip__step-node {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.ev-wip__step--active .ev-wip__step-node {
  background: rgba(163, 196, 163, 0.15);
  border-color: var(--sage-light, #a3c4a3);
}

.ev-wip__step-node--future {
  background: rgba(245, 240, 232, 0.06);
  border: 2px dashed rgba(245, 240, 232, 0.18);
}

.ev-wip__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-light, #a3c4a3);
  animation: ev-glow 1.8s ease-in-out infinite;
}

@keyframes ev-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 196, 163, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(163, 196, 163, 0); }
}

.ev-wip__step-body {
  text-align: center;
  padding: 0 12px;
}

.ev-wip__step-phase {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  display: block;
  margin-bottom: 4px;
}

.ev-wip__step--active .ev-wip__step-phase {
  color: var(--sage-light, #a3c4a3);
}

.ev-wip__step-body strong {
  font-size: 0.875rem;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

.ev-wip__step-body p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.5;
}

.ev-wip__connector {
  flex: 1;
  height: 2px;
  background: rgba(245, 240, 232, 0.12);
  margin-top: 19px;
  flex-shrink: 0;
  min-width: 24px;
}

.ev-wip__connector--done {
  background: var(--forest);
}

/* Countdown */
.ev-wip__countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  justify-content: center;
}

.ev-wip__cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(245, 240, 232, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 44px;
}

.ev-wip__cd-block span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1;
}

.ev-wip__cd-block small {
  font-size: 0.6rem;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.ev-wip__cd-sep {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.3);
  margin-top: -8px;
}

/* Category rows */
.ev-categories {
  padding: 100px 0;
  background: var(--cream);
}

.ev-row {
  margin-bottom: 64px;
}

.ev-row:last-child {
  margin-bottom: 0;
}

.ev-row__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ev-row__head h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--forest-dark);
  margin: 0;
}

.ev-row__head p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  flex: 1;
}

.ev-row__more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.ev-row__more:hover { gap: 9px; }

.ev-row__scroll {
  position: relative;
}

.ev-row__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.ev-row__track::-webkit-scrollbar { display: none; }

.ev-cat-card {
  flex-shrink: 0;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.ev-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 46, 31, 0.09);
}

.ev-cat-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ev-cat-card:hover img { transform: scale(1.06); }

.ev-cat-card__info {
  padding: 14px 16px;
}

.ev-cat-card__info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 3px;
}

.ev-cat-card__info span {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.ev-row__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: -32px;
}

.ev-row__arrow:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.ev-row__arrow--prev { left: -20px; }
.ev-row__arrow--next { right: -20px; }

/* ---- Ticket Modal ---- */
.ev-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 12, 0.55);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.ev-modal-backdrop--active {
  opacity: 1;
  pointer-events: all;
}

.ev-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100%);
  background: var(--cream);
  z-index: 901;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.ev-modal--open {
  transform: translateX(0);
}

.ev-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 1;
}

.ev-modal__event-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--forest-dark);
  line-height: 1.35;
  margin: 0;
}

.ev-modal__artist {
  font-size: 0.8125rem;
  color: var(--forest);
  font-weight: 500;
  margin: 4px 0 0;
}

.ev-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.ev-modal__close:hover { background: var(--off-white, #f9f6f1); }

.ev-modal__body {
  padding: 28px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ev-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ev-modal__meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--medium-gray);
}

.ev-modal__tiers-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin: 0;
}

.ev-modal__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ev-modal__tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 0.9375rem;
  color: var(--forest-dark);
}

.ev-modal__tier input { display: none; }

.ev-modal__tier--selected {
  border-color: var(--forest);
  background: rgba(46, 125, 50, 0.05);
}

.ev-modal__tier--selected::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.ev-modal__cal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ev-modal__cal-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-dark);
  margin: 0;
}

.ev-modal__cal-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ev-modal__cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest-dark);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ev-modal__cal-btn:hover {
  border-color: var(--forest);
  background: rgba(46, 125, 50, 0.04);
}

.ev-modal__follow-wrap {
  background: var(--off-white, #f9f6f1);
  border-radius: 14px;
  padding: 20px;
}

.ev-modal__follow-wrap p {
  font-size: 0.875rem;
  color: var(--forest-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.ev-modal__follow-form {
  display: flex;
  gap: 8px;
}

.ev-modal__email,
.ev-follow-popup__email {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--forest-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
}

.ev-modal__email:focus,
.ev-follow-popup__email:focus { border-color: var(--forest); }

.ev-modal__follow-btn,
.ev-modal__reserve {
  width: 100%;
  justify-content: center;
}

/* Follow micro-popup */
.ev-follow-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 850;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px 20px 20px;
  width: 340px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

.ev-follow-popup--visible {
  opacity: 1;
  transform: translateY(0);
}

.ev-follow-popup p {
  font-size: 0.875rem;
  color: var(--forest-dark);
  margin-bottom: 12px;
}

.ev-follow-popup__form {
  display: flex;
  gap: 8px;
}

.ev-follow-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--medium-gray);
  cursor: pointer;
  line-height: 1;
}

/* Responsive — Events */
@media (max-width: 1024px) {
  .ev-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ev-wip {
    padding: 32px 24px;
  }

  .ev-wip__track {
    gap: 0;
  }

  .ev-row__arrow--prev { left: -12px; }
  .ev-row__arrow--next { right: -12px; }
}

@media (max-width: 768px) {
  .ev-filter {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }

  .ev-filter__group {
    flex: none;
    width: calc(50% - 6px);
    padding: 0;
  }

  .ev-filter__divider { display: none; }

  .ev-filter__btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .ev-cards {
    grid-template-columns: 1fr;
  }

  .ev-diary-grid {
    grid-template-columns: 1fr;
  }

  .ev-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ev-wip__step {
    min-width: 120px;
  }

  .ev-modal {
    width: 100%;
  }

  .ev-follow-popup {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 540px) {
  .ev-hero__inner {
    padding: 100px 0 48px;
  }

  .ev-filter__group {
    width: 100%;
  }

  .ev-row__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ============================================
   IMAGE FILLS — applied across all pages
   ============================================ */

/* Work card images */
.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.work-card:hover .work-card__img {
  transform: scale(1.05);
}

/* Hero creator avatar image */
.hero__creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Testimonial avatar images */
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Category cards with bg images — ensure text remains readable */
.category-card[style*="background-image"] {
  position: relative;
}

.category-card[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(250, 247, 242, 0.82);
  z-index: 0;
  transition: background-color 0.4s ease;
}

.category-card[style*="background-image"]:hover::after {
  background-color: rgba(26, 71, 49, 0.0);
}

.category-card[style*="background-image"] > * {
  position: relative;
  z-index: 1;
}

/* Stories page — banner */
.story-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.story-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.story-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 46, 31, 0.75) 0%, rgba(15, 46, 31, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.story-banner__overlay .label {
  color: var(--sage-light);
  margin-bottom: 12px;
}

.story-banner__overlay h2 {
  color: var(--cream);
  max-width: 560px;
}

/* Promise page — image strip */
.promise-img-strip {
  height: 360px;
  overflow: hidden;
}

.promise-img-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Profile cover mosaic tiles */
.profile-cover__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Profile gallery tiles */
.profile-gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .story-banner {
    height: 280px;
  }

  .story-banner__overlay {
    padding: 28px 24px;
  }

  .promise-img-strip {
    height: 220px;
  }
}

/* ============================================
   ABOUT / CREATOR PROFILE PAGE
   ============================================ */

/* Cover mosaic */
.profile-cover {
  padding-top: 72px;
  position: relative;
  background-color: var(--forest-dark);
  overflow: hidden;
}

.profile-cover__actions {
  position: absolute;
  top: 84px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
  padding-right: var(--gap);
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.75rem;
}

.profile-cover__share {
  background-color: rgba(250, 247, 242, 0.12);
  color: var(--cream);
  border-color: rgba(250, 247, 242, 0.3);
  backdrop-filter: blur(8px);
  gap: 6px;
}

.profile-cover__share:hover {
  background-color: rgba(250, 247, 242, 0.22);
  color: var(--cream);
}

.profile-cover__mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 200px;
}

.profile-cover__tile {
  height: 100%;
}

/* Profile body layout */
.profile-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 80px;
  align-items: start;
}

/* ---- Main Column ---- */
.profile-main {
  min-width: 0;
}

/* Identity */
.profile-identity {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.profile-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--sage);
  border: 4px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.profile-identity__text {
  padding-bottom: 4px;
}

.profile-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--forest);
  margin-bottom: 6px;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--medium-gray);
}

.profile-meta__item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-meta__dot {
  color: var(--warm-gray);
}

/* Bio */
.profile-bio {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 20px;
}

/* Tags */
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.profile-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(26, 71, 49, 0.2);
  color: var(--forest);
  background-color: transparent;
}

/* Stats bar */
.profile-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(26, 71, 49, 0.08);
  background-color: var(--off-white);
  margin-bottom: 40px;
}

.profile-stat {
  flex: 1;
  padding: 20px 16px;
  border-right: 1px solid rgba(26, 71, 49, 0.08);
  text-align: center;
}

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

.profile-stat__value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}

.profile-stat__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 4px;
}

.profile-stat__delta {
  font-size: 0.6875rem;
  color: var(--medium-gray);
}

.profile-stat__delta--up {
  color: #2D6B4A;
}

/* Gallery grid */
.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}

.profile-gallery__tile {
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.profile-gallery__tile:hover {
  transform: scale(1.02);
  opacity: 0.92;
}

.profile-gallery__tile--tall {
  grid-row: span 2;
}

.profile-gallery__tile--wide {
  grid-column: span 2;
}

/* ---- Sidebar ---- */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 92px;
}

.profile-card {
  background-color: var(--cream);
  border: 1px solid rgba(26, 71, 49, 0.08);
  padding: 24px;
}

.profile-card__title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--medium-gray);
  margin-bottom: 16px;
}

/* Availability */
.profile-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.profile-avail__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2D9D5E;
  flex-shrink: 0;
}

.profile-avail__status {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

.profile-avail__note {
  font-size: 0.8125rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.profile-avail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-avail__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--charcoal);
}

.profile-avail__list svg {
  color: var(--warm-gray);
  flex-shrink: 0;
}

/* Work breakdown */
.profile-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-breakdown__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-breakdown__header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--charcoal);
}

.profile-breakdown__bar {
  height: 4px;
  background-color: var(--off-white);
  border-radius: 2px;
  overflow: hidden;
}

.profile-breakdown__fill {
  height: 100%;
  background-color: var(--forest);
  border-radius: 2px;
}

/* Recent activity */
.profile-activity {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-activity__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.profile-activity__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--forest);
}

.profile-activity__content p {
  font-size: 0.8125rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 2px;
}

.profile-activity__content p a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.profile-activity__content span {
  font-size: 0.75rem;
  color: var(--medium-gray);
}

/* Profile responsive */
@media (max-width: 1024px) {
  .profile-body {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .profile-cover__mosaic {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-stat {
    border-right: 1px solid rgba(26, 71, 49, 0.08);
    border-bottom: 1px solid rgba(26, 71, 49, 0.08);
  }

  .profile-stat:nth-child(3),
  .profile-stat:last-child {
    border-right: none;
  }

  .profile-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .profile-cover__mosaic {
    grid-template-columns: repeat(3, 1fr);
    height: 130px;
  }

  .profile-cover__tile:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 480px) {
  .profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 100px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

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

  .hero__left {
    padding: 60px var(--gap);
    text-align: center;
    align-items: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__right {
    min-height: 400px;
  }

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

  .works__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .work-card:first-child {
    grid-row: span 1;
  }

  .promise__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

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

  .works__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .works__grid .work-card {
    min-height: 280px;
  }

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

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

  .hero__creator-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .hero__creator-info {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

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

  .cta__buttons {
    flex-direction: column;
  }

  .cta__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   HIRE TALENTS — critical layout (also in hire.css)
   Keep clearance here so the page never collapses
   under the fixed header if hire.css is delayed.
   ============================================ */

body.hire-page {
  background: #f3efe8;
}

body.hire-page .ht-hero {
  padding: 140px 0 48px !important;
  background: linear-gradient(180deg, #faf7f2 0%, #f3efe8 100%);
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
}

body.hire-page .ht-hero h1 {
  margin-top: 0;
}

body.hire-page .ht-howto {
  padding: 96px 0;
  background: #faf7f2;
}

body.hire-page .ht-bottom-cta {
  padding: 80px 0 !important;
  margin: 0;
  background: #1a4731 !important;
  color: #faf7f2;
  position: relative;
  z-index: 1;
}

body.hire-page .ht-bottom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

body.hire-page .ht-bottom-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: #faf7f2;
  margin: 0 0 10px;
}

body.hire-page .ht-bottom-cta p {
  color: rgba(250, 247, 242, 0.78);
  margin: 0;
  max-width: 420px;
}

body.hire-page .ht-bottom-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body.hire-page .ht-bottom-cta .btn-primary {
  background: #faf7f2;
  color: #1a4731;
  border-color: #faf7f2;
}

body.hire-page .ht-bottom-cta .btn-primary:hover {
  background: #e8e2d8;
}

body.hire-page .ht-bottom-cta .btn-outline {
  border-color: rgba(250, 247, 242, 0.45);
  color: #faf7f2;
}

body.hire-page .ht-bottom-cta .btn-outline:hover {
  background: #faf7f2;
  color: #1a4731;
}

body.hire-page .footer {
  position: relative;
  z-index: 0;
  margin-top: 0;
  clear: both;
}

.home-hire {
  padding: 112px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(151, 180, 147, 0.18), transparent 30%),
    linear-gradient(135deg, #153d2b 0%, #0d2c1d 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.home-hire__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.home-hire .label {
  color: var(--sage-light);
}

.home-hire h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 16px 0 22px;
  max-width: 620px;
}

.home-hire__copy > p {
  color: rgba(250, 247, 242, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 560px;
}

.home-hire__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hire__actions .btn-light {
  background: var(--cream);
  border: 1px solid var(--cream);
  color: var(--forest);
}

.home-hire__actions .btn-light:hover {
  background: #e7e0d5;
  border-color: #e7e0d5;
}

.home-hire__actions .btn-outline {
  border-color: rgba(250, 247, 242, 0.45);
  color: var(--cream);
}

.home-hire__actions .btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
}

.home-hire__directory {
  background: #faf7f2;
  color: #20221f;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 32px 70px rgba(3, 17, 10, 0.28);
}

.home-hire__directory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(26, 71, 49, 0.12);
}

.home-hire__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #6b8f71;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hire__directory-head h3 {
  margin: 0;
  color: #1a4731;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.home-hire__count {
  flex-shrink: 0;
  padding: 7px 11px;
  background: rgba(107, 143, 113, 0.12);
  color: #1a4731;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-hire__members {
  display: flex;
  flex-direction: column;
}

.home-hire__member {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  color: inherit;
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
  transition: background 0.2s ease;
}

.home-hire__member:last-child {
  border-bottom: 0;
}

.home-hire__member:hover {
  background: #f1ede5;
}

.home-hire__member-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: inherit;
}

.home-hire__follow {
  flex-shrink: 0;
  min-width: 108px;
  justify-content: center;
  padding: 10px 14px;
}

.home-hire__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1a4731, #315f48);
  color: #faf7f2;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.home-hire__member-info,
.home-hire__member-top {
  min-width: 0;
}

.home-hire__member-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.home-hire__member-top strong {
  color: #1a4731;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.home-hire__available {
  padding: 4px 7px;
  background: #dcead8;
  color: #25563b;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hire__meta {
  display: block;
  color: #706e68;
  font-size: 0.78rem;
}

.home-hire__services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.home-hire__services em {
  padding: 4px 7px;
  border: 1px solid rgba(26, 71, 49, 0.12);
  color: #315f48;
  font-size: 0.62rem;
  font-style: normal;
}

.home-hire__arrow {
  color: #6b8f71;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.home-hire__member:hover .home-hire__arrow {
  transform: translateX(4px);
}

.home-hire__loading {
  margin: 0;
  padding: 36px 28px;
  color: #706e68;
}

.home-hire__empty {
  padding: 36px 28px;
}

.home-hire__empty h4 {
  margin: 0 0 8px;
  color: #1a4731;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.home-hire__empty p {
  margin: 0 0 16px;
  color: #706e68;
  line-height: 1.55;
}

.home-hire__empty a {
  color: #1a4731;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .ht-directory__layout {
    grid-template-columns: 1fr;
  }

  .ht-filters {
    position: static;
    max-height: none;
  }

  .ht-row {
    grid-template-columns: 1fr;
  }

  .ht-row__cta {
    flex-direction: row;
    min-width: 0;
  }

  .ht-howto__grid {
    grid-template-columns: 1fr;
  }

  .home-hire__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-hire {
    padding: 80px 0;
  }

  .home-hire__directory-head,
  .home-hire__member {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hire__member:hover {
    padding-left: 20px;
  }

  .home-hire__member {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .home-hire__avatar {
    width: 50px;
    height: 50px;
  }

  .home-hire__available,
  .home-hire__services {
    display: none;
  }

  body.hire-page .ht-hero {
    padding: 120px 0 36px !important;
  }

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

  .ht-row__shots img {
    height: 88px;
  }
}

/* ============================================
   ABOUT (organization)
   ============================================ */

body.about-page .about-hero,
.about-hero {
  padding: 64px 0 72px !important;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(26, 71, 49, 0.08);
  position: relative;
  z-index: 1;
}

.about-hero__inner {
  max-width: 720px;
}

.about-hero .label {
  display: inline-block;
  margin-bottom: 8px;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  margin: 12px 0 18px;
  line-height: 1.15;
}

.about-hero p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--medium-gray);
  margin: 0;
}

.about-story {
  padding: 96px 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.about-story h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--forest);
  margin: 8px 0 20px;
}

.about-story p {
  color: var(--medium-gray);
  line-height: 1.75;
  margin: 0 0 18px;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-story__panel {
  background: var(--forest);
  color: var(--cream);
  padding: 36px 32px;
}

.about-story__panel blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.45;
  margin: 0 0 20px;
}

.about-story__panel span {
  font-size: 0.8125rem;
  color: var(--sage-light);
}

.about-pillars {
  padding: 96px 0;
  background: var(--off-white);
}

.about-pillars .section-header {
  margin-bottom: 0;
}

.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}

.about-pillar {
  background: #fff;
  border: 1px solid rgba(26, 71, 49, 0.12);
  padding: 32px 28px;
  margin: 0;
  min-height: 100%;
  box-sizing: border-box;
}

.about-pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  margin: 0 0 14px !important;
}

.about-pillar p {
  color: var(--medium-gray);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0 !important;
}

.about-values {
  padding: 96px 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.about-values h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--forest);
  margin: 8px 0 0;
}

.about-values__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.about-values__list li {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26, 71, 49, 0.1);
}

.about-values__list li:first-child {
  padding-top: 0;
}

.about-values__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-values__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--forest);
  margin: 0;
  line-height: 1.3;
}

.about-values__list span {
  display: block;
  color: var(--medium-gray);
  line-height: 1.7;
}

.about-cta {
  padding: 88px 0 100px !important;
  background: var(--cream);
  border-top: 1px solid rgba(26, 71, 49, 0.08);
  position: relative;
  z-index: 2;
  overflow: visible;
  height: auto;
}

.about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
}

.about-cta__copy {
  max-width: 560px;
}

.about-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--forest);
  margin: 8px 0 10px;
}

.about-cta p {
  color: var(--medium-gray);
  max-width: 480px;
  line-height: 1.65;
  margin: 0;
}

.about-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  margin: 0;
}

body.about-page {
  padding-top: 72px;
}

body.about-page .footer {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: 0;
  float: none;
}

@media (max-width: 900px) {
  body.about-page .about-hero,
  .about-hero {
    padding: 48px 0 56px !important;
  }

  .about-story,
  .about-pillars,
  .about-values,
  .about-cta {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .about-story__grid,
  .about-pillars__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-pillars__grid {
    gap: 20px;
    margin-top: 36px;
  }
}
