:root{--c-primary:#c0392b;}
@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 {
  --wine: #6E1423;
  --wine-deep: #4A0E18;
  --gold: #C9A24B;
  --gold-deep: #A8842F;
  --ivory: #F7F1E6;
  --paper: #FCF8F0;
  --brown: #2A1A14;
  --brown-soft: #5A463C;
  --line: rgba(42, 26, 20, 0.14);
  --line-light: rgba(247, 241, 230, 0.22);
  --shadow-soft: 0 22px 55px rgba(42, 26, 20, 0.12);
  --expo: cubic-bezier(0.19, 1, 0.22, 1);
  --quart: cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 84px;
  --max-width: 1180px;
  --gutter: clamp(20px, 4vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brown);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section[id] { scroll-margin-top: var(--header-height); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-weight: 400;
  line-height: 1.28;
  margin: 0 0 0.55em;
  color: var(--brown);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 1.9vw, 1.7rem); }
h4 { font-size: 1.18rem; }

p { margin: 0 0 1.2em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.35s var(--quart);
}

a:hover { color: var(--gold-deep); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  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: 16px;
  top: -120px;
  z-index: 2000;
  padding: 12px 22px;
  background-color: var(--wine);
  color: var(--ivory);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: top 0.3s var(--quart);
}
.skip-link:focus-visible { top: 14px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 116px 0; }
.section-compact { padding: 80px 0; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }

.kicker {
  display: block;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.section-title { margin-bottom: 18px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.95;
}

/* Gold ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 26px auto;
}
.ornament-line {
  width: clamp(36px, 11vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, var(--gold));
}
.ornament-line.right { background: linear-gradient(270deg, transparent, var(--gold) 60%, var(--gold)); }
.ornament-mark {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background-color: var(--gold);
  flex-shrink: 0;
}
.ornament-mark.round {
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.ornament-text {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  color: var(--gold-deep);
  font-size: 1rem;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
}

/* Thin gold divider (kept for compatibility) */
.divider-line {
  width: 64px;
  height: 1px;
  background-color: var(--gold);
  margin: 24px auto;
}
.divider-line.light { background-color: var(--line-light); }
.divider-line.left { margin-left: 0; margin-right: auto; }

.bg-ivory-2 { background-color: var(--paper); }
.bg-wine { background-color: var(--wine); color: var(--ivory); }
.bg-wine h2, .bg-wine h3, .bg-wine h4 { color: var(--ivory); }
.bg-wine .kicker { color: var(--gold); }
.bg-wine .section-subtitle { color: rgba(247, 241, 230, 0.78); }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.45s var(--quart), border-color 0.45s var(--quart), box-shadow 0.45s var(--quart);
}
.header.scrolled {
  background-color: var(--wine);
  border-bottom-color: rgba(201, 162, 75, 0.4);
  box-shadow: 0 8px 30px rgba(42, 26, 20, 0.18);
}
.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.2; }
.brand-name {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--ivory);
}
.brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: rgba(247, 241, 230, 0.7);
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 38px; }
.nav-links a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 6px 0;
  color: var(--ivory);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background-color: var(--gold);
  transition: width 0.45s var(--expo);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.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;
  background-color: var(--ivory);
  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); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--wine-deep);
  padding-top: var(--header-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(74, 14, 24, 0.55) 0%, rgba(42, 26, 20, 0.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 880px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: italic;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ivory);
  margin-bottom: 10px;
}
.hero-title small {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.4em;
  font-style: italic;
  letter-spacing: 0.22em;
  margin-top: 16px;
  opacity: 0.85;
  color: var(--gold);
}
.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  color: rgba(247, 241, 230, 0.88);
  max-width: 560px;
  line-height: 2;
  margin: 8px 0 38px;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 38px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  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(--gold);
  color: var(--wine-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background-color: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--wine-deep);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  color: var(--ivory);
  border-color: rgba(247, 241, 230, 0.55);
}
.btn-outline:hover {
  background-color: var(--ivory);
  color: var(--wine);
  border-color: var(--ivory);
}
.btn-wine {
  background-color: var(--wine);
  color: var(--ivory);
  border-color: var(--wine);
}
.btn-wine:hover {
  background-color: transparent;
  color: var(--wine);
  border-color: var(--wine);
}

/* Split section */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img { width: 100%; object-fit: cover; }
.split-media::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split-content .kicker { margin-bottom: 18px; }
.split-content h2 { margin-bottom: 22px; }
.split-content p { color: var(--brown-soft); margin-bottom: 22px; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 46px 36px;
  background-color: var(--paper);
  text-align: center;
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo), box-shadow 0.5s var(--expo);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-card .card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.service-card h3 { margin-bottom: 14px; color: var(--wine); }
.service-card p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.85;
  margin-bottom: 26px;
}
.card-link {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--wine);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 0.4s var(--quart), color 0.4s var(--quart);
}
.card-link:hover { color: var(--gold-deep); border-bottom-color: var(--gold); }
.service-card-img { margin: -46px -36px 28px; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.7s var(--expo);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* Wedding timeline */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 39px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tl-stage { text-align: center; }
.tl-node {
  width: 78px; height: 78px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background-color: var(--ivory);
  color: var(--wine);
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
.tl-stage h3 { color: var(--wine); margin-bottom: 12px; }
.tl-stage > p { color: var(--brown-soft); font-size: 0.95rem; margin-bottom: 18px; }
.tl-steps {
  display: inline-block;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.tl-steps li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--brown-soft);
  margin-bottom: 10px;
  line-height: 1.6;
}
.tl-steps li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 7px; height: 7px;
  background-color: var(--gold);
  transform: rotate(45deg);
}

/* Stats */
.stats-section { background-color: var(--wine); color: var(--ivory); padding: 92px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-label { font-size: 0.92rem; letter-spacing: 0.1em; color: rgba(247, 241, 230, 0.8); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  border: 1px solid var(--line);
  padding: 44px 38px;
  background-color: var(--paper);
  transition: border-color 0.45s var(--quart);
}
.testimonial-card:hover { border-color: var(--gold); }
.testimonial-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 14px;
}
.testimonial-card p { font-size: 0.95rem; color: var(--brown-soft); line-height: 1.95; margin-bottom: 24px; }
.testimonial-author { font-family: 'Noto Serif SC', serif; font-size: 0.95rem; color: var(--wine); }

/* CTA / Booking */
.cta-section { background-color: var(--paper); padding: 104px 0; }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-content h2 { margin-bottom: 20px; color: var(--wine); }
.cta-content p { color: var(--brown-soft); max-width: 520px; }
.cta-content .btn { margin-top: 14px; }
.booking-form { background-color: var(--ivory); border: 1px solid var(--line); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--brown-soft);
  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(--brown);
  background-color: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--quart);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); outline: none; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--gold-deep); margin-top: 14px; }
.text-note { font-size: 0.9rem; color: var(--gold-deep); }

/* Page header */
.page-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--wine-deep);
  color: var(--ivory);
  overflow: hidden;
  padding-top: var(--header-height);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.page-header-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(42, 26, 20, 0.45); }
.page-header-content { position: relative; z-index: 2; padding: 0 var(--gutter); }
.page-header h1 { color: var(--ivory); margin-bottom: 12px; }
.page-header p { color: rgba(247, 241, 230, 0.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Cases */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-card {
  position: relative;
  border: 1px solid var(--line);
  background-color: var(--paper);
  transition: border-color 0.45s var(--quart), transform 0.5s var(--expo), box-shadow 0.5s var(--expo);
}
.case-card:hover { border-color: var(--gold); transform: translateY(-5px); 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-card-body { padding: 28px 30px 34px; }
.case-card-body .case-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 10px;
  display: block;
}
.case-card-body h3 { margin-bottom: 10px; color: var(--wine); }
.case-card-body p { font-size: 0.9rem; color: var(--brown-soft); line-height: 1.78; margin: 0 0 18px; }

/* News */
.news-list { max-width: 900px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.4s var(--quart);
}
.news-item:hover { border-bottom-color: var(--gold); }
.news-date { font-family: 'Cormorant Garamond', serif; color: var(--gold-deep); }
.news-date .day { font-size: 2.4rem; line-height: 1; display: block; }
.news-date .month { font-size: 0.85rem; letter-spacing: 0.12em; }
.news-title { font-size: 1.3rem; margin-bottom: 8px; color: var(--wine); transition: color 0.35s var(--quart); }
.news-item:hover .news-title { color: var(--gold-deep); }
.news-excerpt { font-size: 0.95rem; color: var(--brown-soft); line-height: 1.8; margin: 0; }

/* Article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { margin-bottom: 1.8em; color: var(--brown); }
.article-body h2, .article-body h3 { margin-top: 1.8em; margin-bottom: 0.8em; color: var(--wine); }
.article-body img { width: 100%; margin: 40px 0; }
.article-meta { text-align: center; color: var(--brown-soft); font-size: 0.92rem; margin-bottom: 44px; letter-spacing: 0.04em; }
.article-body ul { margin-bottom: 1.8em; padding-left: 1.5em; list-style: disc; color: var(--brown-soft); }
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 40px 0;
  color: var(--wine);
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
  font-size: 1.25rem;
  line-height: 1.7;
}
.inline-stats { margin: 40px 0; }
.stats-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stats-grid.cols-3 .stat-num { color: var(--gold-deep); }
.stats-grid.cols-3 .stat-label { color: var(--brown-soft); }

/* 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.08rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--wine);
  transition: color 0.35s var(--quart);
}
.faq-question:hover { color: var(--gold-deep); }
.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(--brown-soft); font-size: 0.95rem; line-height: 1.85; margin: 0; }

/* Process (service detail) */
.process-list { display: grid; gap: 30px; }
.process-item { display: grid; grid-template-columns: 84px 1fr; gap: 32px; align-items: start; }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--gold-deep); line-height: 1; }
.process-content h4 { margin-bottom: 8px; color: var(--wine); }
.process-content p { color: var(--brown-soft); font-size: 0.95rem; line-height: 1.85; margin: 0; }

/* Qualifications */
.qual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.qual-item { border: 1px solid var(--line); padding: 32px 24px; text-align: center; transition: border-color 0.4s var(--quart); }
.qual-item:hover { border-color: var(--gold); }
.qual-item h4 { font-size: 1rem; margin-bottom: 8px; color: var(--wine); }
.qual-item p { font-size: 0.85rem; color: var(--brown-soft); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { margin-bottom: 20px; color: var(--wine); }
.contact-info .intro { color: var(--brown-soft); margin-bottom: 30px; }
.contact-info .btn { margin-top: 22px; }
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .label { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--gold-deep); margin-bottom: 4px; }
.contact-info-item .value { font-size: 1.08rem; color: var(--brown); }
.store-list { display: grid; gap: 22px; margin-top: 38px; }
.store-card { border: 1px solid var(--line); padding: 26px 28px; transition: border-color 0.4s var(--quart); }
.store-card:hover { border-color: var(--gold); }
.store-card h4 { margin-bottom: 10px; color: var(--wine); }
.store-card p { font-size: 0.9rem; color: var(--brown-soft); margin: 0 0 4px; }

/* Footer */
.footer { background-color: var(--wine-deep); color: rgba(247, 241, 230, 0.72); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.22);
}
.footer-brand .brand-name { color: var(--ivory); margin-bottom: 6px; font-size: 1.4rem; }
.footer-brand .brand-en { color: rgba(247, 241, 230, 0.5); margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.9; max-width: 320px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 22px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(247, 241, 230, 0.72); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(247, 241, 230, 0.45);
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--expo), transform 0.8s 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; }
  .hero-bg, .page-header-bg { animation: none; }
  a, button, .btn, .service-card, .case-card, .news-item { transition: none; }
}

/* Responsive 1280px */
@media (max-width: 1280px) {
  .section { padding: 96px 0; }
  .split-section, .cta-inner, .contact-grid { gap: 52px; }
  .nav-links { gap: 28px; }
  .timeline { gap: 32px; }
  .timeline::before { left: 18%; right: 18%; }
}

/* Responsive 768px */
@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .section { padding: 76px 0; }
  .section-header { margin-bottom: 44px; }
  .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: var(--wine);
    border-top: 1px solid rgba(201, 162, 75, 0.3);
    transform: translateX(100%);
    transition: transform 0.5s var(--expo);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { display: block; padding: 18px 0; font-size: 1.05rem; }
  .split-section, .cta-inner, .contact-grid { grid-template-columns: 1fr; }
  .split-media::after { display: none; }
  .service-grid, .case-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid, .qual-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn { width: 100%; }

  /* Timeline → vertical */
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before {
    top: 0; bottom: 0; left: 39px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }
  .tl-stage { display: grid; grid-template-columns: 78px 1fr; gap: 22px; text-align: left; align-items: start; }
  .tl-node { margin: 0; }
  .tl-stage > p { margin-bottom: 12px; }
  .tl-steps { padding-top: 12px; }
}

/* Responsive 375px */
@media (max-width: 375px) {
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  .service-card, .booking-form, .case-card-body, .testimonial-card { padding-left: 22px; padding-right: 22px; }
  .service-card-img { margin-left: -22px; margin-right: -22px; }
  .stats-grid, .qual-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tl-stage { grid-template-columns: 60px 1fr; gap: 16px; }
  .tl-node { width: 60px; height: 60px; 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}
