@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* MPSN — Classic Edition */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #eaedd0;
  --bg-alt:    #d3d8a8;
  --text:      #1a1814;
  --muted:     rgba(26,24,20,0.55);
  --gold:      #c9821a;
  --gold-dim:  rgba(201,130,26,0.12);
  --gold-fade: rgba(201,130,26,0.28);
  --rule:      rgba(26,24,20,0.12);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0d0d0d; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ──────────────────────────────────────────────────────────────── */
.site-nav {
  border-top: 4px solid var(--gold);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-wordmark {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(26,24,20,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  padding: 3rem 3rem 6rem;
  max-width: 88rem;
  margin: 0 auto;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background-image: url('../assets/images/islamic-pattern.svg');
  background-size: 100px 100px;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }


.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.hero-body-inner { grid-column: 5 / 13; }

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(26,24,20,0.9);
  margin-bottom: 3rem;
  max-width: 44rem;
}

.hero-rule {
  border: none;
  border-top: 2px solid var(--gold-fade);
  width: 6rem;
  margin-bottom: 3rem;
}

.hero-ctas { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #0d0d0d;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: #b8760a; }

.btn-text-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-text-link:hover { color: var(--gold); }

.arrow-icon {
  width: 1rem; height: 1rem;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── PULL QUOTE ───────────────────────────────────────────────────────── */
.pull-quote-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 6rem 3rem;
}

.pull-quote-inner { max-width: 60rem; margin: 0 auto; text-align: center; }

.pull-quote-section blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2rem;
}

.pull-quote-section cite {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(26,24,20,0.6);
  font-style: normal;
}

/* ── PILLARS ──────────────────────────────────────────────────────────── */
.pillars-section {
  padding: 7rem 3rem;
  max-width: 88rem;
  margin: 0 auto;
}

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

.pillar { position: relative; }

.pillar-numeral {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold-dim);
  position: absolute;
  top: -3rem;
  left: -1rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.pillar-inner { position: relative; z-index: 1; }

.pillar-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-fade);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.pillar-body {
  font-size: 1rem;
  color: rgba(26,24,20,0.8);
  font-weight: 300;
  line-height: 1.75;
}

/* ── ALUMNI ───────────────────────────────────────────────────────────── */
.alumni-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 6rem 3rem;
}

.alumni-inner { max-width: 88rem; margin: 0 auto; }

.alumni-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid rgba(26,24,20,0.2);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.alumni-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
}

.alumni-header a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}
.alumni-header a:hover { color: var(--text); }

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 3rem;
}

.alumni-entry .alum-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s;
  margin-top: 0;
}

/* ── APPLY ────────────────────────────────────────────────────────────── */
.apply-section {
  padding: 7rem 3rem;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}

.apply-box {
  border: 1px solid var(--gold);
  padding: 4rem;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.apply-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/islamic-pattern.svg');
  background-size: 100px 100px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.apply-box > * { position: relative; z-index: 1; }

.apply-box .c-tl,
.apply-box .c-tr,
.apply-box .c-bl,
.apply-box .c-br {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-color: var(--gold);
  border-style: solid;
}
.apply-box .c-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.apply-box .c-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.apply-box .c-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.apply-box .c-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.apply-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.apply-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.apply-deadline {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(26,24,20,0.7);
  margin-bottom: 2.5rem;
}

.btn-apply {
  display: inline-block;
  background: var(--gold);
  color: #0d0d0d;
  padding: 1.25rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-apply:hover { background: #b8760a; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 4px solid var(--gold);
  padding: 5rem 3rem;
}

.footer-inner {
  max-width: 88rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(26, 24, 20, 0.5);
  max-width: 32ch;
  margin-top: 0.75rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 2.1;
  color: rgba(26,24,20,0.7);
  font-weight: 300;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.footer-social { display: flex; justify-content: flex-end; gap: 1.5rem; list-style: none; }

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

.footer-legal {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.4);
  line-height: 2.2;
}

/* ── INNER PAGES ──────────────────────────────────────────────────────── */
.page-wrapper { max-width: 88rem; margin: 0 auto; padding: 0 3rem; }

.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 3rem;
}

.page-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text);
}

.page-content { max-width: 52rem; padding-bottom: 5rem; }

.page-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26,24,20,0.85);
  margin-bottom: 1.5rem;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.page-content h3 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content li {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(26,24,20,0.85);
  margin-bottom: 0.5rem;
}

.page-content a { color: var(--gold); border-bottom: 1px solid var(--gold-fade); transition: border-color 0.2s; }
.page-content a:hover { border-color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav { padding: 1.5rem; flex-direction: column; align-items: center; }
  .hero { padding: 2rem 1.5rem 4rem; }
  .hero-body { grid-template-columns: 1fr; }
  .hero-body-inner { grid-column: 1 / -1; }
  .pillars-section { padding: 4rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 4rem; }
  .alumni-section { padding: 4rem 1.5rem; }
  .alumni-grid { grid-template-columns: 1fr 1fr; }
  .apply-section { padding: 4rem 1.5rem; }
  .apply-box { padding: 2.5rem 1.5rem; }
  .pull-quote-section { padding: 4rem 1.5rem; }
  .site-footer { padding: 3rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-right { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .page-wrapper { padding: 0 1.5rem; }
  .page-hero { padding: 3rem 0 2rem; }
}

@media (max-width: 600px) {
  .nav-links { gap: 1.25rem; justify-content: center; }
  .alumni-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════
   INNER PAGE COMPONENTS — Night Edition
   ═══════════════════════════════════════════════════════════════════════ */

/* Variable aliases for any remaining inline style references */
:root {
  --navy:      #1b3a6b;
  --white:     var(--text);
  --off-white: var(--bg-alt);
}

/* ── OLD NAV / HEADER ─────────────────────────────────────────────────── */
header {
  border-top: 4px solid var(--gold);
  background: var(--bg);
}

.nav-container {
  max-width: 88rem;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.org-name { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--text); }
.org-tagline { font-size: 0.65rem; color: var(--muted); }
.nav-toggle { display: none; }

.main-nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.main-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(26,24,20,0.75);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav .btn-apply {
  background: var(--gold);
  color: #0d0d0d;
  padding: 0.5rem 1.25rem;
}
.main-nav .btn-apply:hover { background: #b8760a; color: #0d0d0d; }
.main-nav .btn-donate {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-fade);
  padding: 0.5rem 1.25rem;
}
.main-nav .btn-donate:hover { background: var(--gold); color: #0d0d0d; }

/* ── INNER PAGE HERO ──────────────────────────────────────────────────── */
section.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
section.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/islamic-pattern.svg');
  background-size: 100px 100px;
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
}
section.page-hero > * { position: relative; z-index: 1; }

section.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.75rem;
}

section.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
}

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
.section { padding: 4rem 3rem; }
.section-inner { max-width: 72rem; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.section-navy {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(26,24,20,0.85); }
.section a { color: var(--gold); }
.section a.btn-primary,
.section a.btn-apply { color: #0d0d0d; }
.section strong { color: var(--text); font-weight: 600; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.divider {
  width: 3rem;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 0.75rem 0 1.5rem;
}

/* ── TWO COLUMN ───────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col img { width: 100%; object-fit: cover; }
.two-col.reversed > :first-child { order: 2; }
.two-col.reversed > :last-child { order: 1; }

/* ── CARDS ────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.card p { font-size: 0.95rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ── QUOTE BLOCK ──────────────────────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── PHOTO GRID ───────────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-grid img { width: 100%; height: 220px; object-fit: cover; }

/* ── STYLED LIST ──────────────────────────────────────────────────────── */
.styled-list { list-style: none; padding-left: 0; }

.styled-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 0.95rem;
  color: rgba(26,24,20,0.8);
  font-weight: 300;
  line-height: 1.6;
}

.styled-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── INFO BOX ─────────────────────────────────────────────────────────── */
.info-box {
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border: 1px solid var(--gold-fade);
  border-left-width: 3px;
  padding: 1.5rem;
}

.info-box h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.info-box p { font-size: 0.95rem; color: var(--muted); font-weight: 300; }
.info-box a { color: var(--gold); }

/* ── TIMELINE ─────────────────────────────────────────────────────────── */
.timeline {
  border-left: 2px solid var(--gold-fade);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.timeline-item { position: relative; margin-bottom: 2.5rem; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-item p { font-size: 0.95rem; color: rgba(26,24,20,0.8); font-weight: 300; line-height: 1.7; }

/* ── DONATE ───────────────────────────────────────────────────────────── */
.donate-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.donate-card {
  display: block;
  flex: 0 1 160px;
  background: var(--bg);
  border: 1px solid var(--gold-fade);
  border-top: 3px solid var(--gold);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.donate-card:hover { background: #bec592; border-color: var(--gold); }

.donate-card .amount { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.donate-card .frequency { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 0.25rem 0; }
.donate-card .tier-name { font-size: 0.85rem; color: var(--text); font-weight: 500; }

/* ── STATS ────────────────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--serif); font-size: 3rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-top: 0.25rem; }

/* ── CONTACT BAR ──────────────────────────────────────────────────────── */
.contact-bar {
  background: var(--gold);
  color: #0d0d0d;
  padding: 2rem 3rem;
  text-align: center;
}

.contact-bar h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0d0d0d;
}

.contact-bar a {
  color: #0d0d0d;
  font-weight: 600;
  border-bottom: 2px solid rgba(13,13,13,0.3);
}

.contact-bar .btn-apply {
  background: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  color: #0d0d0d;
  border-bottom: 2px solid rgba(13,13,13,0.3);
}

.contact-bar .btn-apply:hover {
  background: none;
  border-bottom-color: #0d0d0d;
}

/* ── OLD FOOTER COMPAT ────────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 4px solid var(--gold);
  padding: 0 3rem;
  color: var(--text);
}

footer .footer-inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.85; }

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-col p { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.85; }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(26,24,20,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── INNER PAGE RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 3rem 1.5rem; }
  .nav-container { padding: 1rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reversed > :first-child { order: unset; }
  .two-col.reversed > :last-child { order: unset; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  footer { padding: 0 1.5rem; }
  section.page-hero { padding: 3rem 1.5rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .contact-bar { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 1.5rem; }
}
