/* Shared variables and footer styles copied from index.html to ensure visual parity across pages */
:root{
  --gold:#C9961A;
  --gold-dark:#b38212;
  --brand-purple:#6f2fa0;
  --teal:#1B2A6B;
  --deep-teal:#1a2b5e;
  --bg:#ffffff;
  --muted:#6b6b6b;
  --muted-strong:#48505a;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width:1200px;
  --radius:12px;
  --nav-height:48px;
  --footer-bg:var(--deep-teal);
  --footer-text:#ffffff;
}

footer{padding:34px 20px;background:var(--footer-bg);color:var(--footer-text);margin-top:40px;font-family:var(--font-heading)}
footer a{color:rgba(255,255,255,0.9)}
footer .foot-wrap{max-width:var(--max-width);margin:0 auto;display:flex;justify-content:space-between;align-items:center;gap:12px}
footer .social svg{fill:rgba(255,255,255,0.9)}
.footer-contact .contact-item a{display:inline-flex;align-items:center;gap:8px}
.footer-contact .mail-icon{width:18px;height:18px;display:inline-block;flex-shrink:0;fill:rgba(255,255,255,0.95)}
.footer-sep{border-top:1px dashed rgba(255,255,255,0.12);margin:18px 0}
.footer-col{min-width:160px}
.footer-col h4{margin:0 0 8px;font-size:1rem;color:var(--footer-text);font-weight:700;letter-spacing:0.4px}
.footer-col a{display:block;color:rgba(255,255,255,0.95);text-decoration:none;margin-bottom:6px}
.footer-contact .contact-item{color:rgba(255,255,255,0.95);font-size:0.95rem;margin-bottom:6px}
@media(max-width:720px){footer .foot-wrap{flex-direction:column;align-items:flex-start}}
