/* ========================================= */
/* --- GLOBAL VARIABLES & RESET --- */
/* ========================================= */
:root {
  --color-navy: #002f6c;
  --color-gold: #c89b3c;
  --color-beige-light: #fdfcf9;
  --color-beige-dark: #f4f0e6;
  --color-red: #5e1319;
  --color-text: #333333;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Arial', 'Helvetica', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background: #fffdfa;
}

/* ========================================= */
/* --- WELCOME PAGE --- */
/* ========================================= */
.home-photo {
  width: 100%;
  overflow: hidden;
  background: #e9e0d2;
}

.home-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.home-intro,
.home-values,
.home-charter {
  width: min(1100px, calc(100% - 80px));
  margin-inline: auto;
}

.home-intro {
  padding: 60px 0 48px;
}

.home-kicker {
  color: #d28b05;
  font: 700 1.55rem/1.2 var(--font-serif);
  margin-bottom: 4px;
}

.home-intro h1 {
  color: #062b5d;
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.home-tagline {
  color: #d28b05;
  font: italic clamp(2rem, 3.4vw, 3.1rem)/1.2 var(--font-serif);
  margin-bottom: 24px;
}

.home-lede {
  max-width: 980px;
  font-size: 1.12rem;
  line-height: 1.8;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.home-button {
  display: inline-flex;
  min-width: 215px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid #062b5d;
  border-radius: 5px;
  color: #062b5d;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-button-gold {
  border-color: #d99108;
  background: linear-gradient(90deg, #cc8100, #eba80f);
  color: white;
}

.home-button:hover,
.home-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(6, 43, 93, .16);
}

.home-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0 58px;
}

.home-value {
  padding: 0 48px;
  text-align: center;
}

.home-value + .home-value {
  border-left: 1px solid #dfa83c;
}

.home-value-icon {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  color: #062b5d;
}

.home-value-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-inner.home-footer {
  grid-template-columns: 1fr 1fr;
}

.home-footer .footer-contact {
  justify-self: end;
  text-align: right;
}

.home-value h2 {
  margin: 4px 0 10px;
  color: #062b5d;
  font-size: 1.65rem;
}

.home-value p {
  font-size: .98rem;
  line-height: 1.75;
}

.home-commander {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 32px;
  align-items: center;
  width: min(1020px, calc(100% - 80px));
  margin: 48px auto 58px;
  padding: 34px 42px;
  border: 1px solid rgba(117, 15, 29, .5);
  border-left: 6px solid var(--color-red);
  background: linear-gradient(110deg, #fbf6ec, #fff);
  box-shadow: 0 10px 26px rgba(13, 42, 79, .06);
}

.home-commander-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  object-fit: cover;
}

.home-commander-kicker {
  color: var(--color-gold);
  font: 700 .82rem var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-commander h2 {
  margin: 5px 0 14px;
  color: var(--color-navy);
  font-size: 1.65rem;
}

.home-commander-copy > p:not(.home-commander-kicker):not(.home-commander-signature) {
  margin-top: 11px;
  line-height: 1.7;
}

.home-commander-signature {
  margin-top: 17px;
  color: var(--color-red);
  font: italic 700 1.15rem var(--font-serif);
}

.home-charter {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid #062b5d;
  padding: 40px 10px 60px;
  text-align: center;
}

.home-charter h2 {
  max-width: 700px;
  font-size: 1.85rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.home-charter p {
  max-width: 760px;
  margin-top: 18px;
  line-height: 1.75;
}

.home-year {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #062b5d;
  background: radial-gradient(ellipse, rgba(210,139,5,.10), transparent 67%);
}

.year-star {
  color: #d28b05;
  font-size: 2.6rem;
  line-height: 1;
}

.home-year strong {
  font: 700 4.2rem/1 var(--font-serif);
}

@media (max-width: 820px) {
  .home-intro,
  .home-values,
  .home-charter {
    width: min(100% - 36px, 680px);
  }

  .home-values,
  .home-charter {
    grid-template-columns: 1fr;
  }

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

  .home-footer .footer-contact {
    justify-self: start;
    text-align: left;
  }

  .home-value {
    padding: 30px 12px;
  }

  .home-value + .home-value {
    border-top: 1px solid #dfa83c;
    border-left: 0;
  }

}

@media (max-width: 600px) {
  .home-commander {
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    margin: 30px auto 42px;
    padding: 27px 22px;
  }

  .home-commander-mark {
    font-size: 3rem;
  }

  .home-commander-copy {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .home-intro {
    padding-top: 38px;
  }

  .home-actions,
  .home-button {
    width: 100%;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-navy);
}

/* ========================================= */
/* --- FIXED HEADER & NAVIGATION --- */
/* ========================================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  position: sticky; 
  top: 0;            
  z-index: 1000;    
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px; 
  margin: 0 auto;    
  padding: 20px 40px; 
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 60px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.legion-title {
  font-size: 0.8rem; /* Slightly increased for better legibility */
  color: var(--color-red);
  letter-spacing: 1.5px; /* Expands the letters slightly for a sharper look */
  font-weight: 800; /* Makes the text bolder and more impactful */
  text-transform: uppercase;
}

.chapter-title {
  font-size: 0.85rem;
  color: var(--color-navy);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: bold;
  padding-bottom: 5px;
}

.main-nav a.active {
  border-bottom: 3px solid var(--color-gold);
}

/* ========================================= */
/* --- UNIFIED 2-COLUMN LAYOUTS --- */
/* ========================================= */
/* This guarantees ALL columns are identical */
.hero-split,
.main-container,
.promise-section,
.bottom-cta,
.legacy-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Forces exact 50/50 split */
  gap: 50px;                      /* Consistent space between columns */
  max-width: 1100px;              /* Keeps the entire width identical */
  margin: 60px auto;              /* Consistent spacing */
  padding: 0 40px;
  align-items: stretch;           /* Keeps heights identical */
}

/* Layout overrides to prevent bad margins on specific sections */
.hero-split {
  background-color: var(--color-beige-light);
  border-bottom: 1px solid #eaeaea;
  margin: 0 auto;
  padding: 40px;
  align-items: center;
}

.bottom-cta {
  margin-bottom: 40px;
  align-items: center;
}

.promise-section {
  margin-top: 0;
}

/* ========================================= */
/* --- HERO IMAGE BEHAVIORS --- */
/* ========================================= */
.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px; 
}

/* Top Hero for Our Story Page */
.story-hero {
  background-color: var(--color-beige-light);
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  display: flex;
  justify-content: center;
}

.story-hero-inner {
  width: 100%;
  max-width: 1100px; 
  margin: 0 auto;
}

.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-divider {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.2;
}

/* ========================================= */
/* --- COMPONENT STYLES --- */
/* ========================================= */
.content-left h2 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.3;
}

.content-left p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.highlight-text {
  color: var(--color-gold);
  font-weight: bold;
}

.highlight-red {
  color: var(--color-red);
  font-weight: bold;
}

.bold-text {
  font-weight: bold;
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-top: 30px;
}

.legacy-image img {
  width: 100%;
  border-radius: 4px;
}

/* Info Card */
.info-card {
  background-color: var(--color-beige-dark);
  padding: 30px;
  border-radius: 4px;
  height: 100%;
}

.info-card h3 {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-gold);
}

.card-divider {
  text-align: center;
  color: var(--color-gold);
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  gap: 15px; 
  margin-bottom: 20px; 
  border-bottom: 1px solid #dfd8c8;
  padding-bottom: 15px; 
}

.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.icon-circle {
  background-color: var(--color-gold);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-text h4 {
  font-family: var(--font-sans);
  color: var(--color-text);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 0.9rem;
}

/* Bottom CTA Specifics */
.cta-image img {
  width: 100%;
  border-radius: 4px;
  height: 100%;
  object-fit: cover;
}

.cta-content h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-box {
  display: flex;
  gap: 15px;
  background-color: var(--color-beige-light);
  border: 1px solid var(--color-gold);
  padding: 20px;
  margin-top: 25px;
  border-radius: 4px;
}

.contact-box .icon-circle {
  background-color: var(--color-red);
}

.email-link {
  color: var(--color-navy);
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-banner {
  text-align: center;
  padding: 20px;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-size: 1.2rem;
}

/* What Guides Us Section */
.guides-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.guides-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.guides-header h2 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
}

.guides-header .line {
  flex-grow: 1;
  height: 1px;
  background-color: #dfd8c8;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.guide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-icon {
  background-color: var(--color-red);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 15px;
  border: 3px solid var(--color-beige-light);
  box-shadow: 0 0 0 2px var(--color-red); 
}

.guide-item h4 {
  color: var(--color-red);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.guide-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Bottom Promise Section Specifics */
.promise-image {
  display: flex;
}

.promise-image img {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  border-radius: 4px;
}

.promise-content {
  background-color: var(--color-beige-dark);
  padding: 60px 40px;
  border-radius: 4px;
}

.promise-content h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.promise-content p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.promise-bold {
  font-weight: bold;
  color: var(--color-red) !important;
  margin-top: 15px;
}

.heart-icon {
  color: var(--color-gold);
}

/* ========================================= */
/* --- FIXED FOOTER --- */
/* ========================================= */
.site-footer {
  width: 100%;
  padding-bottom: 40px; 
}

.footer-inner {
  background-color: var(--color-red);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  max-width: 1100px;  
  margin: 0 auto;     
  padding: 40px;      
  width: 100%;
  border-radius: 4px; 
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-img {
  width: 50px;
}

.footer-post-logo {
  width: 82px;
  flex: 0 0 auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-legion-title, .footer-chapter-title {
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.footer-post-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: bold;
}

.footer-address p, .footer-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact {
  text-align: right;
}

/* Center the Post 644 identity in every footer. */
.footer-inner.home-footer {
  grid-template-columns: 1fr 140px 1fr;
  min-height: 165px;
}

.footer-inner.home-footer .footer-logo {
  grid-column: 2;
  justify-self: center;
}

.footer-inner.home-footer .footer-post-logo {
  width: 124px;
}

.footer-inner.home-footer .footer-contact {
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 600px) {
  .home-commander-photo {
    width: 160px;
    margin-inline: auto;
  }

  .footer-inner.home-footer {
    grid-template-columns: 1fr;
  }

  .footer-inner.home-footer .footer-logo,
  .footer-inner.home-footer .footer-contact {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }
}

.footer-contact a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, .65);
  text-underline-offset: 3px;
}

.footer-contact p + p {
  margin-top: 7px;
}

/* ========================================= */
/* --- MEMBERSHIP REDESIGN --- */
/* ========================================= */
.member2-post-band {
  padding: 10px 20px;
  background: var(--color-gold);
  color: #fff;
  text-align: center;
  font: 700 1.35rem var(--font-serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.member2-post-band span { margin: 0 24px; color: var(--color-navy); letter-spacing: .2em; }

.member2-hero {
  position: relative;
  height: 470px;
  overflow: hidden;
}

.member2-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.member2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.08) 59%);
}

.member2-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(4.8vw, 40px);
  width: min(430px, 43vw);
  transform: translateY(-50%);
}

.member2-hero-copy h1 {
  color: var(--color-navy);
  font: 700 clamp(2.5rem, 4.1vw, 3.65rem)/.95 var(--font-serif);
  text-transform: uppercase;
}

.member2-tagline {
  margin-top: 18px;
  color: var(--color-gold);
  font: italic 1.55rem/1.45 var(--font-serif);
}

.member2-divider,
.member2-card-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
}

.member2-divider { width: 290px; margin: 14px 0 18px; }
.member2-divider span,
.member2-card-divider span { flex: 1; height: 1px; background: var(--color-gold); }
.member2-hero-copy > p:not(.member2-tagline):not(.member2-emphasis) { line-height: 1.65; }

.member2-emphasis {
  margin-top: 15px;
  color: var(--color-navy);
  font: italic 700 1.2rem var(--font-serif);
}

.member2-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 26px 36px;
}

.member2-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr 1.12fr;
  gap: 18px;
}

.member2-card {
  padding: 25px 24px 28px;
  border: 1px solid rgba(214,204,185,.55);
  border-radius: 16px;
  background: linear-gradient(145deg, #fbfaf7, #fff);
  box-shadow: 0 9px 24px rgba(13,42,79,.045);
}

.member2-card h2 {
  color: var(--color-navy);
  font: 700 1.5rem var(--font-serif);
  text-align: center;
  text-transform: uppercase;
}

.member2-card-divider { margin: 10px 0 22px; }

.member2-year {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  color: var(--color-gold);
}

.member2-year strong {
  color: var(--color-navy);
  font: 700 clamp(3.5rem, 5vw, 4.8rem)/1 var(--font-serif);
}

.member2-year span { font-size: 1.25rem; }
.member2-who p { margin-top: 12px; line-height: 1.55; text-align: center; }

.member2-eligibility > p {
  line-height: 1.6;
  text-align: center;
}

.member2-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 8px;
  margin: 18px 0 12px;
}

.member2-branches figure {
  margin: 0;
  text-align: center;
}

.member2-branches img {
  display: block;
  width: 74px;
  height: 74px;
  margin: 0 auto;
  object-fit: contain;
}

.member2-branches figcaption {
  margin-top: 4px;
  color: var(--color-navy);
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.member2-eligibility a {
  display: block;
  color: var(--color-navy);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

.member2-benefits ul { list-style: none; }

.member2-benefits li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  margin: 15px 0;
  line-height: 1.45;
}

.member2-benefits svg,
.member2-cta svg {
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member2-benefits svg {
  width: 44px;
  height: 44px;
  padding-right: 9px;
  border-right: 2px solid var(--color-gold);
}

.member2-cta {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #d9e1ec;
  border-radius: 16px;
  background: linear-gradient(100deg, #eff4fb, #fff);
}

.member2-mission,
.member2-ready {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  padding: 32px 38px;
}

.member2-ready { border-left: 1px solid var(--color-gold); }
.member2-cta svg { width: 64px; height: 64px; }
.member2-ready svg { stroke: var(--color-gold); }

.member2-cta h2 {
  color: var(--color-navy);
  font: 700 1.45rem var(--font-serif);
  text-transform: uppercase;
}

.member2-mission p {
  margin-top: 3px;
  color: var(--color-gold);
  font: 700 1.7rem var(--font-serif);
  text-transform: uppercase;
}

.member2-mission span {
  display: block;
  margin-top: 6px;
  color: var(--color-navy);
  font: italic 1.05rem var(--font-serif);
}

.member2-ready p { margin-top: 8px; line-height: 1.5; }
.member2-ready a { color: var(--color-navy); font-weight: 700; }
.member2-ready strong { display: block; margin-top: 8px; color: var(--color-red); font: italic 1rem var(--font-serif); }

@media (max-width: 900px) {
  .member2-grid { grid-template-columns: 1fr; }
  .member2-card { padding-inline: 40px; }
  .member2-eligibility img { max-width: 460px; }
  .member2-cta { grid-template-columns: 1fr; }
  .member2-ready { border-top: 1px solid var(--color-gold); border-left: 0; }
}

@media (max-width: 600px) {
  .member2-post-band { font-size: 1rem; }
  .member2-post-band span { margin: 0 6px; font-size: .8rem; }
  .member2-hero { height: 585px; }
  .member2-hero > img { object-position: 73% center; }
  .member2-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 60%, rgba(255,255,255,.06) 100%); }
  .member2-hero-copy { top: 38px; left: 24px; width: calc(100% - 48px); transform: none; }
  .member2-hero-copy h1 { font-size: 2.35rem; }
  .member2-main { padding: 20px 12px; }
  .member2-card { padding: 23px 18px; }
  .member2-card h2 { font-size: 1.3rem; }
  .member2-benefits li { grid-template-columns: 44px 1fr; }
  .member2-mission, .member2-ready { grid-template-columns: 1fr; padding: 26px 22px; text-align: center; }
  .member2-cta svg { margin: auto; }
  .member2-mission p { font-size: 1.35rem; }
}

/* ========================================= */
/* --- OUR MOMENTS REDESIGN --- */
/* ========================================= */
.moments2-post-band {
  padding: 10px 20px;
  background: var(--color-red);
  color: #fff;
  text-align: center;
  font: 700 1.35rem var(--font-serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.moments2-post-band span { margin: 0 24px; color: var(--color-gold); letter-spacing: .2em; }

.moments2-hero {
  position: relative;
  height: 455px;
  overflow: hidden;
}

.moments2-hero > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.moments2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 34%, rgba(255,255,255,.06) 58%);
}

.moments2-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(5.5vw, 42px);
  width: min(440px, 44vw);
  transform: translateY(-50%);
}

.moments2-hero-copy h1 {
  color: var(--color-navy);
  font: 700 clamp(2.55rem, 4.4vw, 3.9rem)/.95 var(--font-serif);
  text-transform: uppercase;
}

.moments2-tagline {
  margin-top: 18px;
  color: var(--color-gold);
  font: italic 1.55rem/1.45 var(--font-serif);
}

.moments2-divider,
.moments2-title-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
}

.moments2-divider { width: 300px; margin: 14px 0 17px; }
.moments2-divider span,
.moments2-title-divider span { flex: 1; height: 1px; background: var(--color-gold); }
.moments2-hero-copy > p:not(.moments2-tagline):not(.moments2-emphasis) { line-height: 1.6; }

.moments2-emphasis {
  margin-top: 13px;
  color: var(--color-navy);
  font: italic 700 1.25rem var(--font-serif);
}

.moments2-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 25px 35px;
}

.moments2-gallery {
  padding: 20px;
  border: 1px solid rgba(214,204,185,.55);
  border-radius: 18px;
  background: linear-gradient(145deg, #fbfaf7, #fff);
  box-shadow: 0 10px 28px rgba(13,42,79,.045);
}

.moments2-gallery > h2,
.moments2-closing h2 {
  color: var(--color-navy);
  font-family: var(--font-serif);
  text-align: center;
  text-transform: uppercase;
}

.moments2-gallery > h2 { font-size: 1.8rem; }
.moments2-title-divider { width: 285px; margin: 7px auto 5px; }
.moments2-intro { margin-bottom: 22px; text-align: center; }

.moments2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.moments2-card {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--color-navy);
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(13,42,79,.14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.moments2-card:hover,
.moments2-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 9px 20px rgba(13,42,79,.22);
}

.moments2-card img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.moments2-card > span { display: block; min-height: 82px; padding: 12px 15px; }
.moments2-card strong { display: block; color: #fff; font: 700 1rem var(--font-serif); text-transform: uppercase; }
.moments2-card strong::first-letter { color: var(--color-gold); }
.moments2-card small { display: block; margin-top: 5px; font-size: .78rem; line-height: 1.45; }

.moments2-closing {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 40px;
  border-radius: 14px;
  background: #fbf7ef;
}

.moments2-heart {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: auto;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 3rem;
}

.moments2-closing h2 { font-size: 1.45rem; }
.moments2-closing p { margin-top: 7px; color: var(--color-gold); font: italic 1.2rem var(--font-serif); text-align: center; }
.moments2-closing strong { display: block; margin-top: 8px; color: var(--color-navy); font: italic 1.2rem var(--font-serif); text-align: center; }

.moments2-lightbox[hidden] { display: none; }
.moments2-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(5,18,38,.92);
}

.moments2-lightbox figure { max-width: 1000px; margin: 0; text-align: center; }
.moments2-lightbox img { display: block; max-width: 100%; max-height: 78vh; margin: auto; border-radius: 8px; }
.moments2-lightbox figcaption { margin-top: 14px; color: #fff; font: 1rem var(--font-serif); }
.moments2-close { position: absolute; top: 18px; right: 25px; border: 0; background: transparent; color: #fff; font-size: 2.7rem; cursor: pointer; }

@media (max-width: 850px) {
  .moments2-grid { grid-template-columns: repeat(2, 1fr); }
  .moments2-hero-copy { width: 49%; }
}

@media (max-width: 600px) {
  .moments2-post-band { font-size: 1rem; }
  .moments2-post-band span { margin: 0 6px; font-size: .8rem; }
  .moments2-hero { height: 570px; }
  .moments2-hero > img { object-fit: cover; object-position: 70% top; }
  .moments2-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 59%, rgba(255,255,255,.08) 100%); }
  .moments2-hero-copy { top: 38px; left: 24px; width: calc(100% - 48px); transform: none; }
  .moments2-hero-copy h1 { font-size: 2.45rem; }
  .moments2-main { padding: 20px 12px; }
  .moments2-gallery { padding: 14px; }
  .moments2-grid { grid-template-columns: 1fr; }
  .moments2-card img { height: 235px; }
  .moments2-closing { grid-template-columns: 1fr; padding: 24px 18px; }
  .moments2-heart { width: 82px; height: 82px; }
  .moments2-lightbox { padding: 18px; }
}

/* ========================================= */
/* --- VISIT US REDESIGN --- */
/* ========================================= */
.visit2-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.visit2-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visit2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 31%, rgba(255,255,255,.08) 58%);
}

.visit2-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(7vw, 42px);
  width: min(390px, 39vw);
  transform: translateY(-50%);
}

.visit2-hero-copy h1 {
  color: var(--color-navy);
  font: 700 clamp(2.65rem, 4.8vw, 4.35rem)/.95 var(--font-serif);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.visit2-tagline,
.visit2-gold,
.visit2-blue,
.visit2-invite {
  font-family: var(--font-serif);
  font-style: italic;
}

.visit2-tagline {
  margin: 16px 0 8px;
  color: var(--color-gold);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.visit2-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  margin: 12px 0 18px;
  color: var(--color-gold);
  font-size: 1.25rem;
}

.visit2-divider span {
  flex: 1;
  height: 1px;
  background: var(--color-gold);
}

.visit2-hero-copy > p:not(.visit2-tagline):not(.visit2-invite) {
  font-size: 1.05rem;
  line-height: 1.65;
}

.visit2-invite,
.visit2-blue {
  color: var(--color-navy);
}

.visit2-invite {
  margin-top: 16px;
  font-size: 1.35rem;
  font-weight: 700;
}

.visit2-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 34px 28px 30px;
}

.visit2-welcome,
.visit2-detail,
.visit2-closing {
  border: 1px solid rgba(214, 204, 185, .45);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(13, 42, 79, .045);
}

.visit2-welcome {
  display: grid;
  grid-template-columns: 235px 1fr;
  align-items: center;
  gap: 30px;
  padding: 25px 52px 25px 24px;
  background: linear-gradient(105deg, #f8f7f3, #fff);
}

.visit2-door-icon {
  display: grid;
  place-items: center;
  width: 155px;
  height: 155px;
  margin: auto;
  border: 2px solid var(--color-navy);
  border-radius: 50%;
}

.visit2-door-icon svg,
.visit2-detail-icon svg {
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit2-door-icon svg { width: 90px; }

.visit2-welcome h2,
.visit2-detail h2,
.visit2-closing h2 {
  color: var(--color-navy);
  font-family: var(--font-serif);
  text-transform: uppercase;
}

.visit2-welcome h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-align: center;
}

.visit2-welcome p { margin-top: 10px; }

.visit2-gold {
  color: var(--color-gold);
  font-size: 1.3rem;
  text-align: center;
}

.visit2-blue {
  font-size: 1.15rem;
  font-weight: 700;
}

.visit2-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 24px 0;
}

.visit2-detail {
  min-height: 380px;
  padding: 20px 30px 28px;
  text-align: center;
  background: linear-gradient(145deg, #f1f5fb, #fff);
}

.visit2-detail:nth-child(2) { background: linear-gradient(145deg, #fbf8f1, #fff); }

.visit2-detail-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 10px;
  border: 1.5px solid var(--color-navy);
  border-radius: 50%;
}

.visit2-detail-icon svg { width: 50px; height: 50px; }
.visit2-detail h2 { font-size: 1.45rem; }

.visit2-small-divider {
  margin: 7px 0 18px;
  color: var(--color-gold);
  font-size: 1.15rem;
}

.visit2-small-divider::before,
.visit2-small-divider::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 1px;
  margin: 0 8px 5px;
  background: var(--color-gold);
}

.visit2-detail p { margin-top: 14px; line-height: 1.6; }

.visit2-expect ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  list-style: none;
}

.visit2-expect li { margin: 8px 0; }
.visit2-expect li::before { content: "★"; margin-right: 10px; color: var(--color-gold); }

.visit2-closing {
  display: grid;
  grid-template-columns: 160px 1fr 360px;
  min-height: 170px;
  overflow: hidden;
  align-items: center;
  background: #faf8f3;
}

.visit2-heart {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: auto;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 3.1rem;
}

.visit2-closing > div:nth-child(2) { padding: 20px 15px; text-align: center; }
.visit2-closing h2 { font-size: 1.75rem; }
.visit2-closing .visit2-gold { margin-top: 6px; }
.visit2-closing .visit2-blue { margin-top: 12px; }

.visit2-closing-door {
  display: grid;
  place-items: center;
  align-self: stretch;
  background: linear-gradient(135deg, #f5efe3, #fffaf1);
}

.visit2-closing-door svg {
  width: 190px;
  max-width: 80%;
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit2-closing-door .visit2-door-panel {
  fill: var(--color-navy);
}

.visit2-closing-door .visit2-door-glow {
  fill: rgba(205, 141, 20, .22);
  stroke: var(--color-gold);
}

.visit2-closing-door .visit2-door-heart {
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.visit2-closing-door circle {
  fill: var(--color-gold);
  stroke: var(--color-gold);
}

.footer-inner.home-footer {
  grid-template-columns: 1fr auto;
}

@media (max-width: 860px) {
  .visit2-hero { height: 520px; }
  .visit2-hero > img { object-position: 63% center; }
  .visit2-hero::after { background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.84) 55%, rgba(255,255,255,.18) 100%); }
  .visit2-hero-copy { width: 54%; }
  .visit2-welcome { grid-template-columns: 150px 1fr; padding: 25px; }
  .visit2-door-icon { width: 125px; height: 125px; }
  .visit2-details { grid-template-columns: 1fr; }
  .visit2-detail { min-height: 0; }
  .visit2-closing { grid-template-columns: 130px 1fr; }
  .visit2-closing-door { display: none; }
}

@media (max-width: 600px) {
  .visit2-hero { height: 610px; }
  .visit2-hero > img { object-position: 73% center; }
  .visit2-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.91) 56%, rgba(255,255,255,.15) 100%); }
  .visit2-hero-copy { top: 42px; left: 24px; width: calc(100% - 48px); transform: none; }
  .visit2-main { padding: 22px 15px; }
  .visit2-welcome { grid-template-columns: 1fr; }
  .visit2-door-icon { width: 110px; height: 110px; }
  .visit2-welcome > div:last-child { text-align: center; }
  .visit2-detail { padding-inline: 18px; }
  .visit2-small-divider::before, .visit2-small-divider::after { width: 48px; }
  .visit2-closing { grid-template-columns: 1fr; padding: 25px 18px; }
  .visit2-heart { width: 88px; height: 88px; }
  .footer-inner.home-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner.home-footer .footer-contact { text-align: left; }
}

/* ========================================= */
/* --- WHAT'S HAPPENING REDESIGN --- */
/* ========================================= */
.happening-post-band {
  padding: 10px 20px;
  background: var(--color-red);
  color: #fff;
  text-align: center;
  font: 700 1.35rem var(--font-serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.happening-post-band span {
  margin: 0 24px;
  color: var(--color-gold);
  letter-spacing: .2em;
}

.happening-hero {
  position: relative;
  height: 455px;
  overflow: hidden;
}

.happening-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.happening-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 29%, rgba(255,255,255,.12) 55%);
}

.happening-hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(5.5vw, 42px);
  width: min(390px, 40vw);
  transform: translateY(-50%);
}

.happening-hero-copy h1 {
  color: var(--color-red);
  font: 700 clamp(2.75rem, 4.6vw, 4.15rem)/.92 var(--font-serif);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.happening-tagline {
  margin-top: 18px;
  color: var(--color-gold);
  font: italic 1.6rem/1.4 var(--font-serif);
}

.happening-divider,
.happening-title-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
}

.happening-divider {
  width: 270px;
  margin: 15px 0 17px;
}

.happening-divider span,
.happening-title-divider span {
  flex: 1;
  height: 1px;
  background: var(--color-gold);
}

.happening-hero-copy > p:last-child {
  font-size: 1.02rem;
  line-height: 1.6;
}

.happening-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 26px 30px;
}

.happening-board {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 22px;
}

.happening-calendar-card,
.happening-upcoming,
.happening-announcements {
  border: 1px solid rgba(214, 204, 185, .55);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(13, 42, 79, .045);
  background: linear-gradient(145deg, #fbfaf7, #fff);
}

.happening-calendar-card,
.happening-upcoming {
  padding: 22px 18px 24px;
}

.happening-calendar-card h2,
.happening-upcoming > h2,
.happening-announcements h2 {
  color: var(--color-red);
  font-family: var(--font-serif);
  text-align: center;
  text-transform: uppercase;
}

.happening-calendar-card h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.45rem;
}

.happening-calendar-card h2 span {
  flex: 1;
  height: 1px;
  background: var(--color-gold);
}

.happening-calendar-nav {
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  align-items: center;
  margin: 15px 0 10px;
}

.happening-calendar-nav h3 {
  color: var(--color-red);
  font: 700 1.65rem var(--font-serif);
  text-align: center;
  text-transform: uppercase;
}

.happening-calendar-nav button {
  border: 0;
  background: transparent;
  color: var(--color-red);
  font-size: 2.3rem;
  line-height: 1;
  cursor: pointer;
}

.happening-calendar-nav button:hover { color: var(--color-gold); }

.happening-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.happening-weekdays {
  background: var(--color-red);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.happening-weekdays div { padding: 7px 2px; }

.happening-day {
  display: flex;
  min-height: 73px;
  padding: 8px 5px;
  border-right: 1px solid #e8e1d6;
  border-bottom: 1px solid #e8e1d6;
  flex-direction: column;
  align-items: center;
  background: #fff;
  font-size: .9rem;
}

.happening-day:nth-child(7n + 1) { border-left: 1px solid #e8e1d6; }
.happening-day.is-muted { color: #aaa; background: #fafafa; }
.happening-day.has-event { background: #fff1d9; color: var(--color-red); }
.happening-day.has-event strong { color: var(--color-gold); }
.happening-day small { margin-top: 2px; font-size: .62rem; font-weight: 700; text-align: center; }
.happening-day em { font-size: .6rem; color: #111; font-style: normal; }

.happening-upcoming > h2 { font-size: 1.55rem; }
.happening-title-divider { margin: 10px 14px 6px; }

.happening-event {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  gap: 15px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(205, 141, 20, .55);
}

.happening-event time {
  display: flex;
  height: 66px;
  border: 1px solid var(--color-red);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  font-family: var(--font-serif);
}

.happening-event time span { font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.happening-event time strong { font-size: 1.7rem; line-height: 1; }
.happening-event time.happening-date-range span { font-size: .72rem; }
.happening-event time.happening-date-range b { color: var(--color-gold); line-height: .7; }
.happening-event h3 { font-size: .92rem; }
.happening-event p { margin-top: 3px; font-size: .82rem; }

.happening-event svg {
  width: 47px;
  fill: none;
  stroke: var(--color-red);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.happening-holiday-note {
  margin-top: 14px;
  color: var(--color-red);
  font: italic .95rem/1.45 var(--font-serif);
  text-align: center;
}

.happening-announcements {
  display: grid;
  grid-template-columns: 120px 1.8fr 100px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 34px;
}

.happening-announcements h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gold);
  text-align: left;
  font-size: 1.3rem;
}

.happening-megaphone,
.happening-calendar-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
}

.happening-megaphone { background: var(--color-red); }
.happening-calendar-icon { background: var(--color-gold); }

.happening-megaphone svg,
.happening-calendar-icon svg {
  width: 58px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.happening-announcements ul { margin-top: 10px; list-style: none; }
.happening-announcements li { position: relative; margin: 9px 0; padding-left: 22px; }
.happening-announcements li::before { content: "★"; position: absolute; left: 0; color: var(--color-gold); }
.happening-announcements li span { display: block; font-size: .85rem; }

.happening-callout {
  padding-left: 24px;
  border-left: 1px solid var(--color-gold);
  color: var(--color-red);
  font: italic 1rem/1.55 var(--font-serif);
}

@media (max-width: 900px) {
  .happening-hero-copy { width: 48%; }
  .happening-board { grid-template-columns: 1fr; }
  .happening-announcements { grid-template-columns: 100px 1fr; }
  .happening-calendar-icon { display: none; }
  .happening-callout { grid-column: 2; }
}

@media (max-width: 600px) {
  .happening-post-band { font-size: 1rem; }
  .happening-post-band span { margin: 0 6px; font-size: .8rem; }
  .happening-hero { height: 575px; }
  .happening-hero > img { object-position: 68% center; }
  .happening-hero::after { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 58%, rgba(255,255,255,.1) 100%); }
  .happening-hero-copy { top: 38px; left: 24px; width: calc(100% - 48px); transform: none; }
  .happening-hero-copy h1 { font-size: 2.8rem; }
  .happening-main { padding: 22px 12px; }
  .happening-calendar-card, .happening-upcoming { padding-inline: 10px; }
  .happening-calendar-card h2 { font-size: 1.15rem; }
  .happening-calendar-nav h3 { font-size: 1.25rem; }
  .happening-day { min-height: 58px; padding: 4px 2px; font-size: .78rem; }
  .happening-day small { font-size: .5rem; }
  .happening-day em { display: none; }
  .happening-event { grid-template-columns: 55px 1fr 38px; gap: 10px; }
  .happening-event svg { width: 36px; }
  .happening-announcements { grid-template-columns: 1fr; padding: 24px; text-align: center; }
  .happening-megaphone { margin: auto; }
  .happening-announcements h2 { text-align: center; }
  .happening-announcements li { text-align: left; }
  .happening-callout { grid-column: 1; padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--color-gold); }
}

/* ========================================= */
/* --- OUR STORY REDESIGN --- */
/* ========================================= */
.story-post-band {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #062b5d;
  color: white;
  font: 700 1.25rem/1 var(--font-serif);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-post-band span {
  color: #d28b05;
  letter-spacing: .3em;
}

.story2-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.story2-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story2-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 80px;
}

.story2-hero-copy h1 {
  color: #062b5d;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.story2-hero-copy p {
  margin: 22px 0 0 78px;
  color: #c47700;
  font: italic clamp(1.55rem, 2.7vw, 2.25rem)/1.45 var(--font-serif);
}

.story2-card {
  display: grid;
  width: min(1100px, calc(100% - 80px));
  margin: 42px auto;
  padding: 28px;
  gap: 34px;
  align-items: center;
  background: rgba(255,255,255,.8);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(6,43,93,.08);
}

.story2-history {
  grid-template-columns: .82fr 1.35fr;
}

.story2-today {
  grid-template-columns: 1fr 1.15fr;
}

.story2-copy h2 {
  margin-bottom: 14px;
  color: #062b5d;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.story2-copy p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.story2-archive-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.story2-archive-grid figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story2-archive-grid img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 8px;
  filter: sepia(.12);
}

.story2-archive-grid figcaption {
  padding-top: 8px;
  color: #5b5b5b;
  font-size: .74rem;
  line-height: 1.4;
}

.story2-photo-note {
  grid-column: 1 / -1;
  color: #555;
  font-size: .78rem;
  font-style: italic;
  line-height: 1.5;
}

.story2-today > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 9px;
}

.story2-closing {
  padding: 55px max(24px, calc((100% - 880px) / 2)) 65px;
  text-align: center;
  background: linear-gradient(135deg, #f7f9fc, #e8eef7);
  color: #062b5d;
}

.story2-closing blockquote {
  position: relative;
  font: italic clamp(1.4rem, 2.5vw, 2rem)/1.5 var(--font-serif);
}

.story2-closing blockquote::before,
.story2-closing blockquote::after {
  color: #c47700;
  font-size: 3rem;
  line-height: 0;
}

.story2-closing blockquote::before { content: "“"; margin-right: 12px; }
.story2-closing blockquote::after { content: "”"; margin-left: 12px; }

.story2-star {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px auto 14px;
  color: #d28b05;
}

.story2-star span {
  flex: 1;
  height: 1px;
  background: #d28b05;
}

.story2-closing > p {
  font: 700 clamp(1.25rem, 2.2vw, 1.65rem)/1.35 var(--font-serif);
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .story2-hero {
    min-height: 390px;
  }

  .story2-hero-copy,
  .story2-card {
    width: min(100% - 36px, 680px);
  }

  .story2-hero-copy {
    padding-top: 54px;
  }

  .story2-hero-copy p {
    margin-left: 0;
  }

  .story2-history,
  .story2-today {
    grid-template-columns: 1fr;
  }

  .story2-today > img {
    height: auto;
  }

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

  .home-footer .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .story-post-band {
    gap: 10px;
    font-size: .9rem;
  }

  .story-post-band span {
    letter-spacing: 0;
  }

  .story2-hero {
    min-height: 440px;
  }

  .story2-hero > img {
    object-position: 60% center;
  }

  .story2-archive-grid {
    grid-template-columns: 1fr;
  }

  .story2-archive-grid img {
    height: auto;
  }
}


/* ========================================= */
/* --- VISIT US FULL-WIDTH HERO STYLES --- */
/* ========================================= */
.visit-us-hero {
  background-color: var(--color-beige-light);
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  display: block; /* Removes the 2-column grid layout specifically for this hero */
}

.visit-us-hero .hero-image-full {
  width: 100%;
  display: flex;
  justify-content: center;
}

.visit-us-hero .hero-image-full img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* ========================================= */
/* --- INTERACTIVE GRID CALENDAR OBJECT --- */
/* ========================================= */
.calendar-card {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 25px;
  height: 100%;
}

.calendar-header-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-navy);
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 12px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dfd8c8;
  border-bottom: 1px solid #dfd8c8;
  padding: 8px 15px;
  margin-bottom: 15px;
}

.calendar-nav h3 {
  font-size: 1.1rem;
  color: var(--color-red);
  letter-spacing: 1px;
}

.cal-arrow {
  color: var(--color-red);
  font-weight: bold;
  cursor: pointer;
  padding: 0 8px;
  user-select: none;
  font-size: 1.1rem;
}

.cal-arrow:hover {
  opacity: 0.7;
}

/* Calendar Grid Container */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #e6dfcf; 
  gap: 1px;
  border: 1px solid #dfd8c8;
  border-radius: 4px;
  overflow: hidden;
}

/* Weekday Labels */
.cal-weekday {
  background-color: var(--color-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

/* Individual Day Cells */
.cal-day {
  background-color: #ffffff;
  min-height: 60px;
  padding: 5px;
  font-size: 0.8rem;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.cal-day span {
  font-weight: 600;
}

/* Muted past/future days */
.cal-day.muted {
  background-color: #f8f6f0;
  color: #b0a898;
}

.cal-day.muted span {
  font-weight: normal;
}

/* Highlighted Event Cell */
.cal-day.active-event {
  background-color: #faeccd;
  border: 1px inset var(--color-gold);
}

.cal-day.active-event .day-num {
  color: var(--color-red);
  font-weight: bold;
}

/* Event micro-badges inside cells */
.cal-event-tag {
  font-size: 0.55rem;
  background-color: var(--color-red);
  color: #ffffff;
  padding: 1px 3px;
  border-radius: 2px;
  margin-top: 3px;
  line-height: 1.1;
  font-weight: normal !important;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cal-time {
  font-size: 0.5rem;
  color: var(--color-navy);
  margin-top: 2px;
  font-weight: bold !important;
}

/* ========================================= */
/* --- ANNOUNCEMENTS / MONTHLY HIGHLIGHTS --- */
/* ========================================= */
.announcements-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px 40px;
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
}

.announcements-header-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-navy);
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 25px;
  border-bottom: 1px solid #dfd8c8;
  padding-bottom: 15px;
}

.announcements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.announcement-badge-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #dfd8c8;
  height: 100%;
}

.announcement-badge-row .icon-circle {
  flex-shrink: 0;
}

.red-bg {
  background-color: var(--color-red) !important;
  color: white;
}

.gold-bg {
  background-color: var(--color-gold) !important;
  color: white;
}

.announcement-list p {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--color-text);
  line-height: 1.4;
}

.announcement-list p:last-child {
  margin-bottom: 0;
}

/* ========================================= */
/* --- OUR MOMENTS PAGE STYLES --- */
/* ========================================= */

.moments-grid-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.moment-card {
  background-color: var(--color-navy);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.moment-img-container {
  width: 100%;
  height: 200px;
  background-color: var(--color-beige-dark);
  overflow: hidden;
}

.moment-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moment-img-container img:hover {
  transform: scale(1.03);
}

.moment-card-content {
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.moment-card-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  font-weight: bold;
  margin-bottom: 8px;
}

.moment-card-content p {
  font-size: 0.85rem;
  color: #f0f0f0;
  line-height: 1.4;
}

/* Responsive safeguard for smaller screens */
@media (max-width: 900px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* --- OUR MOMENTS & LIGHTBOX STYLES --- */
/* ========================================= */

.moments-grid-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.moment-card {
  background-color: var(--color-navy);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.moment-img-container {
  width: 100%;
  height: 200px;
  background-color: var(--color-beige-dark);
  overflow: hidden;
  position: relative;
}

.moment-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.moment-card:hover .moment-img-container img {
  transform: scale(1.03);
}

/* Waiting / Missing Image Placeholder Box */
.photo-waiting-message {
  width: 100%;
  height: 100%;
  background-color: var(--color-beige-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777777;
  gap: 8px;
}

.photo-waiting-message span {
  font-size: 1.8rem;
}

.photo-waiting-message p {
  font-size: 0.8rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-navy);
  margin: 0;
}

.moment-card-content {
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
}

.moment-card-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  font-weight: bold;
  margin-bottom: 8px;
}

.moment-card-content p {
  font-size: 0.85rem;
  color: #f0f0f0;
  line-height: 1.4;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  background-color: var(--color-beige-light);
  padding: 20px;
  border-radius: 6px;
  max-width: 800px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-content img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-content p {
  margin-top: 15px;
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2010;
}

.lightbox-close:hover {
  color: var(--color-gold);
}

@media (max-width: 900px) {
  .moments-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* --- MEMBERSHIP PAGE STYLES --- */
/* ========================================= */

.membership-columns-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 40px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.membership-card {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.membership-card h3 {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}

.membership-icon-circle {
  background-color: var(--color-navy);
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 15px auto 20px;
  font-size: 1.5rem;
}

/* Eligibility branch badges grid */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.branch-tag {
  background-color: #ffffff;
  border: 1px solid #dfd8c8;
  color: var(--color-navy);
  font-size: 0.65rem;
  font-weight: bold;
  text-align: center;
  padding: 6px 4px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Benefits list */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.4;
}

.benefit-bullet {
  color: var(--color-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Membership Bottom CTA Banner */
.membership-cta-banner {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 40px;
}

.cta-banner-grid {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.cta-banner-side {
  display: flex;
  gap: 15px;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #dfd8c8;
  height: 100%;
}

@media (max-width: 900px) {
  .membership-grid,
  .cta-banner-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* --- LET'S CONNECT PAGE STYLES --- */
/* ========================================= */

/* Commander Letter Section */
.commander-letter-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 40px;
}

.commander-card {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.commander-img-col {
  width: 100%;
  height: 380px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #dfd8c8;
}

.commander-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commander-text-col p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.commander-header-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-navy);
  font-style: italic;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.commander-signature {
  margin-top: 10px;
}

.commander-signature .sig-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-navy);
  font-weight: bold;
  font-style: italic;
  margin-bottom: 2px;
}

.commander-signature .sig-title {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.2;
}

/* Ways to Connect 5-Column Grid */
.connect-ways-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 40px;
}

.connect-methods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.connect-method-card {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.connect-icon-circle {
  background-color: var(--color-navy);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.connect-method-card h4 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.connect-highlight {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.connect-desc {
  font-size: 0.75rem;
  color: var(--color-text);
  line-height: 1.3;
}

/* Contact Form Section */
.connect-form-section {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.connect-form-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 30px;
  align-items: stretch;
}

.connect-promo-card,
.connect-form-card {
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  padding: 30px;
  height: 100%;
}

.connect-form-card h3,
.connect-promo-card h3 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dfd8c8;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

@media (max-width: 1000px) {
  .commander-card {
    grid-template-columns: 1fr;
  }
  .connect-methods-grid {
    grid-template-columns: 1fr;
  }
  .connect-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* --- GLOBAL VARIABLES & RESET --- */
/* ========================================= */
:root {
  --color-navy: #002f6c;
  --color-gold: #c89b3c;
  --color-beige-light: #fdfcf9;
  --color-beige-dark: #f4f0e6;
  --color-red: #5e1319;
  --color-text: #333333;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Arial', 'Helvetica', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-beige-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--color-navy);
}

/* ========================================= */
/* --- FIXED HEADER & NAVIGATION --- */
/* ========================================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  position: sticky; 
  top: 0;            
  z-index: 1000;    
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px; 
  margin: 0 auto;    
  padding: 20px 40px; 
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 70spx;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.legion-title {
  font-size: 0.75rem;
  color: var(--color-red);
  letter-spacing: 1px;
}

.chapter-title {
  font-size: 0.85rem;
  color: var(--color-navy);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: bold;
  padding-bottom: 5px;
}

.main-nav a.active {
  border-bottom: 3px solid var(--color-gold);
}

/* ========================================= */
/* --- UNIFIED 2-COLUMN LAYOUTS --- */
/* ========================================= */
.hero-split,
.main-container,
.promise-section,
.bottom-cta,
.legacy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
  align-items: stretch;
}

.hero-split {
  background-color: var(--color-beige-light);
  border-bottom: 1px solid #eaeaea;
  margin: 0 auto;
  padding: 40px;
  align-items: center;
}

.bottom-cta {
  margin-bottom: 40px;
  align-items: center;
}

.promise-section {
  margin-top: 0;
}

/* ========================================= */
/* --- HERO IMAGE & PLACEHOLDER STYLES --- */
/* ========================================= */
.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 250px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px; 
}

/* Waiting / Missing Image Placeholder Box */
.photo-waiting-message {
  width: 100%;
  min-height: 220px;
  background-color: var(--color-beige-dark);
  border: 1px dashed #dfd8c8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777777;
  gap: 8px;
  border-radius: 4px;
}

.photo-waiting-message span {
  font-size: 2rem;
}

.photo-waiting-message p {
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-navy);
  margin: 0;
}

/* Top Hero for Our Story Page */
.story-hero {
  background-color: var(--color-beige-light);
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  display: flex;
  justify-content: center;
}

.story-hero-inner {
  width: 100%;
  max-width: 1100px; 
  margin: 0 auto;
}

.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-divider {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-gold);
  line-height: 1.2;
}

/* ========================================= */
/* --- COMPONENT STYLES --- */
/* ========================================= */
.content-left h2 {
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.3;
}

.content-left p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.highlight-text {
  color: var(--color-gold);
  font-weight: bold;
}

.highlight-red {
  color: var(--color-red);
  font-weight: bold;
}

.bold-text {
  font-weight: bold;
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-top: 30px;
}

.legacy-image {
  min-height: 250px;
}

.legacy-image img {
  width: 100%;
  border-radius: 4px;
}

/* Info Card */
.info-card {
  background-color: var(--color-beige-dark);
  padding: 30px;
  border-radius: 6px;
  height: 100%;
  border: 1px solid #dfd8c8;
}

.info-card h3 {
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-gold);
}

.card-divider {
  text-align: center;
  color: var(--color-gold);
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  gap: 15px; 
  margin-bottom: 20px; 
  border-bottom: 1px solid #dfd8c8;
  padding-bottom: 15px; 
}

.info-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.icon-circle {
  background-color: var(--color-gold);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-text h4 {
  font-family: var(--font-sans);
  color: var(--color-text);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 0.9rem;
}

/* Bottom CTA Specifics */
.cta-image {
  min-height: 250px;
}

.cta-image img {
  width: 100%;
  border-radius: 4px;
  height: 100%;
  object-fit: cover;
}

.cta-content h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-box {
  display: flex;
  gap: 15px;
  background-color: var(--color-beige-light);
  border: 1px solid var(--color-gold);
  padding: 20px;
  margin-top: 25px;
  border-radius: 4px;
}

.contact-box .icon-circle {
  background-color: var(--color-red);
}

.email-link {
  color: var(--color-navy);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ========================================= */
/* --- STANDARDIZED CTA BANNER --- */
/* ========================================= */
.cta-banner {
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 30px 40px;
  background-color: var(--color-beige-dark);
  border: 1px solid #dfd8c8;
  border-radius: 6px;
  text-align: center;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--color-navy);
  font-size: 1.2rem;
}

.quote-footer-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--color-navy);
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}

.quote-footer-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--color-navy);
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}

/* Unified Buttons with Hover Feedback */
.view-all-btn {
  display: inline-block;
  background-color: var(--color-red);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.view-all-btn:hover {
  background-color: #430d11;
  transform: translateY(-1px);
}

/* What Guides Us Section */
.guides-section {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.guides-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.guides-header h2 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
}

.guides-header .line {
  flex-grow: 1;
  height: 1px;
  background-color: #dfd8c8;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.guide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-icon {
  background-color: var(--color-red);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 15px;
  border: 3px solid var(--color-beige-light);
  box-shadow: 0 0 0 2px var(--color-red); 
}

.guide-item h4 {
  color: var(--color-red);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.guide-item p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Bottom Promise Section Specifics */
.promise-image {
  display: flex;
  min-height: 250px;
}

.promise-image img {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
  border-radius: 4px;
}

.promise-content {
  background-color: var(--color-beige-dark);
  padding: 60px 40px;
  border-radius: 6px;
  border: 1px solid #dfd8c8;
}

.promise-content h3 {
  font-size: 2rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.promise-content p {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.promise-bold {
  font-weight: bold;
  color: var(--color-red) !important;
  margin-top: 15px;
}

.heart-icon {
  color: var(--color-gold);
}

/* ========================================= */
/* --- FIXED FOOTER --- */
/* ========================================= */
.site-footer {
  width: 100%;
  padding-bottom: 40px; 
}

.footer-inner {
  background-color: var(--color-red);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  max-width: 1100px;  
  margin: 0 auto;     
  padding: 40px;      
  width: 100%;
  border-radius: 6px; 
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-img {
  width: 50px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-legion-title, .footer-chapter-title {
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.footer-post-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: bold;
}

.footer-address p, .footer-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact {
  text-align: right;
}
