:root {
  --brown-dark: #3d1f0a;
  --brown-mid: #6b3a1f;
  --gold: #c8960c;
  --gold-light: #e8b84b;
  --gold-pale: #f5e6c0;
  --cream: #fdf8f0;
  --cream-dark: #f5ede0;
  --green: #3a6b2a;
  --green-light: #5a9b47;
  --text-dark: #1a0f06;
  --text-mid: #5a3a1a;
  --white: #fff;
  --sidebar-w: 280px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: ' Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
/* ===== FOOTER ===== */
footer {
  background: #1a0f06; color: rgba(253,248,240,0.6);
  padding: 65px 0 0;
  border-top: 1px solid rgba(200,150,12,0.2);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 12px; line-height: 2; margin: 14px 0; color: rgba(253,248,240,0.5); font-weight: 300; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--cream); line-height: 1.2; }
.footer-logo-text small { display: block; font-family: 'Josefin Sans', sans-serif; font-size: 9px; color: var(--gold-light); letter-spacing: 1px; font-weight: 400; text-transform: uppercase; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(200,150,12,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(253,248,240,0.5); font-size: 13px; text-decoration: none; transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); color: white; border-color: var(--gold); }
.footer-col h4 {
  color: var(--cream); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 22px; height: 1px; background: var(--gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(253,248,240,0.5); text-decoration: none; font-size: 12px;
  transition: all 0.3s; display: flex; align-items: center; gap: 8px; font-weight: 300;
}
.footer-links a i { font-size: 9px; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 13px; font-size: 12px; color: rgba(253,248,240,0.5); font-weight: 300;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 11px; color: rgba(253,248,240,0.3); letter-spacing: 0.5px;
}
.footer-partners { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.partner-badge {
  padding: 5px 12px; border: 1px solid rgba(200,150,12,0.2);
  border-radius: 2px; font-size: 10px; color: rgba(253,248,240,0.4);
  display: flex; align-items: center; gap: 6px; letter-spacing: 1px;
}
