:root {
  --primary-color: #2E4A22; /* 草地赛场绿 */
  --secondary-color: #8B5A2B; /* 马具皮革褐 */
  --bg-color: #FDFBF7; /* 燕麦纸白 */
  --card-bg: #FFFFFF; /* 纯白 */
  --text-color: #3E3E3E; /* 碳灰 */
  --text-light: #666666;
  --border-color: #EAE6DF;
  --font-serif: 'Playfair Display', 'Noto Serif SC', serif;
  --font-sans: 'Inter', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary-color);
}

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

/* Header */
.cdde98661 {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.cbbebf201 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c3b3867c5 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.c3b3867c5 img {
  width: 40px;
  height: 40px;
}

.cdb7dcabc {
  display: flex;
  gap: 2rem;
}

.cdb7dcabc a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cdb7dcabc a:hover {
  color: var(--secondary-color);
}

.c88f5b535 {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cace9229c {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 2px;
  font-weight: 500;
  transition: var(--transition-smooth);
  border: 1px solid var(--primary-color);
}

.cace9229c:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.c9c7c461b {
  background-color: transparent;
  color: var(--primary-color);
}

.c9c7c461b:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Hero Section */
.c809d3c34 {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
}

.cfd3563dd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.c00ec6387 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(46, 74, 34, 0.4), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.c9666ac0f {
  max-width: 800px;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

.c809d3c34 h1 {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.c809d3c34 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Container */
.ceac3d0cb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.cc0f5662f {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.cc0f5662f::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0;
}

/* Grid Layouts */
.cccac1b18 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ca03ab2bf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Cards */
.c22f21682 {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.c22f21682:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(46, 74, 34, 0.08);
}

.ce3d0934b {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%; /* 3:2 aspect ratio */
}

.ce3d0934b img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.c22f21682:hover .ce3d0934b img {
  transform: scale(1.05);
}

.cc91dfba3 {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cff89c8b7 {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.cb38a265c {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.cb38a265c a:hover {
  color: var(--primary-color);
}

.c5b1da047 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Specific Sections */
.c941614d1 {
  background-color: var(--card-bg);
}

.c6792877e {
  grid-column: span 2;
}

.c6792877e .ce3d0934b {
  padding-top: 50%;
}

.c12796952 {
  background-color: var(--bg-color);
}

.c567a9a6b {
  display: flex;
  gap: 3rem;
}

.c1464682e {
  flex: 1;
  background: var(--card-bg);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.cfe59913a {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.cfe59913a:hover {
  background-color: #f9f9f9;
}

.cf5527b1d {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  width: 40px;
}

.c9c29067f {
  flex-grow: 1;
}

.cd0ca293e {
  font-weight: 600;
  color: var(--primary-color);
  display: block;
}

.c0f70f835 {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Custom Components */
.c658f7ea2 {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem;
  border-radius: 4px;
  font-family: monospace;
  margin: 2rem 0;
}

/* Page Layout */
.c55b30e50 {
  padding: 8rem 2rem 4rem;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
}

.c55b30e50 h1 {
  color: #fff;
  font-size: 3rem;
}

.c9572d2d4 {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.c9572d2d4 a {
  color: var(--text-light);
}

.c9572d2d4 span {
  color: var(--text-color);
}

.cfa2396b0 {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.cfa2396b0 p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cfa2396b0 img {
  margin: 2rem 0;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.sidebar {
  background: var(--card-bg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  height: fit-content;
}

/* Footer */
.c75de4d4e {
  background-color: #1a2a14;
  color: #a0b098;
  padding: 4rem 2rem 2rem;
}

.c67f5a435 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.c00160612 h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.c32bd5594 {
  list-style: none;
}

.c32bd5594 li {
  margin-bottom: 0.8rem;
}

.c32bd5594 a {
  color: #a0b098;
}

.c32bd5594 a:hover {
  color: #fff;
}

.c618f472c {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .cccac1b18 { grid-template-columns: repeat(2, 1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cbbebf201 { flex-direction: column; gap: 1rem; }
  .cdb7dcabc { flex-wrap: wrap; justify-content: center; }
  .cccac1b18, .ca03ab2bf { grid-template-columns: 1fr; }
  .c6792877e { grid-column: span 1; }
  .c567a9a6b { flex-direction: column; }
  .c67f5a435 { grid-template-columns: 1fr 1fr; }
  .c809d3c34 h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .c67f5a435 { grid-template-columns: 1fr; }
  .c618f472c { flex-direction: column; text-align: center; gap: 1rem; }
}
