/* ================================================================
   CSS VARIABLES (Rule 6, 7, 8, 9)
   ================================================================ */
:root {
  /* Colors — Rule 6 */
  --primary-color: #D4322C;
  --primary-color-dark: #B0241F;
  --secondary-color: #0C1F3F;
  --secondary-color-mid: #162D54;
  --secondary-color-light: #1E3A6A;
  --accent-color: #C9A84C;
  --accent-color-light: #E8D5A0;
  --bg-color: #FEFCF9;
  --bg-cream: #FAF7F2;
  --text-color: #4A4541;
  --text-color-dark: #1A1A1A;
  --text-color-light: #7A756E;
  --text-color-warm-grey: #8A8279;
  --border-color: #E8E2D8;
  --white: #ffffff;

  /* Typography — Rule 7 */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --h1-size: clamp(2.75rem, 5.5vw, 4.5rem);
  --h2-size: clamp(2rem, 4vw, 3.25rem);
  --h3-size: clamp(1.5rem, 2.5vw, 2rem);
  --h4-size: 1.375rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  --xs-size: 0.8125rem;

  /* Section Padding — Rule 8 */
  --section-padding: clamp(4rem, 8vw, 7rem);

  /* Container — Rule 9 */
  --container-max-width: 1340px;
  --container-padding: clamp(1.5rem, 4vw, 3rem);
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
  --gap-2xl: 4rem;

  /* Easing */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--bg-color);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: var(--body-size);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(254, 252, 249, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color);
  transition: padding 0.4s;
}
.nav.is-scrolled {
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: var(--container-max-width); margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--secondary-color);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.75rem; font-weight: 700;
  font-family: var(--font-body);
}
.nav__logo-img {
  max-height: var(--nav-logo-height, 45px);
  width: auto;
  display: block;
}
.nav__links { display: flex; align-items: center; gap: var(--gap-lg); }
.nav__link {
  font-size: var(--small-size); font-weight: 500;
  color: var(--text-color-light);
  position: relative;
  transition: color 0.3s;
}
.nav__link:hover,
.nav__link.is-active { color: var(--secondary-color); }
.nav__link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary-color);
  transition: width 0.3s var(--ease-smooth);
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__cta {
  font-size: var(--xs-size); font-weight: 600;
  color: var(--white); background: var(--secondary-color);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}
.nav__cta:hover { background: var(--secondary-color-mid); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--secondary-color); transition: all 0.3s; }

/* WP Menu item class bridge */
.nav__links .menu-item a {
  font-size: var(--small-size); font-weight: 500;
  color: var(--text-color-light);
  position: relative;
  transition: color 0.3s;
}

/* ================================================================
   HERO (Homepage)
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,50,44,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container-max-width); margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}
.hero__inner--full { grid-template-columns: 1fr; max-width: 720px; }
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--primary-color);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  font-weight: 400;
  line-height: 1.08;
  color: var(--secondary-color);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--primary-color);
}
.hero__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-color-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex; gap: var(--gap-sm);
  flex-wrap: wrap;
}

/* Hero Media */
.hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
  max-height: 500px;
  border-radius: 20px;
}
.hero__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  background: var(--secondary-color);
  border-radius: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  gap: 1rem;
}
.hero__placeholder-icon { opacity: 0.4; }
.hero__placeholder-icon svg { stroke: #fff; }

/* ================================================================
   SECTION FOUNDATIONS (Rule 8, 9, 10)
   ================================================================ */
.section {
  padding: var(--section-padding) 0;
}
.section__inner {
  max-width: var(--container-max-width); margin: 0 auto;
  padding: 0 var(--container-padding);
}
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--primary-color);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--h2-size);
  font-weight: 400;
  line-height: 1.12;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-color-light);
  max-width: 560px;
  line-height: 1.7;
}
.section--navy { background: var(--secondary-color); }
.section--navy .section__eyebrow { color: var(--accent-color); }
.section--navy .section__eyebrow::before { background: var(--accent-color); }
.section--navy .section__title { color: var(--white); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,31,63,0.72), rgba(12,31,63,0.88));
}
.page-hero__inner {
  max-width: var(--container-max-width); margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative; z-index: 1;
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.page-hero__eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--accent-color);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
}

/* ================================================================
   TWO COLUMN LAYOUT
   ================================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}
.two-col__img {
  border-radius: 16px;
  overflow: hidden;
}
.two-col__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.6s var(--ease-smooth);
}
.two-col__img:hover img { transform: scale(1.03); }

/* ================================================================
   PROSE
   ================================================================ */
.prose h2 {
  font-family: var(--font-display);
  font-size: var(--h3-size);
  font-weight: 400;
  color: var(--secondary-color);
  margin: 0 0 1rem;
}
.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-color);
  line-height: 1.75;
  font-size: var(--body-size);
}

/* ================================================================
   WHAT CARDS (Homepage)
   ================================================================ */
.what { background: var(--bg-color); }
.what__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gap-md);
  margin-top: var(--gap-xl);
}
.what-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.what-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}
.what-card:hover::before { transform: scaleX(1); }
.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12,31,63,0.07);
}
.what-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.what-card__icon--fair { background: rgba(212,50,44,0.08); color: var(--primary-color); }
.what-card__icon--open { background: rgba(201,168,76,0.12); color: var(--accent-color); }
.what-card__icon--safe { background: rgba(12,31,63,0.06); color: var(--secondary-color); }
.what-card__icon--merit { background: rgba(212,50,44,0.08); color: var(--primary-color); }
.what-card__title {
  font-family: var(--font-display);
  font-size: var(--h4-size);
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.what-card__text {
  font-size: 0.9rem;
  color: var(--text-color-light);
  line-height: 1.65;
}

/* ================================================================
   VALUE CARDS (inner pages)
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  margin-top: var(--gap-xl);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12,31,63,0.07);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.vc-red { background: rgba(212,50,44,0.08); color: var(--primary-color); }
.vc-gold { background: rgba(201,168,76,0.12); color: var(--accent-color); }
.vc-navy { background: rgba(12,31,63,0.06); color: var(--secondary-color); }
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--h4-size);
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.value-card__text {
  font-size: 0.9rem;
  color: var(--text-color-light);
  line-height: 1.65;
}

/* ================================================================
   TIMELINE TABLE (inner pages)
   ================================================================ */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--gap-md);
}
.timeline-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
  padding: 0.75rem 1rem;
  background: var(--bg-cream);
  border-bottom: 2px solid var(--secondary-color);
}
.timeline-table td {
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}
.timeline-table td:first-child {
  font-weight: 600;
  color: var(--secondary-color);
  white-space: nowrap;
  width: 180px;
}

/* ================================================================
   HORIZONTAL TIMELINE (Homepage)
   ================================================================ */
.timeline-section {
  background: var(--secondary-color);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.timeline-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,50,44,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.timeline__header {
  text-align: center;
  margin-bottom: var(--gap-xl);
  position: relative; z-index: 1;
}
.timeline__header .section__eyebrow { color: var(--accent-color); }
.timeline__header .section__eyebrow::before { background: var(--accent-color); }
.timeline__header .section__title { color: var(--white); }
.timeline__header .section__subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }
.timeline__track-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}
.timeline__track {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 0 3rem;
}
.timeline__line {
  position: absolute;
  top: calc(2rem + 20px);
  left: 0;
  height: 2px;
  background: var(--secondary-color-light);
  z-index: 0;
}
.timeline__line-progress {
  position: absolute;
  top: calc(2rem + 20px);
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent-color);
  z-index: 1;
}
.timeline__item {
  flex: 0 0 280px;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.timeline__dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--secondary-color-light);
  border: 3px solid var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: all 0.4s;
  position: relative;
}
.timeline__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.4s;
}
.timeline__item.is-active .timeline__dot {
  background: var(--accent-color);
  border-color: var(--secondary-color);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.timeline__item.is-active .timeline__dot::after {
  border-color: rgba(201,168,76,0.25);
}
.timeline__month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.timeline__label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.timeline__desc {
  font-size: var(--xs-size);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ================================================================
   PROGRAM CARDS
   ================================================================ */
.programs { background: var(--bg-cream); }
.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  margin-top: var(--gap-xl);
}
.program-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-color);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(12,31,63,0.08);
}
.program-card__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.program-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.program-card:hover .program-card__img img { transform: scale(1.06); }
.program-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  color: var(--white);
}
.program-card__tag--wsdc { background: var(--primary-color); }
.program-card__tag--widpsc { background: var(--secondary-color); }
.program-card__body { padding: 1.75rem; }
.program-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}
.program-card__text {
  font-size: 0.9rem;
  color: var(--text-color-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.program-card__link {
  font-size: var(--small-size); font-weight: 600;
  color: var(--primary-color);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.3s;
}
.program-card__link:hover { gap: 0.75rem; }

/* ================================================================
   PULLQUOTE
   ================================================================ */
.pullquote {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
.pullquote::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,31,63,0.88);
  pointer-events: none;
}
.pullquote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(201,168,76,0.05);
  position: absolute;
  top: -4rem; left: 2rem;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.35;
  position: relative; z-index: 2;
}
.pullquote__attr {
  text-align: center;
  margin-top: 1.5rem;
  font-size: var(--xs-size);
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative; z-index: 2;
}

/* ================================================================
   COACHING (Homepage)
   ================================================================ */
.coaching { background: var(--bg-color); }
.coaching__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: center;
}
.coaching__img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.coaching__img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.coaching__img-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-size: var(--xs-size);
  font-weight: 600;
  color: var(--secondary-color);
  display: flex; align-items: center; gap: 0.5rem;
}
.coaching__img-badge span { color: var(--primary-color); font-size: 1rem; }

/* ================================================================
   PHOTO STRIP (infinite marquee)
   ================================================================ */
.photo-strip {
  overflow: hidden;
  background: var(--secondary-color);
  padding: 1.5rem 0;
}
.photo-strip__track {
  display: flex;
  gap: var(--gap-sm);
  animation: marquee 40s linear infinite;
  width: max-content;
}
.photo-strip__item {
  flex: 0 0 auto;
  width: 280px; height: 180px;
  border-radius: 10px;
  overflow: hidden;
}
.photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.photo-strip__item:hover img { transform: scale(1.08); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   GALLERY PREVIEW (Homepage)
   ================================================================ */
.gallery-preview { background: var(--bg-cream); }
.gallery-preview__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: var(--gap-sm);
}
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gap-sm);
}
.gallery-preview__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--border-color);
}
.gallery-preview__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery-preview__item:hover img { transform: scale(1.06); }
.gallery-preview__item--tall { grid-row: span 2; }
.gallery-preview__item--wide { grid-column: span 2; }
.gallery-preview__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(12,31,63,0.75), transparent);
  color: var(--white);
  font-size: var(--xs-size);
  font-weight: 600;
}

/* ================================================================
   GALLERY GRID (Gallery page)
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-sm);
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border-color);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(12,31,63,0.7), transparent);
  color: var(--white);
  font-size: var(--xs-size);
  font-weight: 600;
}

/* ================================================================
   STATS
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__number span { color: var(--primary-color); }
.stat__label {
  font-size: var(--xs-size);
  color: var(--text-color-light);
  font-weight: 500;
}

/* Homepage stats wrapper */
.stats {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
  text-align: center;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  padding: 4rem 0;
  background: var(--secondary-color);
  text-align: center;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-section__text {
  font-size: var(--body-size);
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.cta-section--cream { background: var(--bg-cream); }
.cta-section--cream .cta-section__title { color: var(--secondary-color); }
.cta-section--cream .cta-section__text { color: var(--text-color-light); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-2xl);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: var(--gap-sm);
  margin-bottom: 1.5rem;
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,50,44,0.06);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}
.contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-color-light);
  margin-bottom: 0.25rem;
}
.contact-info__value {
  font-size: var(--body-size);
  color: var(--secondary-color);
  font-weight: 500;
}
.contact-info__value a {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  transition: border-color 0.3s;
}
.contact-info__value a:hover { border-color: var(--primary-color); }
.contact-inquiries {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}
.contact-inquiries__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--secondary-color);
  margin: 0 0 0.75rem;
}
.contact-inquiries__item {
  font-size: var(--small-size);
  color: var(--text-color-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.contact-inquiries__item:last-child { margin-bottom: 0; }
.contact-inquiries__item strong { color: var(--secondary-color); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: var(--xs-size);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.4rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-color);
  transition: border-color 0.3s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary-color);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* CF7 form styling */
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 1.25rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-color);
  transition: border-color 0.3s;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}
.wpcf7 textarea { resize: vertical; min-height: 140px; }
.wpcf7 input[type="submit"] {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  background: var(--primary-color);
  color: var(--white);
  border: none; cursor: pointer;
  width: 100%; justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(212,50,44,0.25);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,50,44,0.35);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9375rem; font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  transition: all 0.3s var(--ease-smooth);
}
.btn--primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,50,44,0.25);
}
.btn--primary:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212,50,44,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--secondary-color);
  border: 1.5px solid var(--border-color);
}
.btn--outline:hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: var(--white);
}
.btn--navy {
  background: var(--secondary-color);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--secondary-color-mid);
  transform: translateY(-1px);
}
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { transition: transform 0.3s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--secondary-color);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--gap-xl);
  margin-bottom: var(--gap-xl);
}
.footer__logo-link { display: inline-block; margin-bottom: 0.75rem; }
.footer__logo-img {
  max-height: var(--footer-logo-height, 50px);
  width: auto;
  display: block;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: var(--h4-size);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__desc { font-size: var(--small-size); line-height: 1.7; max-width: 280px; }
.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; }
.footer__links li + li { margin-top: 0.6rem; }
.footer__links a { font-size: var(--small-size); transition: color 0.3s; }
.footer__links a:hover { color: var(--white); }
.footer__governance-note {
  margin-top: 1rem;
  font-size: var(--xs-size);
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  font-size: 0.75rem;
}

/* ================================================================
   GSAP REVEAL HELPERS
   ================================================================ */
/* Initial states set by GSAP fromTo — content visible without JS */

/* ================================================================
   ARCHIVE PLACEHOLDER
   ================================================================ */
.archive-placeholder {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  color: var(--text-color-light);
  font-style: italic;
  text-align: center;
}
