:root{--c-primary:#d96c9a;}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap');

:root {
  --rose: #C98B9B;          /* 干玫瑰 */
  --rose-soft: #EBD9DE;     /* 干玫瑰浅调 */
  --sage: #9CAF88;          /* 鼠尾草绿 */
  --sage-soft: #E6ECE0;     /* 鼠尾草绿浅调 */
  --cream: #FBF7F0;         /* 米白 */
  --ochre: #C97B5A;         /* 赭石点缀 */
  --ink: #3B3531;           /* 暖墨（避免纯黑） */
  --warm-gray: #6E655E;     /* 次级文字 */
  --line: rgba(59, 53, 49, 0.12);
  --line-soft: rgba(59, 53, 49, 0.07);
  --shadow-soft: 0 24px 60px rgba(59, 53, 49, 0.08);
  --expo: cubic-bezier(0.19, 1, 0.22, 1);
  --quart: cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 78px;
  --max-width: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  /* 有机形状圆角（不规则） */
  --blob-1: 62% 38% 55% 45% / 55% 48% 52% 45%;
  --blob-2: 45% 55% 42% 58% / 58% 42% 58% 42%;
  --blob-3: 50% 50% 38% 62% / 48% 60% 40% 52%;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

body {
  margin: 0;
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', 'Songti SC', serif;
  font-weight: 400;
  line-height: 1.28;
  margin: 0 0 0.55em;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.2em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--quart);
}

a:hover { color: var(--ochre); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 14px 0;
}
.skip-link:focus {
  left: 0;
  color: var(--cream);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 118px 0; }

.section-compact { padding: 84px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 16px;
}

.kicker.sage { color: var(--sage); }

.section-title { margin-bottom: 18px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.95;
}

.divider {
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--rose);
  margin: 22px auto;
}
.divider.left { margin-left: 0; margin-right: auto; }
.divider.ochre { background-color: var(--ochre); }

.bg-sage { background-color: var(--sage-soft); }
.bg-rose { background-color: var(--rose-soft); }
.bg-cream { background-color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 34px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  border-radius: 40px;
  transition: background-color 0.4s var(--quart), color 0.4s var(--quart), border-color 0.4s var(--quart), transform 0.4s var(--quart);
}

.btn-primary {
  background-color: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.btn-primary:hover {
  background-color: #8a9d76;
  border-color: #8a9d76;
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-rose {
  background-color: var(--rose);
  color: var(--cream);
  border-color: var(--rose);
}
.btn-rose:hover {
  background-color: #bb7c8c;
  border-color: #bb7c8c;
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background-color: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.4s var(--quart), border-color 0.4s var(--quart);
}
.text-link::after { content: '\2192'; transition: transform 0.4s var(--quart); }
.text-link:hover { color: var(--ochre); border-bottom-color: var(--ochre); }
.text-link:hover::after { transform: translateX(5px); }

.text-ochre { color: var(--ochre); }
.mt-lg { margin-top: 48px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: rgba(251, 247, 240, 0.8);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--quart), border-color 0.4s var(--quart), box-shadow 0.4s var(--quart);
}
.header.scrolled {
  background-color: rgba(251, 247, 240, 0.97);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(59, 53, 49, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.18; }
.brand-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  color: var(--ink);
}
.brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--warm-gray);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 6px 0;
  color: var(--ink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  border-radius: 2px;
  background-color: var(--rose);
  transition: width 0.45s var(--expo);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--rose); }

.menu-toggle {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  background: none; border: none; padding: 0;
}
.menu-toggle span {
  display: block;
  position: absolute;
  left: 0; width: 100%; height: 2px;
  border-radius: 2px;
  background-color: var(--ink);
  transition: transform 0.4s var(--quart), opacity 0.3s var(--quart);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- Organic media ---------- */
.organic {
  position: relative;
  overflow: visible;
}
.organic-img {
  border-radius: var(--blob-1);
  overflow: hidden;
}
.organic-img img { width: 100%; height: 100%; object-fit: cover; }
.organic .blob-back {
  position: absolute;
  z-index: -1;
  border-radius: var(--blob-2);
}
.blob-sage { background-color: var(--sage-soft); }
.blob-rose { background-color: var(--rose-soft); }
.blob-ochre { background-color: rgba(201, 123, 90, 0.16); }

/* ---------- Hero (asymmetric) ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.16em;
  color: var(--ochre);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.14em;
  margin-top: 14px;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 2;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  min-height: 480px;
}
.hero-media .organic-img {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 100%;
  border-radius: var(--blob-1);
  box-shadow: var(--shadow-soft);
}
.hero-media .blob-back {
  top: -28px; left: -24px;
  width: 56%; height: 70%;
  border-radius: var(--blob-2);
  background-color: var(--sage-soft);
}
.hero-media .blob-ochre {
  bottom: -22px; right: 6px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background-color: rgba(201, 123, 90, 0.18);
}
.hero-media .float-tag {
  position: absolute;
  bottom: 26px; left: -6px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* hero decorative blobs */
.hero-deco {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.hero-deco.d1 { top: 8%; left: -60px; width: 180px; height: 180px; background-color: var(--rose-soft); }
.hero-deco.d2 { bottom: 6%; right: 4%; width: 120px; height: 120px; background-color: var(--sage-soft); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .organic-img {
  border-radius: var(--blob-3);
  box-shadow: var(--shadow-soft);
}
.split-media .blob-back {
  bottom: -26px; right: -22px;
  width: 50%; height: 64%;
  border-radius: var(--blob-1);
}
.split-content .kicker { margin-bottom: 16px; }
.split-content h2 { margin-bottom: 22px; }
.split-content p { color: var(--warm-gray); margin-bottom: 22px; }
.split-content .text-link { margin-top: 6px; }

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.svc-card {
  position: relative;
  background-color: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: 34px 32px 38px;
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo), box-shadow 0.5s var(--expo);
}
.svc-card:hover {
  border-color: var(--rose);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.svc-card .svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: 18px;
  display: block;
}
.svc-card .svc-ico {
  width: 54px; height: 54px;
  border-radius: 50%;
  background-color: var(--sage-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-card .svc-ico span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--sage);
}
.svc-card h3 { margin-bottom: 12px; }
.svc-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ---------- Scattered gallery ---------- */
.scatter {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
}
.scatter .sc-1 { grid-column: 1 / 6; border-radius: var(--blob-2); overflow: hidden; box-shadow: var(--shadow-soft); }
.scatter .sc-2 { grid-column: 7 / 13; margin-top: 60px; border-radius: var(--blob-1); overflow: hidden; box-shadow: var(--shadow-soft); }
.scatter .sc-cap {
  grid-column: 1 / 13;
  text-align: center;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}

/* ---------- Subscription / custom bouquet ---------- */
.subscribe {
  position: relative;
  background-color: var(--sage);
  color: var(--cream);
  border-radius: 40px;
  padding: 70px clamp(28px, 6vw, 80px);
  overflow: hidden;
}
.subscribe .blob-deco {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(251, 247, 240, 0.12);
}
.subscribe .bd1 { top: -60px; right: -40px; width: 200px; height: 200px; }
.subscribe .bd2 { bottom: -70px; left: -50px; width: 240px; height: 240px; }
.subscribe-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.subscribe h2 { color: var(--cream); margin-bottom: 14px; }
.subscribe p { color: rgba(251, 247, 240, 0.85); margin-bottom: 0; max-width: 460px; }
.subscribe-form { display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe-form input {
  flex: 1 1 200px;
  min-height: 52px;
  padding: 0 20px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid transparent;
  border-radius: 40px;
}
.subscribe-form input::placeholder { color: var(--warm-gray); }
.subscribe-form .btn {
  background-color: var(--ochre);
  color: var(--cream);
  border-color: var(--ochre);
}
.subscribe-form .btn:hover { background-color: #b56c4d; border-color: #b56c4d; }
.subscribe .form-note { font-size: 0.82rem; color: rgba(251, 247, 240, 0.7); margin-top: 16px; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-label { font-size: 0.92rem; letter-spacing: 0.08em; color: var(--warm-gray); }

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.quote-card {
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: 40px 34px;
  background-color: var(--cream);
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo);
}
.quote-card:hover { border-color: var(--sage); transform: translateY(-5px); }
.quote-card .mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.55;
  margin-bottom: 20px;
  display: block;
}
.quote-card p { font-size: 0.96rem; color: var(--warm-gray); line-height: 1.95; margin-bottom: 26px; }
.quote-card .author { font-family: 'Noto Serif SC', serif; font-size: 0.95rem; color: var(--ink); }

/* ---------- CTA booking ---------- */
.cta {
  background-color: var(--rose-soft);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-content h2 { margin-bottom: 18px; }
.cta-content p { color: var(--warm-gray); max-width: 500px; }
.cta-content .divider { margin-left: 0; margin-right: auto; }

.booking-form {
  background-color: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.35s var(--quart);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--rose); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--ochre); margin-top: 14px; }

/* ---------- Page header ---------- */
.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--sage-soft);
  color: var(--ink);
  overflow: hidden;
  padding-top: var(--header-height);
  padding-bottom: 40px;
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  border-radius: 0 0 48px 48px;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(230,236,224,0.4), rgba(251,247,240,0.2));
}
.page-header-content { position: relative; z-index: 2; padding: 0 var(--gutter); }
.page-header .kicker { color: var(--ochre); }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--warm-gray); font-size: 1.02rem; max-width: 560px; margin: 0 auto; }

/* ---------- Process timeline ---------- */
.process-list { display: grid; gap: 30px; max-width: 820px; margin: 0 auto; }
.process-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  align-items: start;
}
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-color: var(--rose-soft);
  color: var(--rose);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
}
.process-content h4 { margin-bottom: 6px; }
.process-content p { color: var(--warm-gray); font-size: 0.96rem; line-height: 1.85; margin: 0; }

/* ---------- Feature list ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 36px 30px;
  background-color: var(--cream);
  transition: border-color 0.4s var(--quart), transform 0.5s var(--expo);
}
.feature-card:hover { border-color: var(--sage); transform: translateY(-4px); }
.feature-card .f-ico {
  width: 50px; height: 50px; border-radius: 50%;
  background-color: var(--sage-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--sage);
  margin-bottom: 18px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.8; margin: 0; }

/* ---------- Cases ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.case-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  background-color: var(--cream);
  overflow: hidden;
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo), box-shadow 0.5s var(--expo);
}
.case-card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.case-card-img { overflow: hidden; }
.case-card-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.7s var(--expo); }
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-body { padding: 26px 30px 32px; }
.case-body .case-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem; letter-spacing: 0.12em; color: var(--ochre);
  margin-bottom: 10px; display: block;
}
.case-body h3 { margin-bottom: 10px; }
.case-body p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.78; margin: 0; }

/* ---------- News ---------- */
.news-list { max-width: 880px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--quart);
}
.news-item:hover { border-bottom-color: var(--rose); }
.news-date { font-family: 'Cormorant Garamond', serif; color: var(--rose); }
.news-date .day { font-size: 2.2rem; line-height: 1; display: block; }
.news-date .month { font-size: 0.82rem; letter-spacing: 0.1em; }
.news-title { font-size: 1.25rem; margin-bottom: 6px; transition: color 0.35s var(--quart); }
.news-item:hover .news-title { color: var(--rose); }
.news-excerpt { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.8; margin: 0; }
.news-arrow { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--line); transition: color 0.35s var(--quart), transform 0.35s var(--quart); }
.news-item:hover .news-arrow { color: var(--rose); transform: translateX(4px); }

/* ---------- Article ---------- */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin-bottom: 1.7em; color: var(--ink); }
.article-body h2, .article-body h3 { margin-top: 1.6em; margin-bottom: 0.7em; }
.article-body img { width: 100%; border-radius: 22px; margin: 36px 0; }
.article-meta { text-align: center; color: var(--warm-gray); font-size: 0.9rem; margin-bottom: 44px; }
.article-body ul { margin-bottom: 1.7em; padding-left: 1.4em; list-style: disc; color: var(--warm-gray); }
.article-body blockquote {
  border-left: 3px solid var(--rose);
  padding-left: 24px; margin: 36px 0;
  color: var(--warm-gray); font-style: italic;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { margin-bottom: 18px; }
.contact-info .intro { color: var(--warm-gray); margin-bottom: 30px; }
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .label { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--warm-gray); margin-bottom: 4px; }
.contact-info-item .value { font-size: 1.05rem; color: var(--ink); }
.contact-card {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 28px;
  background-color: var(--sage-soft);
  margin-top: 34px;
}
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { font-size: 0.92rem; color: var(--warm-gray); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  text-align: left;
  background: none; border: none; color: var(--ink);
  transition: color 0.35s var(--quart);
}
.faq-question:hover { color: var(--rose); }
.faq-question[aria-expanded="true"] { color: var(--rose); }
.faq-question .icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; margin-left: 20px; }
.faq-question .icon::before, .faq-question .icon::after {
  content: ''; position: absolute; background-color: currentColor; transition: transform 0.4s var(--quart);
}
.faq-question .icon::before { top: 8px; left: 0; width: 100%; height: 1px; }
.faq-question .icon::after { top: 0; left: 8px; width: 1px; height: 100%; }
.faq-item.open .faq-question .icon::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--expo), padding 0.4s var(--quart); }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { color: var(--warm-gray); font-size: 0.95rem; line-height: 1.85; margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background-color: #2E2A27;
  color: rgba(251, 247, 240, 0.7);
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251, 247, 240, 0.08);
}
.footer-brand .brand-name { color: var(--cream); margin-bottom: 6px; }
.footer-brand .brand-en { color: rgba(251, 247, 240, 0.5); margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.85; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.12em; color: var(--cream); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(251, 247, 240, 0.7); }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 0.8rem; color: rgba(251, 247, 240, 0.45);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--expo), transform 0.85s var(--expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  a, button, .btn, .svc-card, .case-card, .quote-card, .news-item, .feature-card { transition: none; }
}

/* ---------- Responsive 1280 ---------- */
@media (max-width: 1280px) {
  .section { padding: 100px 0; }
  .hero-inner, .split, .cta-inner, .contact-grid, .subscribe-inner { gap: 48px; }
  .nav-links { gap: 28px; }
}

/* ---------- Responsive 768 ---------- */
@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .section { padding: 76px 0; }
  .section-header { margin-bottom: 42px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 36px;
    background-color: rgba(251, 247, 240, 0.98);
    border-top: 1px solid var(--line-soft);
    transform: translateX(100%);
    transition: transform 0.5s var(--expo);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.05rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { min-height: 360px; order: -1; }
  .hero-media .organic-img { width: 100%; position: relative; height: 360px; }
  .hero-media .blob-back, .hero-media .blob-ochre, .hero-media .float-tag { display: none; }
  .split, .cta-inner, .contact-grid, .subscribe-inner { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .svc-grid, .quote-grid, .case-grid, .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .scatter { gap: 18px; }
  .scatter .sc-1, .scatter .sc-2 { grid-column: 1 / 13; margin-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .subscribe { border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ---------- Responsive 375 ---------- */
@media (max-width: 375px) {
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  .svc-card, .booking-form, .quote-card, .case-body, .feature-card { padding-left: 22px; padding-right: 22px; }
  .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .news-arrow { display: none; }
  .process-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-num { width: 52px; height: 52px; font-size: 1.4rem; }
}


/* ===== CMS helpers ===== */
.form-alert{padding:12px 16px;border-radius:8px;margin:0 0 16px;font-size:.92rem;line-height:1.6}
.form-alert-ok{background:rgba(46,160,67,.08);border:1px solid rgba(46,160,67,.35);color:#2ea043}
.form-alert-err{background:rgba(220,53,69,.08);border:1px solid rgba(220,53,69,.35);color:#dc3545}
.form-alert ul{margin:0;padding-left:18px}
.cms-pager{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:44px 0 0}
.cms-pager a,.cms-pager span{min-width:38px;padding:8px 13px;border:1px solid rgba(128,128,128,.35);border-radius:6px;text-align:center;text-decoration:none;color:inherit}
.cms-pager .active{background:var(--c-primary);border-color:var(--c-primary);color:#fff}
.detail-page{max-width:1100px;margin:0 auto;padding:72px 24px}
.detail-media{width:100%;max-height:520px;object-fit:cover;border-radius:14px;margin-bottom:26px;display:block}
.detail-title{font-size:clamp(26px,3vw,38px);line-height:1.3;margin-bottom:12px}
.detail-meta{color:#777;font-size:.95rem;margin-bottom:20px}
.detail-body{line-height:1.9;color:#444}
.detail-body p{margin-bottom:1em}
.detail-body img{max-width:100%;height:auto;border-radius:10px}
.detail-back{display:inline-block;margin-top:28px;padding:11px 26px;border:1px solid rgba(128,128,128,.4);border-radius:999px;text-decoration:none;color:inherit}
/* ===== 深色 banner 标题白字（避免 h1 与背景同色不可读） ===== */
.banner--ink h1,.banner--purple h1,.banner--coral h1{color:#fff}
/* ===== 阅读全文按钮（硬边 neo-brutalist 风格） ===== */
.news-item .more{display:inline-block;margin-top:14px;padding:10px 20px;background:var(--c-ink);color:#fff;border:var(--border-2);box-shadow:var(--shadow-sm);font-family:var(--font-en);font-weight:800;font-size:.85rem;letter-spacing:.02em;text-decoration:none;transition:transform .12s ease,box-shadow .12s ease,background .12s ease}
.news-item .more:hover{background:var(--c-coral);transform:translate(-2px,-2px);box-shadow:var(--shadow)}
/* ===== 留言板一行一个 input（01 翰墨轩） ===== */
.form-grid{grid-template-columns:1fr}
