/* 华宁柑桔 - 橘黄+白色主题，清新自然风格 */
:root {
  --orange: #ff8c42;
  --orange-light: #ffb347;
  --cream: #fffaf5;
  --white: #ffffff;
  --text: #4a3a2a;
  --green: #5a9a5a;
  --light-green: #e8f5e9;
}

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

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(255,140,66,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area { display: flex; align-items: center; gap: 14px; }
.fruit-icon { font-size: 2.5rem; }
.logo-area h1 { font-size: 1.3rem; font-weight: 700; color: var(--orange); }
.logo-area p { font-size: 0.8rem; color: #aaa; letter-spacing: 2px; }
.main-nav { display: flex; gap: 8px; }
.main-nav a {
  padding: 8px 20px;
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.main-nav a:hover { background: var(--orange); color: var(--white); }

/* Hero */
.hero-section { padding: 60px 24px; }
.hero-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ff8c42 0%, #ffb347 50%, #ffe0b2 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.fruit-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 30%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2) 0%, transparent 25%);
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 600px;
  color: var(--white);
}
.hero-text h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 8px; }
.hero-text .lead { font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; opacity: 0.9; }
.hero-text .desc { font-size: 0.95rem; opacity: 0.85; margin-bottom: 28px; line-height: 1.8; }
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* Sections */
section { padding: 80px 0; }
h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
  color: var(--orange);
  font-weight: 700;
}
h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange-light);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Products */
.products-section { background: var(--white); }
.product-list { display: flex; flex-direction: column; gap: 24px; }
.product-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255,140,66,0.08);
  transition: box-shadow 0.3s;
}
.product-item:hover { box-shadow: 0 8px 36px rgba(255,140,66,0.15); }
.p-visual { min-height: 160px; }
.v1 { background: linear-gradient(135deg, #ff8c42, #ffb347); }
.v2 { background: linear-gradient(135deg, #ffa726, #ffcc80, #fff3e0); }
.v3 { background: linear-gradient(135deg, #ff6f00, #ff8c42, #ffb347); }
.v4 { background: linear-gradient(135deg, #e65100, #ff8c42, #ffe0b2); }
.p-info { padding: 28px; background: var(--cream); display: flex; flex-direction: column; justify-content: center; }
.p-info h3 { color: var(--orange); font-size: 1.2rem; margin-bottom: 8px; }
.p-info p { color: #666; font-size: 0.9rem; margin-bottom: 12px; }
.p-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 50px;
  align-self: flex-start;
}

/* Story */
.story-section { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.scene-card {
  border-radius: 20px;
  height: 320px;
  background: linear-gradient(135deg, #ff8c42, #ffb347, #ffe0b2, #5a9a5a);
  position: relative;
  overflow: hidden;
}
.scene-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.85);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.story-text h2 { text-align: left; }
.story-text h2::after { margin: 12px 0 0; }
.story-text p { color: #666; margin-bottom: 16px; font-size: 0.95rem; }
.story-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.story-tags span {
  background: var(--white);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,140,66,0.2);
}

/* Quote */
.quote-section { background: linear-gradient(135deg, #ff8c42, #ffb347); padding: 60px 24px; }
blockquote {
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
  font-size: 1.3rem;
  text-align: center;
  font-style: italic;
  line-height: 1.8;
}

/* Contact */
.contact-section { background: var(--white); }
.contact-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 700px; margin: 0 auto; }
.contact-col { display: flex; flex-direction: column; gap: 20px; }
.c-row { display: flex; align-items: center; gap: 16px; }
.c-row span { font-size: 1.8rem; }
.c-row strong { color: var(--orange); font-size: 0.9rem; display: block; }
.c-row p { color: #555; font-size: 0.9rem; }

/* Footer */
footer { background: var(--cream); color: #aaa; text-align: center; padding: 24px; margin-top: auto; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .hero-text { padding: 40px 30px; }
  .product-item { grid-template-columns: 1fr; }
  .p-visual { min-height: 120px; }
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-flex { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}