html,body{width:100%;max-width:100%;overflow-x:hidden}*,*::before,*::after{box-sizing:border-box}img,svg,video,canvas{max-width:100%}input,select,textarea{font-size:16px}
:root {
  --gold: #d6b369;
  --gold-deep: #b9903f;
  --text: #181818;
  --muted: #6f6f72;
  --border: #e8e8e8;
  --fr-bg: #fff;
  --fr-panel: #fff;
  --fr-panel-2: #f7f7f5;
  --fr-border: #e8e8e8;
  --fr-text: #181818;
  --fr-muted: #6f6f72;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fff !important;
  color: var(--text) !important;
}
.fr-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff !important;
  border-bottom: 1px solid var(--border);
  color: #111;
}
.fr-navbar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}
.fr-nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fr-brand {
  font-family: Georgia, serif;
  font-weight: 800;
  font-size: 18px;
  color: #111 !important;
  text-decoration: none;
}
.fr-nav-links {
  display: flex;
  gap: 22px;
}
.fr-nav-links a {
  position: relative;
  color: #555 !important;
  text-decoration: none;
  font-size: 14px;
}
.fr-nav-links a:hover {
  color: #111 !important;
}
.fr-nav-links a.active {
  color: var(--gold-deep) !important;
  font-weight: 700;
}
.fr-nav-links a.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
}
.fr-nav-right {
  display: flex;
  align-items: center;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
}
.home-btn-secondary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff !important;
}
.fr-nav-toggle {
  display: none;
}
.fr-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.fr-nav-overlay.active {
  display: flex;
}
.fr-nav-overlay-box {
  width: 100%;
  max-width: 320px;
}
.fr-nav-overlay-box a {
  display: block;
  padding: 18px;
  border-bottom: 1px solid #eee;
  color: #333 !important;
  text-decoration: none;
  font-size: 18px;
}
.fr-nav-overlay-box a.active {
  color: var(--gold-deep) !important;
}
.fr-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
}
.main-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  background: #fff !important;
  color: #555 !important;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  color: var(--gold) !important;
}
.footer-col h3:not(:first-child) {
  margin-top: 24px;
}
.footer-col p,
.footer-col a {
  color: #666 !important;
  text-decoration: none;
  line-height: 1.55;
}
.footer-col a:hover {
  color: var(--gold-deep) !important;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-bottom {
  padding: 20px;
  text-align: center;
  color: #999;
}
.social-icons a {
  color: #222 !important;
}
.social-icons a:hover {
  color: var(--gold-deep) !important;
}
@media (max-width: 768px) {
  .fr-nav-links {
    display: none;
  }
  .fr-nav-toggle {
    display: block;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: #111;
    font-size: 20px;
  }
  .fr-nav-right {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
