/* -----  Thin: 100  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* -----  ExtraLight: 200  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* -----  Light: 300  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* -----  Regular: 400  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* -----  Medium: 500  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* -----  Semibold / Demibold: 600  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* -----  Bold: 700  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -----  Heavy: 900  ----- */
@font-face {
  font-family: 'MiSans';
  src: url('https://cdn.townwe.com/26fonts/MiSans-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink-950: #1a1a1a;
  --ink-900: #f8f8f8;
  --ink-800: #ffffff;
  --ink-700: #f2f2f2;
  --ink-600: #e5e5e5;
  --ink-500: #999999;
  --ink-400: #666666;
  --ink-300: #444444;
  --ink-200: #333333;
  --ink-100: #222222;
  --ink-50: #111111;

  --gold-500: #ee1111;
  --gold-400: #f14343;
  --gold-300: #f58a8a;
  --gold-600: #c50e0e;
  --gold-700: #9a0b0b;
  --gold-gradient: #ee1111;

  --jade-500: #3d6b5c;
  --jade-400: #4d8572;
  --jade-600: #2d5246;

  --vermilion-500: #9c3a2a;
  --vermilion-400: #b84a38;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-tertiary: #f2f2f2;
  --bg-card: rgba(255, 255, 255, 0.95);

  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #888888;
  --text-gold: #ee1111;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-medium: rgba(238, 17, 17, 0.25);
  --border-strong: rgba(238, 17, 17, 0.55);

  --shadow-gold: 0 4px 30px rgba(238, 17, 17, 0.1);
  --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.12);

  --font-display: 'MiSans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'MiSans', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --max-width: 1600px;
  --max-width-narrow: 1100px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(61, 107, 92, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.3;
}

.heading-eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.heading-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--gold-500);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.container-narrow {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: max-content;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s var(--ease-smooth);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--ink-950);
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(238, 17, 17, 0.25);
  color: var(--ink-950);
}

.btn-outline {
  background: transparent;
  color: var(--gold-500);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: var(--gold-500);
  color: var(--ink-950);
  border-color: var(--gold-500);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-bottom: 1px solid var(--gold-500);
  padding: 0.5rem 0;
  border-radius: 0;
}

.btn-ghost:hover {
  color: var(--gold-500);
  letter-spacing: 0.15em;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-sm {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .heading-eyebrow {
  justify-content: center;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 650px;
  margin: 0 auto;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 1.5rem auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.fade-in.animate {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.3s var(--ease-smooth);
}

.nav-logo-img:hover {
  opacity: 0.85;
}

/* Logo 切换：默认显示白色，隐藏深色 */
.nav-logo-white {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}

.nav-logo-dark {
  opacity: 0;
}

/* 滚动后：显示深色，隐藏白色 */
.nav-scrolled .nav-logo-white {
  opacity: 0;
}

.nav-scrolled .nav-logo-dark {
  opacity: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  position: relative;
  transition: color 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: all 0.3s var(--ease-smooth);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-500);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: max-content;
}

.nav-cta:hover {
  color: var(--gold-600);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

/* 集团旗下品牌下拉菜单 */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s var(--ease-smooth);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  color: #ffffff;
  background: rgba(238, 17, 17, 0.12);
  padding-left: 1.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-secondary);
  z-index: 999;
  transition: right 0.5s var(--ease-smooth);
  border-left: 1px solid var(--border-subtle);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: 0.1em;
}

.mobile-cta {
  margin-top: auto;
  width: 100%;
}

/* 移动端品牌区域 */
.mobile-brands {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}

.mobile-brands-title {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.mobile-brands-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mobile-brands-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all 0.25s var(--ease-smooth);
}

.mobile-brands-links a:hover {
  color: #ffffff;
  border-color: var(--gold-500);
  background: rgba(238, 17, 17, 0.1);
}

.no-scroll {
  overflow: hidden;
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 0;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: 2px;
}

.footer-logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.1em;
}

.footer-logo-sub {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold-gradient);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: var(--text-tertiary);
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease-smooth);
}

.footer-list a:hover {
  color: var(--gold-500);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-left p {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.footer-bottom-right a {
  color: var(--text-tertiary);
}

.footer-bottom-right a:hover {
  color: var(--gold-500);
}

.footer-sep {
  color: var(--ink-600);
}

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(var(--hero-translate, 0));
  transition: transform 0.1s linear;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 100%);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  opacity: var(--hero-opacity, 1);
}

.page-hero .heading-eyebrow {
  justify-content: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--gold-500);
}

.breadcrumb-sep {
  color: var(--gold-500);
}

.breadcrumb-current {
  color: var(--gold-500);
}

@media (max-width: 1200px) {
  .nav-menu {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  .nav-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-sm {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .nav-container {
    padding: 0 1.25rem;
  }
  
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .page-hero {
    height: 50vh;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.text-center {
  text-align: center;
}


/* ===== 明亮版特有覆盖样式 ===== */

/* body 背景：干净白色 + 极淡红色光晕 */
body::before {
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(238, 17, 17, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
}

body::after {
  opacity: 0.015;
  mix-blend-mode: multiply;
}

/* 导航栏：滚动后白色毛玻璃 */
.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* 移动端菜单 */
.mobile-menu {
  background: #ffffff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

/* 按钮 */
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(238, 17, 17, 0.25);
}

.btn-outline:hover {
  background: var(--gold-500);
  color: #ffffff;
  border-color: var(--gold-500);
}

.btn-ghost {
  border-bottom-color: var(--gold-500);
}

/* Footer */
.footer {
  background: #f8f8f8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.08);
}

/* 输入框 */
input, textarea, select {
  background: #ffffff;
  color: #1a1a1a;
}

/* 金色文字在白色背景下保持红色 */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 分隔线 */
.divider,
.heading-eyebrow::before {
  background: var(--gold-gradient);
}

.heading-eyebrow {
  color: var(--gold-500);
}

/* 链接悬停 */
a:hover {
  color: var(--gold-500);
}

/* 红色按钮文字为白色 */
.btn-primary,
.btn-primary:hover {
  color: #ffffff;
}

/* 页面 Hero：去掉遮罩 */
.page-hero-bg::before,
.page-hero-bg::after {
  background: transparent;
}

/* 页面 Hero 文字改为白色 + 投影 */
.page-hero .display-xl,
.page-hero .display-lg,
.page-hero .heading-eyebrow,
.page-hero .heading-eyebrow::before,
.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb-sep,
.page-hero .breadcrumb-current,
.page-hero p,
.page-hero .gold-text {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.page-hero .gold-text {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
}

.page-hero .heading-eyebrow::before {
  background: #ffffff;
}

.page-hero .breadcrumb a:hover,
.page-hero .breadcrumb-current {
  color: #ffffff;
}

/* 顶部导航初始状态白字 + 投影 */
.nav:not(.nav-scrolled) .nav-link {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.nav:not(.nav-scrolled) .nav-link:hover,
.nav:not(.nav-scrolled) .nav-link.active {
  color: #ffffff;
}

.nav:not(.nav-scrolled) .nav-link::after {
  background: #ffffff;
}

/* 表单输入框样式 */
.form-input,
.form-textarea,
.form-select {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(238, 17, 17, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

/* ===== 圆角统一 ===== */
.btn-primary,
.btn-outline,
.mobile-cta {
  border-radius: 6px;
}

input,
textarea,
select,
.form-input,
.form-textarea,
.form-select {
  border-radius: 6px;
}

.case-item,
.case-card,
.system-card,
.guide-card,
.expert-card,
.story-card,
.booking-form,
.ai-inspiration,
.masonry-item,
.color-palette-card,
.solution-feature,
.solution-image,
.booking-info,
.booking-form-container {
  border-radius: 12px;
  overflow: hidden;
}

.page-hero-content,
.about-hero-content,
.solutions-hero,
.system-overview,
.knowledge-article {
  border-radius: 12px;
}
