/* =========================================================================
   Mississauga Crescent Commerce Lions Club — shared styles
   Type:  Spectral (display serif) + Public Sans (body/UI)
   Color: deep Lions navy + heritage gold on a warm off-white
   ========================================================================= */

:root {
  /* palette — exact brand tokens */
  --navy:        #0A2463;   /* primary */
  --navy-deep:   #061843;   /* primary-dark */
  --navy-700:    #1E3A8A;   /* primary-light */
  --blue:        #1E3A8A;
  --gold:        #D4A93A;   /* accent */
  --gold-soft:   #E6C260;   /* accent-light */
  --gold-deep:   #B8902B;   /* accent-dark */

  --ink:         #0A1628;
  --body:        #41506a;
  --muted:       #6f7d93;
  --line:        #e8e6df;
  --line-strong: #d6d2c8;

  --paper:       #FAF8F1;   /* cream */
  --paper-2:     #FAF8F1;   /* alt section = cream */
  --card:        #ffffff;

  /* type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* metrics */
  --maxw: 1180px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(10,42,78,.06), 0 2px 8px rgba(10,42,78,.05);
  --shadow-md: 0 6px 24px rgba(10,42,78,.10), 0 2px 6px rgba(10,42,78,.06);
  --shadow-lg: 0 20px 60px rgba(10,42,78,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- eyebrow label (used above every section heading) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 8px 22px rgba(224,163,34,.32); }
.btn-gold:hover { background: #ecb43a; }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,249,244,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark {
  width: 58px; height: 58px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, var(--blue), var(--navy));
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.brand .mark.photo, .f-brand .mark.photo { background: #fff; padding: 2px; }
.brand .mark img, .f-brand .mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.brand .b-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .b-name { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: 18px; letter-spacing: -.01em; }
.brand .b-sub  { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  padding: 9px 14px;
  border-radius: var(--radius);
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--navy); background: rgba(31,93,163,.07); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; padding: 11px 20px; font-size: 14px; }
.nav-links a.nav-cta { color: #fff; }
.nav-links a.nav-cta:hover { color: #fff; background: var(--navy-700); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 44px; height: 42px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; font-size: 16px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
}

/* =========================================================================
   HERO (page banners)
   ========================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(31,93,163,.55), transparent 60%),
    radial-gradient(900px 500px at 8% 120%, rgba(224,163,34,.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-home { padding: 116px 0 124px; text-align: center; }
.hero-page { padding: 92px 0 84px; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(244,213,138,.4);
  background: rgba(244,213,138,.08);
  padding: 7px 15px; border-radius: 100px;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero-home h1 { color: #fff; font-size: clamp(40px, 5.6vw, 70px); max-width: none; margin: 0 auto; }
.hero-home h1 .line { display: block; }
.hero-home h1 .gold { color: var(--gold); display: block; }
.hero-home p { color: rgba(255,255,255,.82); font-size: 19px; max-width: 56ch; margin: 24px auto 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-home .hero-badge { margin-left: auto; margin-right: auto; }

/* gold rule under page-hero / section headings */
.gold-rule { width: 64px; height: 3px; background: var(--gold); border: none; border-radius: 3px; margin: 26px auto 0; }
.section-head.center .gold-rule { margin-top: 22px; }

.hero-page h1 { color: #fff; font-size: clamp(36px, 4.8vw, 58px); }
.hero-page p { color: rgba(255,255,255,.8); font-size: 19px; max-width: 60ch; margin: 18px auto 0; }

/* =========================================================================
   SECTIONS / GENERIC
   ========================================================================= */
.section { padding: 92px 0; background: #fff; }
.section.alt { background: var(--paper); }
.section.navy { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.section.navy::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,.13) 1px, transparent 0);
  background-size: 32px 32px; opacity: .7; pointer-events: none;
}
.section.navy > * { position: relative; z-index: 1; }
.section.navy.bright { background: var(--navy); }
.section.tight { padding: 70px 0; }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section h2 { font-size: clamp(29px, 3.6vw, 42px); }
.section.navy h2 { color: #fff; }
.lead { font-size: 18.5px; color: var(--body); margin-top: 18px; }
.section.navy .lead { color: rgba(255,255,255,.82); }

/* two-column intro (mission) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split .prose p { font-size: 18px; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================================
   PILLAR / VALUE CARDS
   ========================================================================= */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px){ .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.pillar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.pillar .icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(10,36,99,.06);
  color: var(--navy);
  margin-bottom: 22px;
  transition: background .2s ease, color .2s ease;
}
.pillar:hover .icon { background: rgba(212,169,58,.16); color: var(--gold-deep); }
.pillar .icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 24px; margin-bottom: 10px; }
.pillar p { margin: 0; color: var(--body); }

/* value card (smaller, gold-rule top) */
.value {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.value .vic {
  width: 48px; height: 48px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(10,36,99,.06); color: var(--navy);
  margin-bottom: 18px;
  transition: background .2s ease, color .2s ease;
}
.value:hover .vic { background: rgba(212,169,58,.16); color: var(--gold-deep); }
.value .vic svg { width: 24px; height: 24px; }
.value h3 { font-size: 20px; margin-bottom: 9px; color: var(--navy); }
.value p { margin: 0; font-size: 15px; }

/* alternating image/text project rows (Projects page) */
.proj-rows { display: flex; flex-direction: column; gap: 80px; }
.proj-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.proj-row .pr-img { aspect-ratio: 4/3; border-radius: 16px; border-bottom: 4px solid var(--gold); overflow: hidden; box-shadow: var(--shadow-lg); }
.proj-row .pr-img img { width: 100%; height: 100%; object-fit: cover; }
.proj-row .pr-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); display: inline-block; margin-bottom: 16px; }
.proj-row h3 { font-size: clamp(28px, 3.4vw, 38px); color: var(--navy); margin-bottom: 0; line-height: 1.12; }
.proj-row .pr-rule { width: 48px; height: 4px; background: var(--gold); border: none; border-radius: 3px; margin: 22px 0 24px; }
.proj-row p { font-size: 18px; color: var(--body); margin: 0; }
.proj-row.flip .pr-img { order: 2; }
@media (max-width: 820px){
  .proj-row, .proj-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .proj-row.flip .pr-img { order: 0; }
}

/* =========================================================================
   PROJECT CARDS
   ========================================================================= */
.project {
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom: 4px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.project:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project > img, .project > .img-ph { transition: transform .7s ease; }
.project:hover > img { transform: scale(1.05); }
.project .pbody { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.project h3 { font-size: 21px; margin-bottom: 10px; color: var(--navy); }
.project p { font-size: 15.5px; color: var(--body); margin: 0 0 18px; }
.project .ptag {
  margin-top: auto;
  font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}

/* =========================================================================
   IMAGE PLACEHOLDERS (drop real photos here)
   ========================================================================= */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(10,42,78,.05) 0 10px, rgba(10,42,78,.02) 10px 20px),
    var(--paper-2);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--muted);
  overflow: hidden;
}
.img-ph::after {
  content: attr(data-label);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
}
.project .img-ph { aspect-ratio: 3 / 2; }

/* =========================================================================
   MEETINGS / CALLOUT BLOCKS
   ========================================================================= */
.meet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media (max-width: 720px){ .meet-grid { grid-template-columns: 1fr; } }
.meet {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  padding: 30px 30px 32px;
  backdrop-filter: blur(4px);
}
.meet .mtype { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.meet .mwhen { font-family: var(--serif); font-size: 26px; color: #fff; margin-bottom: 6px; }
.meet .mwhen strong { color: var(--gold); }
.meet .mwhere { color: rgba(255,255,255,.78); font-size: 16px; margin: 0; }

/* quote block */
.quote {
  text-align: center;
  max-width: 820px; margin: 0 auto;
}
.quote .qmark { font-family: var(--serif); font-size: 70px; line-height: .5; color: var(--gold); }
.quote blockquote { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); color: #fff; margin: 24px 0 18px; font-style: italic; }
.section:not(.navy) .quote blockquote { color: var(--ink); }
.quote cite { font-style: normal; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.section:not(.navy) .quote cite { color: var(--gold-deep); }

/* =========================================================================
   OFFICERS
   ========================================================================= */
.officer {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
  text-align: left;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.officer::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: rgba(212,169,58,.05);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: background .2s ease;
}
.officer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.officer:hover::before { background: rgba(212,169,58,.1); }
.officer > * { position: relative; }
.officer .avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 0 24px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--gold);
  border: 4px solid rgba(212,169,58,.2);
  transition: border-color .2s ease;
}
.officer:hover .avatar { border-color: rgba(212,169,58,.4); }
.officer .avatar svg { width: 36px; height: 36px; }
.officer .role { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.officer h3 { font-size: 24px; margin-bottom: 12px; color: var(--navy); }
.officer p { font-size: 15px; margin: 0; color: var(--body); }

/* =========================================================================
   CONTACT — member cards
   ========================================================================= */
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; margin: 48px auto 0; }
@media (max-width: 720px){ .member-grid { grid-template-columns: 1fr; } }
.member-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 32px 44px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member-card .ph-ic {
  width: 78px; height: 78px; border-radius: 50%;
  display: grid; place-items: center;
  background: #ece9e0; color: var(--navy);
  margin: 0 auto 26px;
}
.member-card .ph-ic svg { width: 30px; height: 30px; }
.member-card h3 { font-size: 28px; margin-bottom: 18px; }
.member-card a.mphone { font-size: 21px; font-weight: 700; color: var(--gold-deep); letter-spacing: .01em; transition: color .15s ease; }
.member-card a.mphone:hover { color: var(--gold); }

/* navy meeting cards (on light section) */
.meet-light-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 980px; margin: 50px auto 0; }
@media (max-width: 720px){ .meet-light-grid { grid-template-columns: 1fr; } }
.meet-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 16px;
  padding: 44px 44px 46px;
  color: #fff;
  position: relative; overflow: hidden;
}
.meet-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.meet-dark > * { position: relative; z-index: 1; }
.meet-dark .mc-ic { color: var(--gold); margin-bottom: 30px; }
.meet-dark .mc-ic svg { width: 38px; height: 38px; }
.meet-dark h3 { color: #fff; font-size: 30px; margin-bottom: 22px; }
.meet-dark .mc-line { display: flex; align-items: center; gap: 12px; font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.meet-dark .mc-line svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.meet-dark .mc-line strong { color: #fff; }
.meet-dark .mc-sub { color: rgba(255,255,255,.72); font-size: 16.5px; margin: 6px 0 0 31px; }
.meet-dark .mc-sub.italic { font-style: italic; }

.contact-map { max-width: 1180px; margin: 0 auto; }
.contact-map iframe { width: 100%; height: 460px; border: 0; border-radius: 16px; display: block; box-shadow: var(--shadow-md); }

/* =========================================================================
   CONTACT (legacy form styles)
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 44px; height: 44px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(31,93,163,.09); color: var(--navy);
}
.info-row .ic svg { width: 21px; height: 21px; }
.info-row h4 { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.info-row .iv { color: var(--ink); font-size: 16.5px; }
.info-row .iv a:hover { color: var(--navy); }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 6px; background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,93,163,.13); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13.5px; color: var(--muted); margin: 4px 0 0; }
.form-ok { display:none; background: rgba(31,140,90,.1); border:1px solid rgba(31,140,90,.3); color:#1c6b46; padding:14px 16px; border-radius:8px; font-weight:600; font-size:15px; margin-bottom:18px; }
.form-ok.show { display:block; }

.map-ph { width: 100%; aspect-ratio: 16/10; border-radius: 12px; margin-top: 28px; }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px){ .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,24,67,.7), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  color: #fff; font-family: var(--serif); font-size: 15px;
  padding: 20px;
  opacity: 0; transform: translateY(14px); transition: .3s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.album { }
.album + .album { margin-top: 88px; }
.album-head { margin-bottom: 40px; }
.album-head .eyebrow { margin-bottom: 12px; }
.album-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.album-head .gold-rule { margin: 0; }

/* =========================================================================
   CTA STRIP
   ========================================================================= */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 20ch; margin: 0 auto 16px; }
.cta-strip p { font-size: 18px; max-width: 56ch; margin: 0 auto 30px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 50px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 860px){ .footer-top { grid-template-columns: 1fr; gap: 36px; } }

.f-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.f-brand .mark {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, var(--blue), var(--navy));
  border: 2px solid var(--gold);
  color: var(--gold-soft); font-family: var(--serif); font-weight: 700; font-size: 18px;
}
.f-brand .ftxt { line-height: 1.15; }
.f-brand .fn { font-family: var(--serif); color: #fff; font-size: 19px; font-weight: 700; }
.f-brand .fs { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; }
.footer-top .blurb { font-size: 15px; max-width: 42ch; margin-bottom: 18px; }
.footer-top .motto { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 19px; }

.footer-col h4 { font-family: var(--sans); color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 15px; color: rgba(255,255,255,.74); transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.contact-line { display: flex; gap: 11px; align-items: flex-start; }
.contact-line svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold-soft); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding-top: 26px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-bottom .badge { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .badge::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--gold); }

/* =========================================================================
   reveal-on-scroll
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
