/* ═══════════════════════════════════════════════════════════
   MISSION LODGE NO. 169 — Main Stylesheet
   Palette: Navy #0f1e3d · Gold #c9a84c · Off-white #f8f6f0
   Type: Cormorant Garamond (display) · Inter (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0f1e3d;
  --navy-mid:   #1a2e54;
  --navy-light: #243a68;
  --gold:       #c9a84c;
  --gold-light: #e0c278;
  --gold-pale:  #f3e8c4;
  --cream:      #f8f6f0;
  --white:      #ffffff;
  --text:       #1c1c1c;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --max-w: 1140px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);

  --radius: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-header { margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--gold-pale);
  border-color: rgba(201,168,76,0.55);
}
.btn--outline:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--cream);
}


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 30, 61, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0.9rem var(--pad-x);
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}
.nav__logo-mark { color: var(--gold); }
.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav__logo-text em {
  font-style: normal;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248,246,240,0.8);
  padding: 0.4em 0.75em;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.45em 1.1em !important;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}
.nav__cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 860px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0; top: 60px;
    flex-direction: column;
    background: var(--navy);
    padding: 2rem var(--pad-x);
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; padding: 0.6em 0; }
  .nav__cta { margin-left: 0 !important; }
}


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__geometry {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--pad-x) + 4rem) var(--pad-x) var(--pad-x);
  max-width: 760px;
}

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(248,246,240,0.72);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(248,246,240,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}


/* ═══════════════════════════════════════════════════════════
   THREE PATHS
═══════════════════════════════════════════════════════════ */
.paths {
  background: var(--white);
  padding: 5rem 0;
}

.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(15,30,61,0.1);
  border: 1.5px solid rgba(15,30,61,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2.5rem 2rem;
  background: var(--white);
  transition: background var(--transition);
}
.path-card:hover { background: var(--cream); }

.path-card__icon {
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.path-card h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.path-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.path-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

@media (max-width: 680px) {
  .paths__grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 1rem;
  }
  .path-card { border: 1.5px solid rgba(15,30,61,0.12); border-radius: var(--radius); }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT STRIP
═══════════════════════════════════════════════════════════ */
.about-strip {
  background: var(--cream);
  padding: 6rem 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip__text { display: flex; flex-direction: column; gap: 1.2rem; }
.about-strip__text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.about-strip__text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-strip__symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--navy);
}
.about-strip__svg { width: 100%; max-width: 380px; }

@media (max-width: 720px) {
  .about-strip__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-strip__symbol { display: none; }
}


/* ═══════════════════════════════════════════════════════════
   MEETING BANNER
═══════════════════════════════════════════════════════════ */
.meeting-banner {
  background: var(--navy);
  padding: 2.5rem 0;
}

.meeting-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meeting-banner__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meeting-banner__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.meeting-banner__value {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
}

.meeting-banner__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(201,168,76,0.25);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .meeting-banner__divider { display: none; }
  .meeting-banner__inner { justify-content: flex-start; }
  .meeting-banner__item { min-width: 140px; }
}


/* ═══════════════════════════════════════════════════════════
   WHAT IS FREEMASONRY
═══════════════════════════════════════════════════════════ */
.what-is {
  background: var(--white);
  padding: 6rem 0;
}

.what-is .section-header h2 { color: var(--navy); }

.what-is__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.pillar { display: flex; flex-direction: column; gap: 0.75rem; }

.pillar__glyph {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pillar h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.what-is__cta { text-align: center; }

@media (max-width: 680px) {
  .what-is__grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ═══════════════════════════════════════════════════════════
   NEWS / TRESTLEBOARD PREVIEW
═══════════════════════════════════════════════════════════ */
.news-preview {
  background: var(--cream);
  padding: 6rem 0;
}

.news-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15,30,61,0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.news-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 4px 20px rgba(15,30,61,0.07);
}

.news-card__date {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-card__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.news-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.news-card__link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

@media (max-width: 680px) {
  .news-preview__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(248,246,240,0.75);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--gold);
}
.footer__mark { flex-shrink: 0; margin-top: 3px; }
.footer__brand strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 400;
}
.footer__brand span {
  display: block;
  font-size: 0.75rem;
  color: rgba(248,246,240,0.5);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav a {
  font-size: 0.85rem;
  color: rgba(248,246,240,0.65);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer__address p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer__mailing {
  font-size: 0.75rem !important;
  color: rgba(248,246,240,0.35) !important;
  letter-spacing: 0.02em;
  margin-top: -0.5rem;
}

.footer__address a {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer__address a:hover { opacity: 1; }

.footer__bottom {
  text-align: center;
  padding: 1.25rem var(--pad-x);
  font-size: 0.72rem;
  color: rgba(248,246,240,0.3);
  letter-spacing: 0.05em;
}

@media (max-width: 780px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
