/* ==========================================================================
   Windermere Congregation of Jehovah's Witnesses — Main Stylesheet
   www.windermerecongregation.church
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */
:root {
  --primary:        #1A3A5C;
  --primary-light:  #2E6DAD;
  --accent:         #C8A84B;
  --accent-light:   #F0D080;
  --white:          #FFFFFF;
  --off-white:      #F8F6F2;
  --text-dark:      #1C1C1C;
  --text-gray:      #555555;
  --footer-bg:      #0F2235;
  --border-light:   #E2DDD4;
  --shadow:         0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover:   0 8px 30px rgba(0, 0, 0, 0.15);
  --radius:         8px;
  --radius-lg:      16px;
  --transition:     all 0.3s ease;
  --header-height:  132px;
  --font-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  padding-top: var(--header-height);
  overflow-x: hidden;
}

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

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--text-dark);
}

em {
  font-style: italic;
}

blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}

blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
  font-family: var(--font-heading);
}

blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 1rem;
  font-weight: 600;
}

/* ==========================================================================
   4. LAYOUT — CONTAINER & SECTION
   ========================================================================== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section--sm {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section--lg {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section--white   { background-color: var(--white); }
.section--off-white { background-color: var(--off-white); }
.section--primary { background-color: var(--primary); }
.section--dark    { background-color: var(--footer-bg); }

/* ==========================================================================
   5. SECTION TITLE
   ========================================================================== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
}

.section-title--white {
  color: var(--white);
}

.section-title--white::after {
  background: var(--accent);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-gray);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px;
}

.section-subtitle--white {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   6. GRID UTILITIES
   ========================================================================== */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 30px;
}

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

/* ==========================================================================
   7. SITE HEADER — Two-tier professional NPO design
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

/* ---------- Tier 1: Utility bar ---------- */
.header-utility {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.header-utility-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1;
}

.utility-item:hover {
  color: var(--accent);
}

.utility-item svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

.header-utility-right {
  display: flex;
  align-items: center;
}

.utility-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  background-color: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 100px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.utility-badge svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

/* ---------- Tier 2: Main header ---------- */
.header-main {
  background-color: var(--white);
}

.header-main-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.site-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-name-line1 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.005em;
}

.site-name-line2 {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Primary navigation */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  list-style: none;
  gap: clamp(2px, 0.8vw, 10px);
  margin: 0;
  padding: 0;
}

.site-nav li {
  flex-shrink: 0;
}

.site-nav a {
  display: inline-block;
  position: relative;
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px clamp(6px, 0.9vw, 14px);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.28s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: calc(100% - 20px);
}

.site-nav a.active {
  color: var(--primary);
}

/* Header CTA button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background-color: var(--accent);
  color: var(--primary);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.35);
}

.header-cta:hover {
  background-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(200, 168, 75, 0.45);
}

.header-cta svg {
  stroke: var(--primary);
  flex-shrink: 0;
}

/* Hamburger — mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 8px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.hamburger:hover {
  background-color: var(--primary);
}

.hamburger:hover .hamburger-line {
  background-color: var(--white);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.is-open {
  background-color: var(--primary);
  border-color: var(--primary);
}

.hamburger.is-open .hamburger-line {
  background-color: var(--white);
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   8. HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 34, 53, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 20px;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  border: 1px solid var(--accent);
  padding: 4px 16px;
  border-radius: 30px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

/* Page hero (inner pages) */
.page-hero {
  min-height: 350px;
}

.page-hero .hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.4);
}

.btn-secondary {
  background-color: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 0.8rem;
  padding: 9px 20px;
}

.btn--lg {
  font-size: 1.05rem;
  padding: 16px 38px;
}

/* ==========================================================================
   10. CARDS
   ========================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  position: relative;
}

.card-image img,
img.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-footer {
  padding: 16px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   11. STATS / COUNTER SECTION
   ========================================================================== */
.stats-section {
  background-color: var(--primary);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,0.95) 0%, rgba(15,34,53,0.98) 100%);
  z-index: 0;
  pointer-events: none;
}

.stats-section > .container,
.stats-section > * {
  position: relative;
  z-index: 1;
}

.stats-section .section-title {
  color: var(--white);
}

.stats-section .section-title::after {
  background-color: var(--accent);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   12. PROGRAMS GRID
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-light);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.program-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.25);
}

.program-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.program-card-body {
  padding: 20px 24px 28px;
  text-align: center;
}

.program-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  margin-top: 10px;
}

.program-card-text {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ==========================================================================
   13. EVENTS LIST — TIMELINE STYLE
   ========================================================================== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.event-date-badge {
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  text-align: center;
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.event-body {
  padding: 18px 20px;
  flex: 1;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.event-meta {
  font-size: 0.82rem;
  color: var(--text-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-meta svg {
  flex-shrink: 0;
}

.event-description {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin: 0;
}

.event-action {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid var(--border-light);
  flex-shrink: 0;
}

/* ==========================================================================
   14. GALLERY GRID
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
}

.gallery-item:nth-child(5n + 1) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 92, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

/* ==========================================================================
   15. LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  transition: var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* ==========================================================================
   16. CONTACT FORM
   ========================================================================== */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 48px;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: #c0392b;
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.5;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(46, 109, 173, 0.15);
}

.form-control.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 5px;
}

.form-help {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 5px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-light);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.88rem;
  color: var(--text-gray);
  cursor: pointer;
}

/* Form status messages */
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.form-status.is-visible {
  display: flex;
}

.form-status--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

.spinner--dark {
  border-color: rgba(26, 58, 92, 0.3);
  border-top-color: var(--primary);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   17. ACCORDION (FAQ)
   ========================================================================== */
.accordion {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

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

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

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  border: none;
}

.accordion-trigger:hover {
  background: var(--off-white);
}

.accordion-trigger.is-active {
  background: var(--off-white);
  color: var(--primary-light);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.25s ease;
}

.accordion-trigger.is-active .accordion-icon {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: rotate(180deg);
}

.accordion-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-gray);
  transition: stroke 0.25s ease;
}

.accordion-trigger.is-active .accordion-icon svg {
  stroke: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--off-white);
}

.accordion-body.is-open {
  max-height: 600px;
}

.accordion-body-inner {
  padding: 6px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ==========================================================================
   17b. WEBSITE URL STRIP (contact page)
   ========================================================================== */
.website-strip {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  padding: 22px 32px;
  box-shadow: 0 10px 30px rgba(26, 58, 92, 0.18);
  position: relative;
  overflow: hidden;
}

.website-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.website-strip-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.website-strip-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200, 168, 75, 0.4);
}

.website-strip-text {
  flex: 1;
  min-width: 240px;
  color: var(--white);
}

.website-strip-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.website-strip-url {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  word-break: break-all;
}

.website-strip-url:hover {
  color: var(--accent);
}

.website-strip-btn {
  flex-shrink: 0;
  color: var(--white);
  border-color: var(--white);
}

.website-strip-btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

@media (max-width: 640px) {
  .website-strip {
    padding: 20px;
  }
  .website-strip-inner {
    justify-content: center;
    text-align: center;
  }
  .website-strip-text {
    text-align: center;
    min-width: 0;
    width: 100%;
  }
  .website-strip-btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   18. PRE-FOOTER CTA STRIP
   ========================================================================== */
.pre-footer-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #B8942F 100%);
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.pre-footer-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pre-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.pre-footer-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.75;
  margin-bottom: 8px;
}

.pre-footer-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 12px;
}

.pre-footer-sub {
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.85;
  line-height: 1.55;
  max-width: 620px;
  margin: 0;
}

.pre-footer-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.pre-footer-cta .btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pre-footer-cta .btn-primary:hover {
  background-color: var(--footer-bg);
  color: var(--white);
}

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

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

/* ==========================================================================
   18b. SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--footer-bg);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 48px;
}

/* Col 1: Brand */
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.footer-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-text span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 320px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background-color: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-badge svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

/* Section headings */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background-color: var(--accent);
}

/* Footer nav lists */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, padding 0.2s ease;
  padding: 2px 0;
}

.footer-nav a::before {
  content: '→';
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Col 4: Visit info */
.footer-address {
  font-style: normal;
  margin-bottom: 22px;
}

.footer-address-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-address-street {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact-list svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-hours {
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

.footer-hours-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-hours-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 3px 0;
  margin: 0;
}

.footer-hours-line span {
  color: var(--white);
  font-weight: 600;
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-bottom-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-nav a:hover {
  color: var(--accent);
}

.footer-registry-mini {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   19. TESTIMONIALS / QUOTES
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-quote-icon {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.testimonial-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--off-white);
}

.testimonial-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: block;
}

.testimonial-author-title {
  font-size: 0.78rem;
  color: var(--text-gray);
}

/* ==========================================================================
   20. UTILITY CLASSES
   ========================================================================== */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-white   { color: var(--white) !important; }
.text-accent  { color: var(--accent) !important; }
.text-primary { color: var(--primary) !important; }
.text-gray    { color: var(--text-gray) !important; }

.bg-white     { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }
.bg-primary   { background-color: var(--primary); }
.bg-dark      { background-color: var(--footer-bg); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 48px; }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mb-5  { margin-bottom: 48px; }

.py-1  { padding-top: 8px;  padding-bottom: 8px; }
.py-2  { padding-top: 16px; padding-bottom: 16px; }
.py-3  { padding-top: 24px; padding-bottom: 24px; }
.py-4  { padding-top: 32px; padding-bottom: 32px; }
.py-5  { padding-top: 48px; padding-bottom: 48px; }

.px-1  { padding-left: 8px;  padding-right: 8px; }
.px-2  { padding-left: 16px; padding-right: 16px; }
.px-3  { padding-left: 24px; padding-right: 24px; }
.px-4  { padding-left: 32px; padding-right: 32px; }

.d-flex         { display: flex; }
.d-grid         { display: grid; }
.d-block        { display: block; }
.d-none         { display: none; }

.align-center   { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap      { flex-wrap: wrap; }
.gap-1          { gap: 8px; }
.gap-2          { gap: 16px; }
.gap-3          { gap: 24px; }
.gap-4          { gap: 32px; }

.w-100          { width: 100%; }
.img-cover      { object-fit: cover; width: 100%; height: 100%; }
.rounded        { border-radius: var(--radius); }
.rounded-lg     { border-radius: var(--radius-lg); }
.shadow         { box-shadow: var(--shadow); }
.shadow-hover   { box-shadow: var(--shadow-hover); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 40px 0;
}

.divider--accent {
  border-top-color: var(--accent);
  border-top-width: 2px;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 30px;
  background: var(--accent);
  color: var(--primary);
}

.badge--outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   21. SKIP TO CONTENT
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   22. FEATURE / INFO BANDS
   ========================================================================== */
.info-band {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
}

.info-band svg {
  stroke: var(--accent);
  flex-shrink: 0;
}

.info-band p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* Two-column text + image layout */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-content-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.split-content-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.split-content-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ==========================================================================
   23. SCROLL ANIMATION (fade in)
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   24. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:last-child,
  .stat-item:nth-child(even) {
    border-right: none;
    border-bottom: none;
  }

  .stat-item:nth-child(even) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .header-utility-inner {
    padding: 6px 16px;
    font-size: 0.75rem;
  }

  .utility-item--address,
  .utility-item--email {
    display: none;
  }

  .site-nav a {
    padding: 10px 8px;
  }

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

  .split-section {
    gap: 40px;
  }
}

/* ==========================================================================
   25. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 110px;
  }

  body {
    padding-top: 110px;
  }

  /* Header mobile */
  .header-utility-inner {
    justify-content: center;
    padding: 6px 12px;
    gap: 12px;
  }

  .header-utility-right,
  .utility-item--address,
  .utility-item--email {
    display: none;
  }

  .utility-badge {
    display: none;
  }

  .header-main-inner {
    padding: 10px 14px;
    gap: 12px;
    position: relative;
  }

  .site-logo {
    height: 46px;
  }

  .site-name-line1 {
    font-size: 0.95rem;
  }

  .site-name-line2 {
    font-size: 0.65rem;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Slide-down mobile menu */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    justify-content: initial;
  }

  .site-nav.is-open {
    max-height: 600px;
  }

  .site-nav ul {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 8px 16px 16px;
    gap: 0;
    overflow-x: visible;
    white-space: normal;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
  }

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

  .site-nav a:hover,
  .site-nav a.active {
    background-color: rgba(200, 168, 75, 0.12);
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
  }

  /* Pre-footer CTA mobile */
  .pre-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pre-footer-actions {
    justify-content: center;
  }

  /* Layouts */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }

  .split-image {
    height: 280px;
  }

  /* Hero */
  .hero {
    min-height: 420px;
  }

  .page-hero {
    min-height: 260px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item:nth-child(5n + 1) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  /* Events */
  .event-card {
    grid-template-columns: 70px 1fr;
  }

  .event-action {
    display: none;
  }

  /* Contact form */
  .contact-form {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Section */
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ==========================================================================
   26. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(5n + 1) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date-badge {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 16px;
  }

  .event-day {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   27. PRINT STYLES
   ========================================================================== */
@media print {
  .site-header,
  .site-nav,
  .hamburger,
  .footer-bottom,
  .btn,
  .lightbox {
    display: none !important;
  }

  body {
    padding-top: 0;
    font-size: 12pt;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 20pt 0;
  }

  .hero::before {
    display: none;
  }

  .hero-title,
  .hero-subtitle {
    color: #000;
    text-shadow: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
