/* =====================================================================
   nav.css  椤堕儴瀵艰埅鏍峰紡锛堝叕鍏辩粍浠讹紝渚涙墍鏈夐〉闈㈠鐢級
   渚濊禆锛歱age.css 涓殑 CSS 鍙橀噺锛�--gold / --red / --red-deep 绛夛級
   濡傜嫭绔嬩娇鐢紝璇峰湪椤甸潰 :root 涓畾涔変互涓嬪彉閲忥細
     --red:#B7332C; --red-deep:#8E1F1A; --gold:#C9A063;
   ===================================================================== */

/* ===== 椤堕儴瀵艰埅 ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(142, 31, 26, .97);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
          box-shadow: 0 2px 12px rgba(0, 0, 0, .18);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 24px;
  height: 60px;
}

/* Logo */
.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  gap: 10px;
}
.nav-logo .seal {
  width: 34px;
  height: 34px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 閾炬帴 */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6px;
}
.nav-links a {
  color: #F4E3D0;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  -webkit-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}
.nav-links a.cta {
  background: var(--gold);
  color: #5A2B00;
  font-weight: 700;
}
.nav-links a.cta:hover {
  background: #DBB578;
}

/* ===== 鍝嶅簲寮忥細绉诲姩绔殣钘忛摼鎺ワ紙鍙寜闇€鏀逛负姹夊牎鑿滃崟锛� ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* =====================================================================
   椤佃剼鏍峰紡锛堝叕鍏辩粍浠讹紝渚涙墍鏈夐〉闈㈠鐢級
   ===================================================================== */

/* 椤佃剼 */
.footer {
  margin-top: 70px;
  background: #5C1512;
  color: #E8C9B8;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.footer h4 {
  color: #FFDFA3;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.footer p,
.footer a {
  font-size: 13.5px;
  color: #E0BBA8;
  line-height: 2;
  text-decoration: none;
  display: block;
}
.footer a:hover { color: #fff; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  padding: 16px;
  font-size: 12.5px;
  color: #C09B88;
}
