:root {
  --primary: #ff8a3d;
  --primary-dark: #ef6c1b;
  --secondary: #3bb5a9;
  --dark: #25313c;
  --text: #586572;
  --muted: #7b8794;
  --light: #fff8f1;
  --white: #ffffff;
  --line: rgba(37, 49, 60, 0.1);
  --shadow: 0 24px 60px rgba(61, 46, 34, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--dark);
  background: #fffdf9;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  width: 46px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text,
.logo span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: #25313c;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #59636e;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: #fff0e3;
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--primary);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--primary-dark);
}

/* Hero - 首页 PNG 图片轮播 */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 110px;
  background: #b88a66;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-slider {
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.04);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition:
    opacity 1.1s ease,
    transform 5.5s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(116, 74, 44, 0.68) 0%,
      rgba(158, 105, 67, 0.48) 42%,
      rgba(255, 239, 224, 0.12) 100%
    );
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 {
  background-image: url("../assets/hero-parrot-1.webp");
}

.hero-slide-2 {
  background-image: url("../assets/hero-parrot-2.webp");
}

.hero-slide-3 {
  background-image: url("../assets/hero-parrot-3.webp");
}

.hero-slide-4 {
  background-image: url("../assets/hero-parrot-4.webp");
}

.hero .hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-grid,
.sub-hero-grid,
.contact-grid,
.cta-box,
.promise-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.hero .hero-grid {
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0 0 18px;
  color: #ffd2a6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fffaf6;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 28px rgba(61, 36, 18, 0.32);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-desc,
.section-heading p,
.contact-content p,
.sub-hero p,
.about-card p,
.value-card p,
.cta-box p {
  color: var(--text);
}

.hero-desc {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero .hero-desc {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 250, 246, 0.94);
  font-size: 19px;
  line-height: 1.9;
  text-shadow: 0 6px 22px rgba(61, 36, 18, 0.26);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero .hero-actions {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 28px rgba(255, 138, 61, 0.28);
}

.hero .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff9a4d, #ef6c1b);
  box-shadow: 0 14px 34px rgba(255, 138, 61, 0.35);
}

.btn-outline {
  color: var(--primary-dark);
  border: 1px solid rgba(239, 108, 27, 0.28);
  background: var(--white);
}

.hero .btn-outline {
  color: #fffaf6;
  border: 1px solid rgba(255, 240, 228, 0.58);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100% - 1180px) / 2 + 20px));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 30px;
  background: #ff8a3d;
}

.hero-dot:hover {
  background: #ffffff;
}

.hero-stats,
.hero-image-card {
  display: none;
}

.hero-stats div {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--primary-dark);
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-image-card,
.about-image-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-card::before,
.about-image-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.18), rgba(59, 181, 169, 0.16));
  transform: rotate(-4deg);
}

/* Sections */
.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

/* Services - 7 个业务卡片整齐排版 */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.service-card,
.value-card,
.about-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(37, 49, 60, 0.06);
}

.service-card {
  flex: 0 1 calc((100% - 66px) / 4);
  min-height: 330px;
  padding: 30px 24px;
  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  font-size: 28px;
  background: #fff1e5;
}

.service-card p,
.value-card p {
  margin-bottom: 0;
  color: var(--text);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Promise */
.promise-section {
  padding: 46px 0;
}

.promise-box {
  grid-template-columns: 0.8fr 1.2fr;
  padding: 36px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(104, 68, 42, 0.92), rgba(151, 96, 56, 0.86)),
    linear-gradient(135deg, var(--primary), var(--secondary));
}

.promise-box .eyebrow,
.promise-box h2 {
  color: var(--white);
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.promise-list span {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

/* Contact */
.contact-section {
  padding: 56px 0 72px;
  background: #fff8f0;
}

/* 标题区域：独立成整行，真正居中在整个页面模块中 */
.contact-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.contact-heading .eyebrow {
  text-align: center;
}

.contact-heading h2 {
  margin-bottom: 18px;
  text-align: center;
}

.contact-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  text-align: center;
}

/* 下方两个组件：等宽、等高、顶部对齐 */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 32px;
}

/* 兼容旧结构，避免其他页面使用 contact-content 时样式丢失 */
.contact-content {
  padding-top: 0;
  text-align: center;
}

.contact-content .eyebrow,
.contact-content h2,
.contact-content p {
  text-align: center;
}

.contact-content p {
  max-width: 720px;
  margin: 0 auto 28px;
}

/* 线下店铺轮播图 */
.store-slider,
.contact-card {
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(61, 46, 34, 0.12);
  border: 1px solid rgba(37, 49, 60, 0.08);
}

.store-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 766 / 590;
}

.store-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.store-slide.active {
  opacity: 1;
}

.store-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.store-slider-dots {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: 0.25s ease;
}

.store-dot.active {
  width: 28px;
  background: var(--primary);
}

.store-dot:hover {
  background: #ffffff;
}

/* 右侧联系方式卡片 */
.contact-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item span {
  color: var(--muted);
}

.contact-item strong {
  text-align: right;
}

.full-btn {
  width: 100%;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  padding: 28px 0;
  color: #72808e;
  background: #25313c;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-wrap p {
  margin-bottom: 0;
}

/* About page reserved */
.sub-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 86% 18%, rgba(59, 181, 169, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 100%);
}

.sub-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.sub-hero p {
  max-width: 660px;
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.about-card {
  padding: 30px;
}

.large-card {
  grid-row: span 2;
  padding: 40px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 30px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.cta-section {
  padding-top: 30px;
}

.cta-box {
  grid-template-columns: 1fr auto;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: #fff0e3;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid,
  .sub-hero-grid,
  .contact-grid,
  .promise-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero .hero-grid {
    display: block;
  }

  .service-card {
    flex: 0 1 calc((100% - 22px) / 2);
    min-height: 300px;
  }

  .about-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .promise-list {
    justify-content: flex-start;
  }

  .contact-card {
    height: auto;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 620px;
    padding: 76px 0 72px;
  }

  .hero-slide {
    background-position: center center;
  }

  .hero-slide::after {
    background:
      linear-gradient(
        90deg,
        rgba(116, 74, 44, 0.82) 0%,
        rgba(158, 105, 67, 0.68) 54%,
        rgba(218, 171, 128, 0.36) 100%
      );
  }

  .hero-dots {
    left: 14px;
    bottom: 24px;
  }

  .sub-hero {
    padding: 58px 0 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero .hero-desc {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .service-card {
    flex: 0 1 100%;
    min-height: auto;
  }

  .contact-section {
    padding: 44px 0 58px;
  }

  .contact-heading {
    margin-bottom: 26px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-content {
    padding-top: 0;
    text-align: center;
  }

  .contact-content p {
    text-align: center;
  }

  .store-slider {
    height: auto;
    aspect-ratio: 766 / 590;
  }

  .contact-card {
    height: auto;
    margin-top: 0;
    padding: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .about-image-card,
  .contact-card,
  .promise-box,
  .cta-box,
  .large-card,
  .about-card,
  .value-card {
    padding: 24px;
  }

  .contact-item {
    display: block;
  }

  .contact-item strong {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  .footer-wrap {
    flex-direction: column;
  }
}

/* ================= About Page - 翎多熹品牌页同步样式 ================ */
.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 190, 132, 0.28), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(59, 181, 169, 0.13), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 100%);
}

.about-hero-copy p {
  max-width: 740px;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-hero-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fff0e3;
  font-weight: 800;
}

.about-brand-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(37, 49, 60, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.about-brand-card img {
  width: 140px;
  height: auto;
}

.about-brand-card h3 {
  margin-bottom: 10px;
}

.about-brand-card p:last-child {
  margin-bottom: 0;
  color: var(--text);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.about-story-card p:last-child,
.about-principle-card p,
.mission-card p,
.about-feature-card p,
.differentiator-card p,
.team-box p,
.responsibility-card p {
  color: var(--text);
}

.about-principle-card {
  padding: 30px;
}

.about-principle-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.mission-section,
.philosophy-section,
.team-section {
  background: #fffdf9;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mission-card {
  padding: 34px;
}

.highlight-card {
  background: linear-gradient(135deg, #fff5ec, #ffffff);
}

.about-promise-section {
  padding: 46px 0;
}

.about-promise-box {
  margin-top: 0;
}

.about-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-feature-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(37, 49, 60, 0.06);
}

.about-feature-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fff0e3;
  font-size: 16px;
}

.about-feature-card p {
  margin-bottom: 0;
}

.differentiator-section {
  background: #fff8f0;
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.differentiator-card {
  padding: 28px;
  border: 1px solid rgba(37, 49, 60, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(37, 49, 60, 0.06);
}

.differentiator-card h3 {
  font-size: 20px;
}

.differentiator-card p {
  margin-bottom: 0;
}

.team-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(104, 68, 42, 0.94), rgba(151, 96, 56, 0.86)),
    linear-gradient(135deg, var(--primary), var(--secondary));
}

.team-box .eyebrow,
.team-box h2,
.team-box p {
  color: var(--white);
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.team-highlights article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.team-highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1;
}

.team-highlights span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.responsibility-section {
  background: #fff8f0;
}

.responsibility-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.responsibility-card p:last-child {
  margin-bottom: 0;
}

.about-cta-section {
  padding-top: 30px;
}

@media (max-width: 920px) {
  .about-brand-card,
  .about-story-grid,
  .mission-grid,
  .about-feature-grid,
  .differentiator-grid,
  .team-box,
  .team-highlights {
    grid-template-columns: 1fr;
  }

  .about-brand-card {
    text-align: center;
  }

  .about-brand-card img {
    margin: 0 auto;
  }

  .about-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-brand-card,
  .mission-card,
  .about-feature-card,
  .differentiator-card,
  .team-box,
  .responsibility-card {
    padding: 24px;
  }

  .about-hero-tags {
    gap: 8px;
  }

  .about-hero-tags span {
    padding: 8px 12px;
    font-size: 14px;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
  }
}
