/*
  CSS structure
  01 Base reset and shared public components
  02 Legacy shared pieces still used by article/dynamic cards
  03 Agency homepage and inner pages
  04 Page-specific agency sections
  05 Mobile-only overrides
*/

:root {
  --red: #9e1f1f;
  --red-dark: #641414;
  --gold: #b8893f;
  --ink: #24201d;
  --muted: #6d625a;
  --paper: #fffaf2;
  --soft: #f5efe4;
  --line: #e4d7c5;
  --white: #ffffff;
  --green-gray: #61706a;
  --shadow-sm: 0 10px 24px rgba(42, 30, 20, 0.08);
  --shadow: 0 18px 40px rgba(42, 30, 20, 0.12);
  --shadow-lg: 0 24px 58px rgba(42, 30, 20, 0.16);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(158, 31, 31, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(184, 137, 63, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
}

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

.yd-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  color: var(--agency-red, var(--red));
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.yd-icon--gold {
  color: #b89055;
}

.yd-icon--large {
  width: 44px;
  height: 44px;
  stroke-width: 1.4;
}

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

a,
button,
input,
textarea,
select {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[contenteditable="true"]:focus-visible {
  outline: 3px solid rgba(184, 137, 63, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 42px);
  min-height: 104px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(158, 31, 31, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(42, 30, 20, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 92px;
  height: auto;
  border-radius: 8px;
  transition: transform 220ms var(--ease);
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 0;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.site-nav a:hover,
body[data-page="home"] .site-nav a[data-nav="home"],
body[data-page="services"] .site-nav a[data-nav="services"],
body[data-page="activity"] .site-nav a[data-nav="activity"],
body[data-page="products"] .site-nav a[data-nav="products"],
body[data-page="cases"] .site-nav a[data-nav="cases"],
body[data-page="news"] .site-nav a[data-nav="news"],
body[data-page="about"] .site-nav a[data-nav="about"],
body[data-page="contact"] .site-nav a[data-nav="contact"] {
  color: var(--red);
}

.site-nav a:hover::after,
body[data-page="home"] .site-nav a[data-nav="home"]::after,
body[data-page="services"] .site-nav a[data-nav="services"]::after,
body[data-page="activity"] .site-nav a[data-nav="activity"]::after,
body[data-page="products"] .site-nav a[data-nav="products"]::after,
body[data-page="cases"] .site-nav a[data-nav="cases"]::after,
body[data-page="news"] .site-nav a[data-nav="news"]::after,
body[data-page="about"] .site-nav a[data-nav="about"]::after,
body[data-page="contact"] .site-nav a[data-nav="contact"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) clamp(20px, 4vw, 44px);
}

.stat:focus-visible {
  outline: 3px solid rgba(184, 137, 63, 0.38);
  outline-offset: 3px;
}

.text-link {
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.service-card:hover,
.values-grid article:hover,
.prepare-grid div:hover,
.process-grid div:hover,
.audience-grid article:hover,
.package-grid article:hover,
.trust-grid article:hover,
.case-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 63, 0.48);
  box-shadow: var(--shadow-lg);
}

.trust-intro p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.service-card p,
.values-grid p,
.prepare-grid p,
.process-grid p,
.case-card p,
.case-showcase p,
.contact-panel p,
.qr-panel p,
.about-layout p,
.article-card p,
.article-detail p {
  margin: 0;
  color: var(--muted);
}

.case-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-card div {
  padding: 22px;
}

.case-card h3 {
  margin: 6px 0 0;
  font-size: 21px;
  line-height: 1.35;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.product-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.product-showcase {
  display: grid;
  gap: 28px;
}

.product-showcase article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1fr;
  gap: 30px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.product-showcase article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), rgba(184, 137, 63, 0.2));
  opacity: 0.78;
}

.product-showcase article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 137, 63, 0.5);
  box-shadow: var(--shadow-lg);
}

.product-showcase article[hidden] {
  display: none;
}

.product-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 12px 28px rgba(42, 30, 20, 0.12);
}

.product-showcase h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.25;
}

.product-showcase p {
  margin: 0;
  color: var(--muted);
}

.product-showcase ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
  color: var(--green-gray);
}

.product-showcase li {
  padding-left: 2px;
}

.product-showcase strong {
  color: var(--red-dark);
}

.case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-filter-bar button {
  min-height: 44px;
  padding: 8px 14px;
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.case-filter-bar button.active,
.case-filter-bar button:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(158, 31, 31, 0.16);
}

.case-filter-bar button:active {
  transform: scale(0.98);
}

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

.article-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 22px;
}

.article-card div > p:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  color: var(--red-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.article-card h2,
.article-card h3 {
  margin: 6px 0 10px;
  font-size: 23px;
  line-height: 1.35;
}

.article-detail {
  max-width: 900px;
}

.article-detail img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin: 24px 0;
}

.article-detail h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.2;
}

.article-content {
  margin-top: 24px;
  font-size: 18px;
}

.article-content img {
  max-width: 100%;
}

.article-content .lead {
  padding: 18px 20px;
  color: var(--red-dark);
  background: var(--soft);
  border-left: 4px solid var(--gold);
  font-size: 20px;
}

.article-content h2 {
  margin: 30px 0 12px;
  font-size: 26px;
  line-height: 1.3;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding-left: 22px;
  color: var(--green-gray);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--red);
}

.mobile-consult-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(42, 30, 20, 0.22);
}

.mobile-consult-bar a {
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--red-dark);
  font-weight: 800;
  border-right: 1px solid var(--line);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.mobile-consult-bar a:active {
  background: var(--soft);
}

.mobile-consult-bar a:last-child {
  color: var(--white);
  background: var(--red);
  border-right: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #211b18;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a,
.site-footer span {
  display: block;
  text-align: right;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.reveal-item.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
*,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

.reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
.service-list h2,
  .case-showcase h2,
  .product-showcase h2 {
    font-size: 28px;
  }

.nav-toggle {
    display: block;
  }

.site-nav {
    position: fixed;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

.site-nav.is-open {
    display: flex;
  }

.site-nav a {
    padding: 13px 8px;
  }

.section-band,
  .service-grid,
  .case-grid,
  .article-grid,
  .values-grid,
  .prepare-grid,
  .process-grid,
  .audience-grid,
  .package-grid,
  .trust-grid,
  .trust-section,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

.case-showcase article,
  .case-showcase article:nth-child(even) img,
  .product-hero,
  .product-showcase article {
    grid-template-columns: 1fr;
    order: initial;
  }
}

@media (max-width: 640px) {
.site-header {
    padding: 0 16px;
    min-height: 96px;
  }

.site-nav {
    top: 96px;
  }

.brand-logo {
    width: 82px;
  }

.section-band,
  .service-grid,
  .case-grid,
  .article-grid,
  .values-grid,
  .prepare-grid,
  .process-grid,
  .audience-grid,
  .package-grid,
  .trust-grid,
  .trust-section,
  .about-layout,
  .contact-layout,
  .service-list article {
    grid-template-columns: 1fr;
  }

.split-head,
  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

.site-footer a,
  .site-footer span {
    text-align: left;
  }

.product-showcase article {
    padding: 16px;
  }

body {
    padding-bottom: 78px;
  }

.mobile-consult-bar {
    display: grid;
  }
}

body {
  color: var(--yd-ink);
  background:
    linear-gradient(90deg, rgba(42, 41, 38, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(42, 41, 38, 0.035) 1px, transparent 1px),
    var(--yd-paper);
  background-size: 32px 32px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  overflow-x: hidden;
}

.site-header {
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(24, 24, 22, 0.92);
  border-bottom: 1px solid rgba(185, 154, 100, 0.2);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 96px;
  border-radius: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a::after {
  left: 12px;
  right: 12px;
  bottom: 2px;
  background: var(--yd-red);
}

.header-cta {
  min-height: 38px;
  padding: 0 18px;
  color: #fff;
  background: var(--yd-red);
  border: 1px solid rgba(185, 154, 100, 0.38);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--yd-red-2);
}

.nav-toggle span {
  background: #fff;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(244, 240, 232, 0.42);
  border-radius: 4px;
}

.section,
.page-hero,
.article-detail {
  max-width: var(--yd-max);
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 32px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yd-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy-block h1,
.page-hero h1,
.section-head h2,
.split-head h2,
.article-detail h1,
.brand-statement h2 {
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy-block > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.section-head h2,
.split-head h2,
.page-hero h1,
.article-detail h1 {
  color: var(--yd-ink);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

.service-feature-grid,
.service-table,
.product-showcase,
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-feature-grid article,
.service-index,
.service-table article,
.case-card,
.product-showcase article,
.article-card,
.contact-panel,
.message-form,
.method-grid article,
.activity-types article {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--yd-line);
  border-radius: var(--yd-radius);
  box-shadow: 0 2px 8px rgba(24, 24, 22, 0.06);
}

.service-feature-grid article,
.service-table article,
.method-grid article,
.activity-types article {
  padding: 24px;
}

.service-feature-grid img,
.case-card img,
.product-showcase img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.service-feature-grid article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-feature-grid article > span,
.service-table article > span,
.method-grid article > span {
  color: var(--yd-gold);
  font-weight: 900;
}

.service-feature-grid h3,
.service-table h2,
.case-card h2,
.product-showcase h2,
.article-card h2,
.article-card h3,
.method-grid h2,
.activity-types h2 {
  margin: 0 0 10px;
  color: var(--yd-ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.service-feature-grid p,
.service-table p,
.case-card p,
.product-showcase p,
.article-card p,
.method-grid p,
.activity-types p {
  color: var(--yd-muted);
}

.text-link {
  color: var(--yd-red);
  font-weight: 900;
  border-bottom: 1px solid rgba(161, 42, 34, 0.25);
}

.case-card {
  position: relative;
  overflow: hidden;
}

.case-card > div,
.case-card > h2,
.case-card > p,
.case-card > ul,
.case-card > a {
  padding-left: 22px;
  padding-right: 22px;
}

.case-card > div {
  padding-top: 18px;
}

.case-card > a {
  display: inline-flex;
  margin: 8px 0 22px;
}

.case-card ul {
  margin: 12px 0 18px;
  color: var(--yd-muted);
}

.case-card strong,
.article-tag {
  color: var(--yd-gold);
  font-size: 13px;
}

.case-filter-bar,
.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--yd-max);
  margin: 0 auto 26px;
  padding: 0 clamp(18px, 4vw, 32px);
}

.case-filter-bar button,
.product-filter-bar button {
  min-height: 40px;
  padding: 0 18px;
  color: var(--yd-ink-2);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--yd-line);
  border-radius: 999px;
  font-weight: 800;
}

.case-filter-bar button.active,
.product-filter-bar button.active {
  color: #fff;
  background: var(--yd-red);
  border-color: var(--yd-red);
}

.workflow-panel h2,
.cta-band h2,
.workflow-section .eyebrow,
.cta-band .eyebrow {
  color: #fff;
}

.image-hero h1,
.product-hero h1,
.image-hero p,
.product-hero p,
.image-hero .eyebrow,
.product-hero .eyebrow {
  max-width: var(--yd-max);
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.service-table {
  grid-template-columns: 1fr;
}

.service-table article {
  display: grid;
  grid-template-columns: 80px 0.8fr 1.5fr auto;
  gap: 24px;
  align-items: center;
}

.service-table ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--yd-muted);
}

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

.product-showcase article {
  padding: 14px;
}

.product-showcase article > div {
  padding: 16px 6px 6px;
}

.article-card {
  overflow: hidden;
}

.article-card a {
  display: block;
  height: 100%;
}

.article-card div {
  padding: 18px;
}

.article-card p:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  font-size: 13px;
}

.article-detail {
  padding: clamp(90px, 12vw, 140px) clamp(18px, 4vw, 32px) 80px;
}

.article-detail > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  margin: 28px 0;
  border-radius: var(--yd-radius);
}

.article-content {
  max-width: 780px;
  font-size: 18px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 42px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--yd-ink);
}

.footer-brand img {
  width: 108px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a:hover,
.footer-contact a {
  color: #fff;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--yd-red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(24, 24, 22, 0.22);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
.reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
.site-header {
    min-height: 68px;
  }

.header-cta {
    display: none;
  }

.nav-toggle {
    display: inline-flex;
  }

.site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 14px;
    background: rgba(24, 24, 22, 0.98);
    border-bottom: 1px solid rgba(185, 154, 100, 0.24);
  }

.site-nav.is-open {
    display: grid;
  }

.site-nav a {
    min-height: 48px;
  }

.service-feature-grid,
  .selected-work,
  .product-showcase,
  .article-grid,
  .case-grid,
  .case-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.service-table article {
    grid-template-columns: 52px 1fr;
  }

.service-table article .btn {
    grid-column: 2;
    justify-self: start;
  }

.service-table ul {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
.site-header {
    padding: 0 16px;
  }

.brand-logo {
    width: 78px;
  }

.capability-tags,
  .brand-principles,
  .process-line,
  .activity-types,
  .service-feature-grid,
  .selected-work,
  .product-showcase,
  .article-grid,
  .case-grid,
  .case-masonry {
    grid-template-columns: 1fr;
  }

.service-table article,
  .service-table article .btn,
  .service-table ul {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

.service-table article {
    display: block;
  }

.site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 86px;
  }

.back-to-top {
    bottom: 84px;
  }
}

/* Agency homepage refresh, scoped to the public homepage only. */
:root {
  --agency-black: #11110f;
  --agency-black-2: #181816;
  --agency-paper: #f7f3ea;
  --agency-paper-soft: #fffdf8;
  --agency-line: rgba(33, 29, 24, 0.14);
  --agency-red: #b52019;
  --agency-red-dark: #851914;
  --agency-gold: #b89055;
  --agency-brown: #8f5f35;
  --agency-muted: #6e675e;
  --agency-max: 1344px;
  --agency-wide: 1660px;
  --agency-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.agency-home {
  color: var(--agency-black);
  background: var(--agency-paper-soft);
  overflow-x: hidden;
}

body.agency-home .agency-header,
.agency-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 96px;
  padding: 0 clamp(42px, 3.8vw, 70px);
  background: rgba(17, 17, 15, 0.94);
  border-bottom: 1px solid rgba(184, 144, 85, 0.22);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.agency-home .brand-logo,
.agency-header .brand-logo {
  width: clamp(190px, 12vw, 236px);
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.34));
}

body.agency-home .site-nav {
  gap: clamp(34px, 3vw, 64px);
}

body.agency-home .site-nav a {
  min-height: 52px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 0.95vw, 20px);
  font-weight: 800;
}

body.agency-home .site-nav a:hover,
body.agency-home .site-nav a[aria-current="page"] {
  color: #ffffff;
}

body.agency-home .site-nav a::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--agency-red);
}

body.agency-home .header-cta {
  width: 116px;
  min-height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--agency-red);
  border: 1px solid rgba(184, 144, 85, 0.32);
  border-radius: 999px;
  font-size: clamp(16px, 0.92vw, 19px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: background 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

body.agency-home .header-cta:hover {
  background: var(--agency-red-dark);
  transform: translateY(-1px);
}

body.agency-home .nav-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 4px;
}

body.agency-home .nav-toggle span {
  background: #ffffff;
}

.home-kicker,
.home-section-head > p,
.home-section-head div > p {
  margin: 0;
  color: var(--agency-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: clamp(780px, calc(100vh - 96px), 860px);
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--agency-black-2);
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero::before {
  z-index: 2;
  background:
    radial-gradient(circle at 75% 42%, rgba(181, 32, 25, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.46) 53%, rgba(0, 0, 0, 0.1) 100%);
}

.home-hero::after {
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) brightness(0.82) contrast(1.06);
  transform: none;
}

.home-hero__content {
  position: relative;
  z-index: 4;
  grid-column: 1 / 2;
  width: min(720px, calc(100vw - 96px));
  margin-left: max(72px, calc((100vw - var(--agency-wide)) / 2 + 72px));
  padding-top: 0;
  transform: translateY(-20px);
}

.home-hero h1 {
  margin: 30px 0 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(78px, 5.7vw, 108px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero__lead {
  max-width: 660px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(22px, 1.55vw, 29px);
  line-height: 1.76;
  text-wrap: pretty;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 56px;
}

.agency-btn {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 46px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  transition: transform 180ms var(--agency-ease), background 180ms var(--agency-ease), border-color 180ms var(--agency-ease);
}

.agency-btn::after {
  content: "→";
  transform: translateX(0);
  transition: transform 180ms var(--agency-ease);
}

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

.agency-btn:hover::after {
  transform: translateX(4px);
}

.agency-btn--solid {
  color: #ffffff;
  background: var(--agency-red);
  border: 1px solid var(--agency-red);
}

.agency-btn--solid:hover {
  background: #c82720;
  border-color: #c82720;
}

.agency-btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.agency-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
}

.home-belief {
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: clamp(44px, 6vw, 76px);
  padding: clamp(72px, 8vw, 110px) clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 50% 16%, rgba(184, 144, 85, 0.12), transparent 36%),
    var(--agency-paper-soft);
}

.home-belief__statement,
.home-belief__capabilities,
.home-services,
.home-projects,
.home-process__inner {
  width: min(var(--agency-max), calc(100% - 48px));
  margin-inline: auto;
}

.home-process__inner {
  width: min(var(--agency-max), calc(100% - 64px));
}

.home-belief h2 {
  max-width: 960px;
  margin: 0 auto;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.38;
  text-align: center;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.home-belief h2 span {
  color: var(--agency-red);
}

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

.home-belief__capabilities article {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 16px;
  align-content: center;
  padding: 8px clamp(18px, 2vw, 30px);
  border-right: 1px solid rgba(143, 95, 53, 0.18);
}

.home-belief__capabilities article:last-child {
  border-right: 0;
}

.home-belief__capabilities span {
  grid-row: 1 / 3;
  color: rgba(143, 95, 53, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.home-belief__capabilities strong {
  color: #211d18;
  font-size: 18px;
  line-height: 1.2;
}

.home-belief__capabilities p {
  margin: 0;
  color: var(--agency-muted);
  font-size: 14px;
  line-height: 1.55;
}

.home-services,
.home-projects {
  padding: clamp(48px, 6vw, 66px) 0;
}

.home-services {
  padding-bottom: 34px;
}

.home-services .home-section-head {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.home-section-head h2 {
  max-width: 860px;
  margin: 0;
  color: var(--agency-black);
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

.home-section-head--row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 40px;
}

.home-section-sub {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--agency-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-more-link {
  color: var(--agency-red);
  font-weight: 900;
  white-space: nowrap;
}

.home-more-link::after {
  content: " →";
}

.home-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-service-list a {
  position: relative;
  min-height: 348px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 10px 14px;
  padding: 26px 24px 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(143, 95, 53, 0.18);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 180ms var(--agency-ease), transform 180ms var(--agency-ease), background 180ms var(--agency-ease);
}

.home-service-list a::after {
  content: "了解更多 →";
  grid-column: 1 / -1;
  color: var(--agency-red);
  font-size: 15px;
  font-weight: 900;
  justify-self: start;
  transition: transform 180ms var(--agency-ease);
}

.home-service-list a:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(177, 91, 64, 0.36);
  transform: translateY(-3px);
}

.home-service-list a:hover::after {
  transform: translateX(5px);
}

.home-service-list span {
  color: rgba(143, 95, 53, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.5vw, 48px);
  line-height: 1;
}

.home-service-list strong {
  align-self: center;
  color: var(--agency-black);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.22;
}

.home-service-list p {
  grid-column: 1 / -1;
  min-height: 58px;
  margin: 0;
  color: var(--agency-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-service-list img {
  grid-column: 1 / -1;
  width: 100%;
  height: 150px;
  margin-top: 12px;
  object-fit: cover;
  border-radius: 5px;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 220ms var(--agency-ease), filter 220ms var(--agency-ease);
}

.home-service-list a:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.08);
}

.home-projects {
  padding-top: 30px;
  padding-bottom: clamp(52px, 6vw, 76px);
}

.home-projects .home-section-head {
  margin-bottom: 28px;
}

.home-projects .home-section-head h2 {
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.18;
}

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

.project-card {
  position: relative;
  min-height: auto;
  display: grid;
  align-content: start;
  overflow: hidden;
  padding: 0 0 22px;
  color: var(--agency-black);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 95, 53, 0.16);
  border-radius: 8px;
  transition: border-color 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

.project-card--large {
  grid-row: auto;
}

.project-card img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 420ms var(--agency-ease), filter 420ms var(--agency-ease);
}

.project-card::before {
  content: none;
}

.project-card:hover {
  border-color: rgba(177, 91, 64, 0.34);
  transform: translateY(-3px);
}

.project-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.08);
}

.project-card span {
  display: none;
}

.project-card strong {
  margin: 18px 20px 0;
  color: var(--agency-black);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.24;
}

.project-card p {
  margin: 7px 20px 0;
  color: var(--agency-muted);
  font-size: 15px;
}

.home-process {
  min-height: 372px;
  display: grid;
  align-items: center;
  padding: clamp(52px, 6vw, 72px) 0 clamp(58px, 7vw, 82px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.99), rgba(17, 17, 15, 0.94)),
    url("../images/optimized/hero-party-culture.jpg") center / cover;
}

.home-process__inner h2 {
  margin: 0 0 clamp(38px, 5vw, 58px);
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(32px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.2;
}

.home-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-process li {
  position: relative;
  min-height: 150px;
  padding: 0 clamp(18px, 2.4vw, 36px) 0 0;
}

.home-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 70px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 144, 85, 0.9), rgba(184, 144, 85, 0.18));
}

.home-process span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #f5d9a4;
  border: 1px solid rgba(184, 144, 85, 0.74);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.home-process strong {
  display: block;
  margin-top: 22px;
  color: #ffffff;
  font-size: 19px;
}

.home-process p {
  max-width: 300px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.68;
}

.home-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(420px, 1.4fr) minmax(180px, 0.45fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    clamp(48px, 6vw, 70px)
    max(48px, calc((100vw - var(--agency-wide)) / 2 + 48px));
  color: rgba(255, 255, 255, 0.78);
  background: #151512;
  border-top: 1px solid rgba(184, 144, 85, 0.3);
}

.home-footer__brand img {
  width: 176px;
  height: auto;
  margin-bottom: 24px;
}

.home-footer__brand p {
  max-width: 320px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.home-footer__brand small {
  color: rgba(255, 255, 255, 0.5);
}

.home-footer__brand small a {
  color: inherit;
  text-decoration: none;
}

.home-footer__brand small a:hover {
  color: rgba(255, 255, 255, 0.72);
}

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

.home-footer__nav strong,
.home-footer__nav a {
  display: block;
}

.home-footer__nav strong {
  margin-bottom: 14px;
  color: #ffffff;
}

.home-footer__nav a {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.home-footer__nav a:hover {
  color: #ffffff;
}

.home-footer__contact {
  display: grid;
  justify-items: stretch;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.home-footer__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f7d8a0;
  border: 1px solid rgba(184, 144, 85, 0.58);
  border-radius: 4px;
  font-weight: 900;
}

.home-footer__button::after {
  content: "→";
}

body.agency-home .back-to-top {
  background: var(--agency-red);
}

@media (max-width: 1180px) {
  body.agency-home .header-cta {
    display: none;
  }

  body.agency-home .nav-toggle {
    display: block;
  }

  body.agency-home .site-nav {
    position: fixed;
    inset: 96px 0 auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 16px clamp(18px, 5vw, 42px) 22px;
    background: rgba(17, 17, 15, 0.98);
    border-bottom: 1px solid rgba(184, 144, 85, 0.24);
  }

  body.agency-home .site-nav.is-open {
    display: grid;
  }

  body.agency-home .site-nav a {
    min-height: 50px;
  }

  .home-hero__content {
    margin-left: 40px;
  }

  .home-service-list,
  .home-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-list a {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  .home-hero {
    min-height: 760px;
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    inset: 0;
  }

  .home-hero::before {
    background: linear-gradient(180deg, rgba(17, 17, 15, 0.78), rgba(17, 17, 15, 0.88));
  }

  .home-hero__content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 30px;
    transform: none;
  }

  .home-hero h1 {
    font-size: clamp(56px, 15vw, 76px);
  }

  .home-belief__capabilities,
  .home-process ol,
  .home-footer,
  .home-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .home-belief__capabilities article:nth-child(2) {
    border-right: 0;
  }

  .home-belief__capabilities article:nth-child(n + 3) {
    border-top: 1px solid rgba(143, 95, 53, 0.18);
  }

  .home-section-head--row {
    grid-template-columns: 1fr;
  }

  .home-project-grid {
    grid-template-columns: 1fr;
  }

  .project-card--large {
    grid-row: span 1;
  }

  .home-process li {
    padding-bottom: 28px;
  }

  .home-process li:not(:last-child)::after {
    display: none;
  }

  .home-footer__contact {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 560px) {
  body.agency-home .agency-header {
    min-height: 68px;
    padding: 0 16px;
  }

  body.agency-home .brand-logo {
    width: 170px;
  }

  body.agency-home .site-nav {
    inset: 68px 0 auto;
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero__actions,
  .home-belief__capabilities,
  .home-process ol,
  .home-footer,
  .home-footer__nav {
    grid-template-columns: 1fr;
  }

  .home-hero__actions {
    display: grid;
  }

  .agency-btn {
    width: 100%;
  }

  .home-belief {
    padding-inline: 20px;
  }

  .home-belief__statement,
  .home-belief__capabilities,
  .home-services,
  .home-projects,
  .home-process__inner,
  .home-footer {
    width: calc(100% - 40px);
  }

  .home-footer {
    width: 100%;
    padding-inline: 20px;
  }

  .home-belief h2 {
    text-align: left;
  }

  .home-belief__capabilities article {
    border-right: 0;
    border-top: 1px solid rgba(143, 95, 53, 0.18);
  }

  .home-service-list {
    grid-template-columns: 1fr;
  }

  .home-service-list a {
    min-height: auto;
    padding: 22px 20px;
  }

  .home-service-list img,
  .project-card img {
    height: 168px;
  }
}

/* Agency service page, matched to the supplied service design. */
body.agency-subpage {
  color: var(--agency-black);
  background: var(--agency-paper-soft);
  overflow-x: hidden;
}

body.agency-subpage .agency-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 96px;
  padding: 0 clamp(42px, 3.8vw, 70px);
  background: rgba(8, 8, 7, 0.96);
  border-bottom: 1px solid rgba(184, 144, 85, 0.2);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.agency-subpage .brand-logo {
  width: clamp(190px, 12vw, 236px);
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.34));
}

body.agency-subpage .site-nav {
  gap: clamp(30px, 2.7vw, 58px);
}

body.agency-subpage .site-nav a {
  min-height: 52px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 0.9vw, 18px);
  font-weight: 800;
}

body.agency-subpage .site-nav a:hover,
body.agency-subpage .site-nav a[aria-current="page"] {
  color: #ffffff;
}

body.agency-subpage .site-nav a::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--agency-red);
}

body.agency-subpage .header-cta {
  width: 108px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--agency-red);
  border: 1px solid rgba(184, 144, 85, 0.3);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: background 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

body.agency-subpage .header-cta:hover {
  background: var(--agency-red-dark);
  transform: translateY(-1px);
}

body.agency-subpage .nav-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
  border-radius: 4px;
}

body.agency-subpage .nav-toggle span {
  background: #ffffff;
}

.service-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0b0b0a;
}

.service-hero::before,
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-hero::before {
  z-index: 2;
  background:
    radial-gradient(circle at 82% 42%, rgba(184, 144, 85, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 34%, rgba(0, 0, 0, 0.42) 64%, rgba(0, 0, 0, 0.15) 100%);
}

.service-hero::after {
  z-index: 3;
  background: linear-gradient(180deg, transparent 68%, rgba(181, 32, 25, 0.2));
}

.service-hero img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.72) brightness(0.58) contrast(1.08);
}

.service-hero__content {
  position: relative;
  z-index: 4;
  width: min(var(--agency-max), calc(100% - 96px));
  margin-inline: auto;
  transform: translateY(-4px);
}

.service-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(62px, 5.2vw, 92px);
  font-weight: 500;
  line-height: 1.08;
}

.service-hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.65;
}

.service-capabilities {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 0;
}

.service-capability-row {
  min-height: 198px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(132px, 0.8fr)) 136px;
  gap: 0;
  align-items: center;
  padding: 30px clamp(26px, 3vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(143, 95, 53, 0.14);
}

.service-capability-row:nth-child(even) {
  background:
    linear-gradient(90deg, rgba(184, 144, 85, 0.05), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.82);
}

.service-capability-row__intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
}

.service-capability-row__intro > span {
  color: rgba(143, 95, 53, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5vw, 86px);
  line-height: 1;
}

.service-capability-row h2 {
  margin: 0;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.25;
}

.service-capability-row__intro p {
  margin: 14px 0 0;
  color: var(--agency-muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-capability-row__group {
  min-height: 110px;
  padding: 6px clamp(18px, 1.8vw, 28px);
  border-left: 1px solid rgba(143, 95, 53, 0.16);
}

.service-capability-row__group h3 {
  margin: 0 0 12px;
  color: #211d18;
  font-size: 16px;
  line-height: 1.3;
}

.service-capability-row__group ul,
.activity-delivery ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-capability-row__group li {
  position: relative;
  margin-top: 7px;
  padding-left: 13px;
  color: #6e675e;
  font-size: 14px;
  line-height: 1.45;
}

.service-capability-row__group li::before,
.activity-delivery li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 4px;
  height: 4px;
  background: var(--agency-brown);
  border-radius: 999px;
}

.service-consult {
  justify-self: end;
  display: inline-flex;
  width: 96px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--agency-red-dark);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  transition: background 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

.service-consult:hover {
  background: var(--agency-red);
  transform: translateY(-1px);
}

.service-flow,
.activity-delivery {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 95, 53, 0.08);
  border-radius: 8px;
}

.service-flow {
  margin-top: 0;
  padding: 52px clamp(36px, 5vw, 84px) 62px;
  text-align: center;
}

.service-flow h2 {
  margin: 0 0 46px;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
}

.service-flow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.service-flow li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 30px;
  right: calc(clamp(28px, 5vw, 72px) / -2);
  color: rgba(143, 95, 53, 0.72);
  font-size: 34px;
  line-height: 1;
}

.service-flow span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--agency-brown);
  border: 1px solid rgba(143, 95, 53, 0.24);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.service-flow strong {
  color: #211d18;
  font-size: 17px;
}

.service-flow p {
  margin: 0;
  color: var(--agency-muted);
  font-size: 14px;
}

.activity-delivery {
  margin-top: 18px;
  margin-bottom: 0;
  padding: clamp(46px, 5vw, 70px) clamp(42px, 5vw, 78px) 58px;
}

.activity-delivery h2 {
  margin: 0 0 42px;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.3;
}

.activity-delivery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(181, 32, 25, 0.36);
}

.activity-delivery article {
  display: grid;
  gap: 12px;
  align-content: start;
}

.activity-delivery article > .yd-icon {
  margin-bottom: 4px;
  color: var(--agency-red);
}

.activity-delivery h3 {
  margin: 0;
  color: #211d18;
  font-size: 18px;
  line-height: 1.28;
}

.activity-delivery li {
  position: relative;
  margin-top: 10px;
  padding-left: 13px;
  color: var(--agency-muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-footer {
  margin-top: 0;
}

.service-footer .home-footer__contact {
  gap: 10px;
}

.service-footer .home-footer__contact > a:not(.home-footer__button),
.service-footer .home-footer__contact > span {
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.service-footer .home-footer__contact > a:not(.home-footer__button) {
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  body.agency-subpage .header-cta {
    display: none;
  }

  body.agency-subpage .nav-toggle {
    display: block;
  }

  body.agency-subpage .site-nav {
    position: fixed;
    inset: 96px 0 auto;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 16px clamp(18px, 5vw, 42px) 22px;
    background: rgba(17, 17, 15, 0.98);
    border-bottom: 1px solid rgba(184, 144, 85, 0.24);
  }

  body.agency-subpage .site-nav.is-open {
    display: grid;
  }

  .service-capability-row {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(160px, 0.85fr));
    gap: 22px 0;
  }

  .service-consult {
    justify-self: start;
  }

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

@media (max-width: 860px) {
  .service-hero {
    min-height: 360px;
  }

  .service-hero__content,
  .service-capabilities,
  .service-flow,
  .activity-delivery {
    width: calc(100% - 40px);
  }

  .service-capability-row {
    grid-template-columns: 1fr 1fr;
    padding: 28px 24px;
  }

  .service-capability-row__intro {
    grid-column: 1 / -1;
  }

  .service-capability-row__group:nth-of-type(odd) {
    border-left: 0;
  }

  .service-flow ol,
  .activity-delivery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  body.agency-subpage .agency-header {
    min-height: 68px;
    padding: 0 16px;
  }

  body.agency-subpage .brand-logo {
    width: 170px;
  }

  body.agency-subpage .site-nav {
    inset: 68px 0 auto;
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .service-hero p {
    font-size: 20px;
  }

  .service-capabilities {
    padding-top: 28px;
  }

  .service-capability-row,
  .service-flow ol,
  .activity-delivery__grid {
    grid-template-columns: 1fr;
  }

  .service-capability-row__group {
    min-height: auto;
    padding-left: 0;
    border-left: 0;
  }

  .service-consult {
    width: 100%;
  }

  .service-flow,
  .activity-delivery {
    padding-inline: 22px;
  }

  .service-footer .home-footer__contact > a:not(.home-footer__button),
  .service-footer .home-footer__contact > span {
    text-align: left;
  }
}

/* Agency case page, matched to the supplied project case design. */
.case-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0b0b0a;
}

.case-hero::before,
.case-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.case-hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 34%, rgba(0, 0, 0, 0.38) 68%, rgba(0, 0, 0, 0.1) 100%),
    radial-gradient(circle at 76% 45%, rgba(184, 144, 85, 0.15), transparent 34%);
}

.case-hero::after {
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 80% 90%, rgba(184, 144, 85, 0.1), transparent 36%);
}

.case-hero img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.74) brightness(0.62) contrast(1.08);
}

.case-hero__content {
  position: relative;
  z-index: 4;
  width: min(var(--agency-max), calc(100% - 96px));
  margin-inline: auto;
}

.case-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(62px, 5.2vw, 92px);
  font-weight: 500;
  line-height: 1.08;
}

.case-hero p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.7;
}

.case-gallery-section {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 50px 0 58px;
}

body.case-page .case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 38px);
  margin: 0 0 40px;
}

body.case-page .case-filter-bar button {
  min-width: 168px;
  min-height: 50px;
  padding: 0 32px;
  color: #5d554d;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(143, 95, 53, 0.16);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  transition: background 180ms var(--agency-ease), border-color 180ms var(--agency-ease), color 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

body.case-page .case-filter-bar button.active,
body.case-page .case-filter-bar button:hover {
  color: #ffffff;
  background: var(--agency-red);
  border-color: var(--agency-red);
}

body.case-page .case-filter-bar button:hover {
  transform: translateY(-1px);
}

.case-gallery,
#caseShowcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.case-page .case-card {
  position: relative;
  min-height: 492px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background: #151512;
  border: 1px solid rgba(24, 24, 22, 0.12);
  border-radius: 8px;
  isolation: isolate;
  transition: transform 200ms var(--agency-ease), border-color 200ms var(--agency-ease);
}

body.case-page .case-card[hidden] {
  display: none;
}

body.case-page .case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.86) 100%);
}

body.case-page .case-card:hover {
  border-color: rgba(184, 144, 85, 0.42);
  transform: translateY(-3px);
}

body.case-page .case-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.78) contrast(1.05);
  transition: transform 420ms var(--agency-ease), filter 420ms var(--agency-ease);
}

body.case-page .case-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.94) brightness(0.84) contrast(1.08);
}

body.case-page .case-card > div,
body.case-page .case-card > a.text-link {
  position: relative;
  z-index: 2;
}

body.case-page .case-card > div {
  padding: 28px 30px 34px;
}

body.case-page .case-card span,
body.case-page .case-card div > strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

body.case-page .case-card h2 {
  margin: 150px 0 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(26px, 2.1vw, 38px);
  font-weight: 600;
  line-height: 1.18;
}

body.case-page .case-card p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.72;
}

body.case-page .case-card ul {
  margin: 16px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  list-style: none;
}

body.case-page .case-card a,
body.case-page .case-card > a.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

body.case-page .case-card a::after,
body.case-page .case-card > a.text-link::after {
  content: " →";
}

body.case-page .case-card > a.text-link {
  margin: 0 30px 34px;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(34px, 5vw, 70px);
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 90px) 0 clamp(72px, 8vw, 100px);
  border-top: 1px solid rgba(143, 95, 53, 0.12);
}

.case-feature__copy > p:first-child {
  margin: 0 0 26px;
  color: var(--agency-red);
  font-size: 16px;
  font-weight: 900;
}

.case-feature__copy h2 {
  margin: 0;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 600;
  line-height: 1.22;
}

.case-feature__copy h2 + p {
  max-width: 380px;
  margin: 28px 0 0;
  color: var(--agency-muted);
  font-size: 16px;
  line-height: 1.8;
}

.case-feature__copy dl {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
}

.case-feature__copy dl div {
  display: grid;
  gap: 5px;
  color: var(--agency-muted);
}

.case-feature__copy dt {
  color: #8f5f35;
  font-size: 14px;
  font-weight: 900;
}

.case-feature__copy dd {
  margin: 0;
  font-size: 15px;
}

.case-feature__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--agency-red);
  border-radius: 4px;
  font-weight: 900;
}

.case-feature__button::after {
  content: " →";
}

.case-feature__media > img {
  width: 100%;
  height: clamp(320px, 32vw, 520px);
  object-fit: cover;
  border-radius: 8px;
}

.case-feature__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.case-feature__thumbs img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  border: 1px solid rgba(143, 95, 53, 0.16);
  border-radius: 6px;
}

.case-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .case-gallery,
  #caseShowcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.case-page .case-card {
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .case-hero {
    min-height: 360px;
  }

  .case-hero__content,
  .case-gallery-section,
  .case-feature {
    width: calc(100% - 40px);
  }

  .case-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .case-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .case-hero p {
    font-size: 20px;
  }

  body.case-page .case-filter-bar {
    gap: 10px;
  }

  body.case-page .case-filter-bar button {
    min-width: auto;
    flex: 1 1 calc(50% - 10px);
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .case-gallery,
  #caseShowcase,
  .case-feature__thumbs {
    grid-template-columns: 1fr;
  }

  body.case-page .case-card {
    min-height: 420px;
  }

  body.case-page .case-card h2 {
    margin-top: 120px;
  }
}

/* Agency product page, matched to the supplied cultural-products design. */
.product-agency-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0a0a09;
}

.product-agency-hero::before,
.product-agency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-agency-hero::before {
  z-index: 2;
  background:
    radial-gradient(circle at 74% 38%, rgba(184, 144, 85, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 40%, rgba(0, 0, 0, 0.28) 76%, rgba(0, 0, 0, 0.12) 100%);
}

.product-agency-hero::after {
  z-index: 3;
  background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.22));
}

.product-agency-hero > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: saturate(0.92) brightness(0.58) contrast(1.1);
}

.product-agency-hero__content {
  position: relative;
  z-index: 4;
  width: min(var(--agency-max), calc(100% - 96px));
  margin-inline: auto;
}

.product-agency-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(58px, 5.2vw, 92px);
  font-weight: 500;
  line-height: 1.08;
}

.product-agency-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(21px, 1.55vw, 28px);
  line-height: 1.72;
}

.product-hero-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(184, 144, 85, 0.28);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.product-hero-tags span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.84);
  border-right: 1px solid rgba(184, 144, 85, 0.18);
  font-size: 14px;
  font-weight: 800;
}

.product-hero-tags span:last-child {
  border-right: 0;
}

.product-catalog-section,
.gift-showcase {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.product-catalog-section {
  padding: 58px 0 48px;
}

.product-section-title {
  display: grid;
  justify-items: center;
  margin-bottom: 38px;
  text-align: center;
}

.product-section-title h2 {
  position: relative;
  margin: 0;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.22;
}

.product-section-title h2::after {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin: 16px auto 0;
  background: var(--agency-red);
}

body.product-page .product-showcase,
body.product-page #productShowcase {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

body.product-page .product-showcase article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(143, 95, 53, 0.16);
  border-radius: 8px;
  transition: transform 180ms var(--agency-ease), border-color 180ms var(--agency-ease);
}

body.product-page .product-showcase article[hidden] {
  display: none;
}

body.product-page .product-showcase article::before {
  content: none;
}

body.product-page .product-showcase article:hover {
  border-color: rgba(177, 91, 64, 0.34);
  transform: translateY(-3px);
}

body.product-page .product-showcase img {
  width: 100%;
  height: 242px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  filter: saturate(0.94) contrast(1.04);
}

body.product-page .product-showcase article > div {
  padding: 22px 22px 24px;
  width: auto;
}

body.product-page .product-showcase .eyebrow {
  display: none;
}

body.product-page .product-showcase h2 {
  margin: 0;
  color: #1c1814;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

body.product-page .product-showcase p {
  min-height: 72px;
  margin: 12px 0 0;
  color: var(--agency-muted);
  font-size: 14px;
  line-height: 1.7;
}

body.product-page .product-showcase ul {
  display: none;
}

body.product-page .product-showcase a,
body.product-page .product-showcase .text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--agency-red);
  font-size: 14px;
  font-weight: 900;
}

body.product-page .product-showcase a::after,
body.product-page .product-showcase .text-link::after {
  content: " →";
}

.product-advantages {
  padding: 56px 0 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 144, 85, 0.11), transparent 34%),
    #11110f;
}

.product-advantages h2 {
  position: relative;
  margin: 0 0 48px;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 500;
  text-align: center;
}

.product-advantages h2::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  margin: 15px auto 0;
  background: var(--agency-red);
}

.product-advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.product-advantages article {
  min-height: 150px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 4px clamp(18px, 2.4vw, 36px);
  text-align: center;
  border-right: 1px solid rgba(184, 144, 85, 0.34);
}

.product-advantages article:last-child {
  border-right: 0;
}

.product-advantages .yd-icon {
  color: #d3a45e;
}

.product-advantages h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
}

.product-advantages p {
  max-width: 190px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.68;
}

.gift-showcase {
  padding: 58px 0 58px;
}

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

.gift-showcase article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(143, 95, 53, 0.16);
  border-radius: 8px;
}

.gift-showcase img {
  width: 100%;
  height: clamp(280px, 24vw, 380px);
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.gift-showcase article > div {
  display: grid;
  justify-items: center;
  padding: 28px 32px 30px;
  text-align: center;
}

.gift-showcase h3 {
  margin: 0;
  color: #1b1713;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 600;
}

.gift-showcase p {
  max-width: 360px;
  margin: 13px 0 0;
  color: var(--agency-muted);
  font-size: 15px;
  line-height: 1.72;
}

.gift-showcase a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--agency-red);
  font-size: 15px;
  font-weight: 900;
}

.gift-showcase a::after {
  content: " →";
}

.product-feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid rgba(143, 95, 53, 0.12);
}

.product-feature-strip article {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-height: 70px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(143, 95, 53, 0.18);
}

.product-feature-strip article:last-child {
  border-right: 0;
}

.product-feature-strip span {
  color: #8f5f35;
  font-size: 18px;
  font-weight: 900;
}

.product-feature-strip p {
  margin: 0;
  color: var(--agency-muted);
  font-size: 13px;
}

.product-cta-band {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  padding: 50px max(48px, calc((100vw - var(--agency-max)) / 2 + 48px));
  color: #ffffff;
  background: #0d0d0b;
}

.product-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.24));
}

.product-cta-band > img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(54vw, 820px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) brightness(0.72);
}

.product-cta-band > div {
  position: relative;
  z-index: 3;
}

.product-cta-band h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1.22;
}

.product-cta-band p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.product-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-primary-link,
.product-secondary-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
}

.product-primary-link {
  color: #ffffff;
  background: var(--agency-red);
}

.product-secondary-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1180px) {
  body.product-page .product-showcase,
  body.product-page #productShowcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-advantages__grid,
  .product-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .product-advantages article:nth-child(3),
  .product-feature-strip article:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .product-agency-hero {
    min-height: 460px;
  }

  .product-agency-hero__content,
  .product-catalog-section,
  .gift-showcase,
  .product-feature-strip {
    width: calc(100% - 40px);
  }

  body.product-page .product-showcase,
  body.product-page #productShowcase,
  .gift-showcase__grid,
  .product-advantages__grid,
  .product-feature-strip,
  .product-cta-band {
    grid-template-columns: 1fr;
  }

  .product-advantages__grid {
    width: calc(100% - 40px);
  }

  .product-advantages article,
  .product-feature-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 144, 85, 0.2);
  }

  .product-cta-band {
    padding-inline: 24px;
  }
}

@media (max-width: 560px) {
  .product-agency-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .product-agency-hero p {
    font-size: 18px;
  }

  .product-hero-tags {
    display: grid;
    width: 100%;
  }

  .product-hero-tags span {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 144, 85, 0.18);
  }

  body.product-page .product-showcase img,
  .gift-showcase img {
    height: 250px;
  }

  .product-cta-band__actions {
    display: grid;
  }
}

/* News agency page */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.news-page {
  background: #f7f4ef;
}

.news-agency-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #0d0d0b;
}

.news-agency-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.72) brightness(0.72) contrast(1.05);
}

.news-agency-hero::before,
.news-agency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.news-agency-hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 42%, rgba(174, 98, 55, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.76) 34%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.5) 100%);
}

.news-agency-hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at 76% 84%, rgba(184, 144, 85, 0.08), transparent 34%);
}

.news-agency-hero__content {
  position: relative;
  z-index: 3;
  width: min(var(--agency-max), calc(100% - 90px));
  margin-inline: auto;
  padding-top: 18px;
}

.news-agency-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(48px, 4vw, 68px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.news-agency-hero p {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.62;
}

.news-insight-section {
  padding: 54px clamp(24px, 4vw, 48px) 50px;
  background:
    radial-gradient(circle at 48% 18%, rgba(177, 91, 64, 0.08), transparent 32%),
    #f8f5ef;
}

body.news-page .article-grid,
body.news-page .news-insight-grid {
  width: min(var(--agency-max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  margin-inline: auto;
}

body.news-page .article-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(143, 95, 53, 0.13);
  border-radius: 8px;
  box-shadow: none;
  transition: transform 180ms var(--agency-ease), border-color 180ms var(--agency-ease);
}

body.news-page .article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 22, 18, 0.24);
}

body.news-page .article-card a {
  position: relative;
  min-height: 286px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38%;
  color: inherit;
}

body.news-page .article-card img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.82) contrast(1.03);
}

body.news-page .article-card div {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
}

body.news-page .article-card div > p:first-child {
  order: 4;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: auto 0 0;
  color: #4f4a43;
  font-size: 13px;
}

body.news-page .article-tag {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  color: #2d2924;
  background: none;
  border: 0;
  font-size: 0;
  font-weight: 900;
  white-space: nowrap;
}

body.news-page .article-tag::before {
  content: "查看详情";
  font-size: 13px;
}

body.news-page .article-tag::after {
  content: " →";
  margin-left: 4px;
  font-size: 13px;
}

body.news-page .article-card h2,
body.news-page .article-card h3 {
  margin: 28px 0 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: 0;
  text-wrap: balance;
}

body.news-page .article-card div > p:not(:first-child) {
  margin: 22px 0 0;
  color: #4e4940;
  font-size: 16px;
  line-height: 1.76;
}

.news-more-row {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.news-more-link {
  min-width: 340px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--agency-red);
  border: 1px solid rgba(174, 22, 18, 0.6);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 900;
  transition: background 180ms var(--agency-ease), color 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

.news-more-link::after {
  content: " →";
}

.news-more-link:hover {
  color: #ffffff;
  background: var(--agency-red);
  transform: translateY(-1px);
}

.news-list-section {
  padding: 64px clamp(24px, 4vw, 48px) 76px;
  background: #ffffff;
  border-top: 1px solid rgba(143, 95, 53, 0.12);
}

.news-list-head,
.news-list {
  width: min(var(--agency-max), 100%);
  margin-inline: auto;
}

.news-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 30px;
}

.news-list-head h2 {
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.18;
}

.news-list-head p {
  max-width: 520px;
  margin: 0;
  color: #5b554c;
  font-size: 16px;
  line-height: 1.7;
}

.news-list {
  display: grid;
  border-top: 1px solid rgba(143, 95, 53, 0.18);
}

.news-list-item a {
  display: grid;
  grid-template-columns: 130px minmax(240px, 0.8fr) minmax(300px, 1.2fr) 110px;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  color: inherit;
  border-bottom: 1px solid rgba(143, 95, 53, 0.18);
  transition: transform 180ms var(--agency-ease), color 180ms var(--agency-ease);
}

.news-list-item a:hover {
  transform: translateX(6px);
}

.news-list-item span {
  color: var(--agency-red);
  font-size: 14px;
  font-weight: 900;
}

.news-list-item h3 {
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.36;
}

.news-list-item p {
  margin: 0;
  color: #5b554c;
  font-size: 15px;
  line-height: 1.72;
}

.news-list-item time {
  justify-self: end;
  color: #6a6258;
  font-size: 14px;
  white-space: nowrap;
}

.news-method-section {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: 470px;
  border-top: 1px solid rgba(143, 95, 53, 0.13);
  border-bottom: 1px solid rgba(143, 95, 53, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(247, 243, 235, 0.94)),
    #f3eee5;
}

.news-method-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: clamp(58px, 7vw, 92px) clamp(42px, 8vw, 122px);
  overflow: hidden;
  border-right: 1px solid rgba(143, 95, 53, 0.15);
}

.news-method-copy::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: -30px;
  height: 150px;
  opacity: 0.15;
  background:
    linear-gradient(150deg, transparent 0 22%, rgba(143, 95, 53, 0.32) 23% 24%, transparent 25% 100%),
    linear-gradient(20deg, transparent 0 42%, rgba(143, 95, 53, 0.22) 43% 44%, transparent 45% 100%);
}

.news-method-copy h2 {
  position: relative;
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  max-width: 11em;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 1.24;
  text-wrap: balance;
}

.news-method-copy h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 28px;
  background: var(--agency-red);
}

.news-method-copy p {
  position: relative;
  max-width: 560px;
  margin: 28px 0 0;
  color: #4d473f;
  font-size: 18px;
  line-height: 1.8;
}

.news-method-steps {
  display: grid;
  align-content: center;
  padding: clamp(48px, 6vw, 74px) clamp(42px, 7vw, 110px);
}

.news-method-steps article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(143, 95, 53, 0.2);
}

.news-method-steps article:last-child {
  border-bottom: 0;
}

.news-method-steps span {
  color: #8f5f35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.news-method-steps article:nth-child(3) span {
  color: var(--agency-red);
}

.news-method-steps h3 {
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 27px;
  font-weight: 600;
}

.news-method-steps p {
  margin: 10px 0 0;
  color: #5b554c;
  font-size: 15px;
  line-height: 1.7;
}

.news-values-section {
  width: min(var(--agency-max), calc(100% - 60px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 58px 0 54px;
}

.news-values-section article {
  min-height: 196px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 34px 26px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(143, 95, 53, 0.13);
  border-radius: 8px;
}

.news-values-section .yd-icon {
  color: var(--agency-red);
}

.news-values-section h2 {
  margin: 22px 0 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 600;
}

.news-values-section p {
  max-width: 230px;
  margin: 16px 0 0;
  color: #5b554c;
  font-size: 15px;
  line-height: 1.72;
}

.news-footer {
  border-top: 0;
}

@media (max-width: 1180px) {
  body.news-page .article-grid,
  body.news-page .news-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-values-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .news-agency-hero {
    min-height: 430px;
  }

  .news-agency-hero__content {
    width: min(100% - 42px, var(--agency-max));
  }

  .news-agency-hero h1 {
    font-size: 42px;
  }

  .news-agency-hero p {
    font-size: 18px;
  }

  body.news-page .article-grid,
  body.news-page .news-insight-grid,
  .news-method-section,
  .news-values-section {
    grid-template-columns: 1fr;
  }

  .news-list-head {
    display: grid;
    align-items: start;
    gap: 14px;
  }

  .news-list-item a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .news-list-item time {
    justify-self: start;
  }

  body.news-page .article-card a {
    grid-template-columns: 1fr;
  }

  body.news-page .article-card img,
  body.news-page .article-card div {
    grid-column: 1;
    grid-row: auto;
  }

  body.news-page .article-card img {
    min-height: 0;
    height: 240px;
  }

  .news-method-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 95, 53, 0.15);
  }

  .news-method-steps article {
    grid-template-columns: 72px 1fr;
  }

  .news-method-steps span {
    font-size: 44px;
  }
}

@media (max-width: 560px) {
  .news-insight-section,
  .news-method-copy,
  .news-method-steps {
    padding-inline: 20px;
  }

  .news-more-link {
    width: 100%;
    min-width: 0;
  }

  .news-values-section {
    width: min(100% - 32px, var(--agency-max));
  }
}

/* Contact agency page */
body.contact-page {
  background: #f7f4ef;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #070706;
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.82) brightness(0.72) contrast(1.06);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 40%, rgba(174, 22, 18, 0.16), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 36%, rgba(0, 0, 0, 0.16) 78%, rgba(0, 0, 0, 0.36) 100%);
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--agency-max), calc(100% - 90px));
  margin-inline: auto;
}

.contact-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(50px, 4.8vw, 82px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 860px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.7;
}

.contact-consult-section {
  width: min(var(--agency-max), calc(100% - 68px));
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 0.94fr);
  gap: 34px;
  margin: 0 auto;
  padding: 44px 0 36px;
}

.contact-info-card,
.contact-message-form,
.contact-promise-section {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(143, 95, 53, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(37, 31, 25, 0.06);
}

.contact-info-card {
  padding: 42px 42px 34px;
}

.contact-info-card > h2,
.contact-message-form > h2,
.contact-promise-section > h2 {
  position: relative;
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-info-card > h2::before,
.contact-message-form > h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 32px;
  margin-right: 16px;
  vertical-align: -5px;
  background: var(--agency-red);
  border-radius: 99px;
}

.contact-info-card > p {
  margin: 12px 0 34px;
  color: #6a6258;
  font-size: 16px;
}

.contact-info-list {
  display: grid;
}

.contact-info-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(143, 95, 53, 0.24);
}

.contact-info-list article > .yd-icon {
  width: 34px;
  height: 34px;
  color: var(--agency-red);
  margin-top: 2px;
}

.contact-info-list h3,
.contact-qr-row h3,
.contact-promise-grid h3 {
  margin: 0;
  color: #171512;
  font-size: 18px;
  font-weight: 900;
}

.contact-info-list p,
.contact-info-list a,
.contact-qr-row p,
.contact-promise-grid p {
  margin: 8px 0 0;
  color: #5b554c;
  font-size: 15px;
  line-height: 1.65;
}

.contact-info-list a {
  display: inline-block;
  color: #171512;
  font-weight: 900;
}

.contact-qr-row {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: 28px;
}

.contact-qr-row > div:not(.contact-qr) {
  display: none;
}

.contact-qr {
  width: min(184px, 62vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #6a6258;
  background:
    linear-gradient(90deg, #111 4px, transparent 4px) 0 0 / 18px 18px,
    linear-gradient(#111 4px, transparent 4px) 0 0 / 18px 18px,
    #ffffff;
  border: 1px solid rgba(143, 95, 53, 0.2);
  border-radius: 4px;
}

.contact-qr:empty::after {
  content: "\5FAE\4FE1\4E8C\7EF4\7801";
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
}

.contact-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-qr--inline {
  width: min(156px, 56vw);
  margin-top: 14px;
}

.contact-message-form {
  padding: 42px 48px 34px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  margin-top: 32px;
}

.contact-message-form label {
  display: block;
  color: #171512;
  font-size: 16px;
  font-weight: 900;
}

.contact-message-form em {
  color: var(--agency-red);
  font-style: normal;
}

.contact-message-form input,
.contact-message-form select,
.contact-message-form textarea {
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  padding: 0 18px;
  color: #171512;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 95, 53, 0.2);
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
  outline: none;
  transition: border-color 180ms var(--agency-ease), box-shadow 180ms var(--agency-ease), background 180ms var(--agency-ease);
}

.contact-message-form textarea {
  min-height: 180px;
  padding: 18px;
  resize: vertical;
  line-height: 1.7;
}

.contact-message-form input:focus,
.contact-message-form select:focus,
.contact-message-form textarea:focus {
  background: #ffffff;
  border-color: rgba(174, 22, 18, 0.56);
  box-shadow: 0 0 0 4px rgba(174, 22, 18, 0.08);
}

.contact-field-full {
  grid-column: 1 / -1;
  position: relative;
}

.contact-field-full > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #a49b90;
  font-size: 13px;
  font-weight: 500;
}

.contact-submit {
  width: 100%;
  min-height: 64px;
  margin-top: 28px;
  color: #ffffff;
  background: var(--agency-red);
  border: 0;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms var(--agency-ease), transform 180ms var(--agency-ease);
}

.contact-submit:hover {
  background: #c32620;
  transform: translateY(-1px);
}

body.contact-page .form-note {
  min-height: 24px;
  margin: 18px 0 0;
  color: #8d8479;
  font-size: 13px;
  text-align: center;
}

.contact-promise-section {
  width: min(var(--agency-max), calc(100% - 68px));
  margin: 0 auto 52px;
  padding: 46px 54px 44px;
}

.contact-promise-section > h2 {
  text-align: center;
}

.contact-promise-section > h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 0;
  background: var(--agency-red);
}

.contact-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
}

.contact-promise-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 176px;
  padding: 4px 30px 0;
  text-align: center;
  border-right: 1px solid rgba(143, 95, 53, 0.18);
}

.contact-promise-grid article:last-child {
  border-right: 0;
}

.contact-promise-grid .yd-icon {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: #a66f3f;
  border: 1px solid rgba(143, 95, 53, 0.28);
  border-radius: 50%;
}

.contact-promise-grid p {
  max-width: 180px;
  margin-top: 0;
  line-height: 1.72;
}

.contact-footer {
  border-top: 0;
}

@media (max-width: 1180px) {
  .contact-consult-section {
    grid-template-columns: 1fr;
  }

  .contact-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .contact-promise-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .contact-hero {
    min-height: 460px;
  }

  .contact-hero__content,
  .contact-consult-section,
  .contact-promise-section {
    width: min(100% - 40px, var(--agency-max));
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 18px;
  }

  .contact-form-grid,
  .contact-promise-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-message-form,
  .contact-promise-section {
    padding: 30px 24px;
  }

  .contact-promise-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 95, 53, 0.18);
    padding: 0 0 22px;
  }

  .contact-promise-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .contact-info-list article,
  .contact-promise-grid article {
    grid-template-columns: 1fr;
  }

  .contact-qr-row {
    grid-template-columns: 1fr;
  }
}

/* About agency page */
body.about-page {
  background: #f7f4ef;
}

.about-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #080807;
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.78) brightness(0.68) contrast(1.06);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 38%, rgba(174, 22, 18, 0.14), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 36%, rgba(0, 0, 0, 0.18) 74%, rgba(0, 0, 0, 0.42) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--agency-max), calc(100% - 90px));
  margin-inline: auto;
}

.about-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(48px, 4.6vw, 78px);
  font-weight: 500;
  line-height: 1.2;
}

.about-hero p {
  max-width: 760px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.78;
}

.about-belief-section {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: 430px;
  background:
    radial-gradient(circle at 12% 90%, rgba(143, 95, 53, 0.1), transparent 32%),
    #f8f5ef;
  border-bottom: 1px solid rgba(143, 95, 53, 0.12);
}

.about-belief-copy,
.about-belief-text {
  display: grid;
  align-content: center;
  padding-block: clamp(58px, 7vw, 92px);
  padding-inline: clamp(42px, 8vw, 120px);
}

.about-belief-copy {
  padding-left: max(42px, calc((100vw - var(--agency-max)) / 2));
}

.about-belief-text {
  padding-right: max(42px, calc((100vw - var(--agency-max)) / 2));
}

.about-belief-copy {
  border-right: 1px solid rgba(143, 95, 53, 0.14);
}

.about-belief-copy h2,
.about-capability-copy h2,
.about-process-section h2,
.about-cta-section h2 {
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(36px, 3.4vw, 56px);
  font-weight: 600;
  line-height: 1.32;
  text-wrap: balance;
}

.about-belief-text p {
  max-width: 660px;
  margin: 0;
  color: #4d473f;
  font-size: 19px;
  line-height: 1.9;
}

.about-belief-text p + p {
  margin-top: 28px;
}

.about-principles-section {
  width: min(var(--agency-max), calc(100% - 68px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 64px 0;
}

.about-principles-section article {
  min-height: 250px;
  padding: 34px 30px 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(143, 95, 53, 0.13);
  border-radius: 8px;
}

.about-principles-section span {
  color: #9b6940;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.about-principles-section h2 {
  margin: 30px 0 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 27px;
  font-weight: 600;
}

.about-principles-section p {
  margin: 18px 0 0;
  color: #5b554c;
  font-size: 16px;
  line-height: 1.75;
}

.about-capability-section {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  background: #11110f;
  color: #ffffff;
}

.about-capability-media {
  order: 2;
  min-height: 620px;
  overflow: hidden;
}

.about-capability-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.75) contrast(1.06);
}

.about-capability-copy {
  order: 1;
  display: grid;
  align-content: center;
  padding-block: clamp(60px, 8vw, 110px);
  padding-left: max(42px, calc((100vw - var(--agency-max)) / 2));
  padding-right: clamp(42px, 6vw, 88px);
}

.about-capability-copy h2 {
  color: #ffffff;
}

.about-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(184, 144, 85, 0.22);
  border-left: 1px solid rgba(184, 144, 85, 0.22);
}

.about-capability-list article {
  min-height: 156px;
  padding: 28px;
  border-right: 1px solid rgba(184, 144, 85, 0.22);
  border-bottom: 1px solid rgba(184, 144, 85, 0.22);
}

.about-capability-list h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.about-capability-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.about-process-section {
  padding: 78px clamp(28px, 5vw, 56px) 82px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
    url("../images/optimized/hero-agency-image2.jpg") center / cover no-repeat,
    #11110f;
}

.about-process-section h2,
.about-process-grid {
  width: min(var(--agency-max), 100%);
  margin-inline: auto;
}

.about-process-section h2 {
  color: #ffffff;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 62px;
}

.about-process-grid article {
  position: relative;
  padding-top: 10px;
}

.about-process-grid article::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 0;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 144, 85, 0.8), rgba(184, 144, 85, 0.08));
}

.about-process-grid span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e6c891;
  border: 1px solid rgba(184, 144, 85, 0.55);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.about-process-grid h3 {
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.about-process-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.about-cta-section {
  width: min(var(--agency-max), calc(100% - 68px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin: 0 auto;
  padding: 70px 0;
}

.about-cta-section p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #5b554c;
  font-size: 18px;
  line-height: 1.78;
}

.about-footer {
  border-top: 0;
}

@media (max-width: 1180px) {
  .about-principles-section,
  .about-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-belief-section,
  .about-capability-section {
    grid-template-columns: 1fr;
  }

  .about-capability-media {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .about-hero {
    min-height: 480px;
  }

  .about-hero__content,
  .about-principles-section,
  .about-cta-section {
    width: min(100% - 40px, var(--agency-max));
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero p,
  .about-belief-text p {
    font-size: 17px;
  }

  .about-belief-copy,
  .about-belief-text,
  .about-capability-copy {
    padding: 48px 28px;
  }

  .about-belief-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 95, 53, 0.14);
  }

  .about-principles-section,
  .about-capability-list,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-process-grid article::before {
    display: none;
  }

  .about-cta-section {
    display: grid;
  }
}

/* Activity agency page */
body.activity-page {
  background: #f7f4ef;
}

/* Keep homepage header aligned with inner agency pages */
body.agency-home .agency-header {
  min-height: 96px;
  padding: 0 clamp(42px, 3.8vw, 70px);
  background: rgba(8, 8, 7, 0.96);
  border-bottom: 1px solid rgba(184, 144, 85, 0.2);
}

body.agency-home .brand-logo {
  width: clamp(190px, 12vw, 236px);
}

body.agency-home .site-nav {
  gap: clamp(30px, 2.7vw, 58px);
}

body.agency-home .site-nav a {
  min-height: 52px;
  padding: 10px 0;
  font-size: clamp(15px, 0.9vw, 18px);
}

body.agency-home .header-cta {
  width: 108px;
  min-height: 44px;
  font-size: 16px;
}

@media (max-width: 560px) {
  body.agency-home .agency-header {
    min-height: 68px;
    padding: 0 16px;
  }

  body.agency-home .brand-logo {
    width: 170px;
  }

  body.agency-home .site-nav {
    inset: 68px 0 auto;
    grid-template-columns: 1fr;
  }
}

.activity-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #070706;
}

.activity-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.76) brightness(0.68) contrast(1.06);
}

.activity-hero::before,
.activity-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.activity-hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 42%, rgba(174, 22, 18, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.18) 74%, rgba(0, 0, 0, 0.42) 100%);
}

.activity-hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 78% 86%, rgba(184, 144, 85, 0.1), transparent 36%);
}

.activity-hero__content {
  position: relative;
  z-index: 3;
  width: min(var(--agency-max), calc(100% - 90px));
  margin-inline: auto;
}

.activity-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(52px, 4.8vw, 82px);
  font-weight: 500;
  line-height: 1.16;
}

.activity-hero p {
  max-width: 780px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.36vw, 24px);
  line-height: 1.78;
}

.activity-core-section {
  padding: 72px clamp(28px, 5vw, 56px) 68px;
  background: #f8f5ef;
}

.activity-core-head,
.activity-phase-grid,
.activity-section-title,
.activity-scenario-grid,
.activity-deliverable-section,
.activity-process-section h2,
.activity-process-grid,
.activity-cta-section {
  width: min(var(--agency-max), 100%);
  margin-inline: auto;
}

.activity-core-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 0.62fr);
  gap: 56px;
  align-items: end;
}

.activity-core-head h2,
.activity-section-title h2,
.activity-deliverable-section h2,
.activity-process-section h2,
.activity-cta-section h2 {
  margin: 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 600;
  line-height: 1.32;
  text-wrap: balance;
}

.activity-core-head p,
.activity-deliverable-section p,
.activity-cta-section p {
  margin: 0;
  color: #5b554c;
  font-size: 18px;
  line-height: 1.78;
}

.activity-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid rgba(143, 95, 53, 0.16);
  border-left: 1px solid rgba(143, 95, 53, 0.16);
}

.activity-phase-grid article {
  min-height: 250px;
  padding: 34px 32px;
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(143, 95, 53, 0.16);
  border-bottom: 1px solid rgba(143, 95, 53, 0.16);
}

.activity-phase-grid span {
  color: #9b6940;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.activity-phase-grid h3 {
  margin: 30px 0 0;
  color: #171512;
  font-size: 24px;
  font-weight: 900;
}

.activity-phase-grid p {
  margin: 16px 0 0;
  color: #5b554c;
  font-size: 16px;
  line-height: 1.76;
}

.activity-package-section {
  padding: 72px clamp(28px, 5vw, 56px) 78px;
  background: #ffffff;
}

.activity-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.activity-section-title a {
  color: var(--agency-red);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.activity-section-title a::after {
  content: " →";
}

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

.activity-scenario-grid article {
  overflow: hidden;
  background: #fbfaf7;
  border: 1px solid rgba(143, 95, 53, 0.14);
  border-radius: 8px;
  transition: transform 180ms var(--agency-ease), border-color 180ms var(--agency-ease);
}

.activity-scenario-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(174, 22, 18, 0.24);
}

.activity-scenario-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.activity-scenario-grid div {
  padding: 24px 22px 26px;
}

.activity-scenario-grid span {
  color: var(--agency-red);
  font-size: 13px;
  font-weight: 900;
}

.activity-scenario-grid h3 {
  margin: 12px 0 0;
  color: #171512;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
}

.activity-scenario-grid p {
  min-height: 78px;
  margin: 16px 0 0;
  color: #5b554c;
  font-size: 15px;
  line-height: 1.7;
}

.activity-scenario-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--agency-red);
  font-size: 14px;
  font-weight: 900;
}

.activity-scenario-grid a::after {
  content: " →";
}

.activity-deliverable-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 0.85fr);
  gap: 56px;
  width: min(var(--agency-max), calc(100% - 112px));
  padding: 72px 0;
  border-top: 1px solid rgba(143, 95, 53, 0.13);
  border-bottom: 1px solid rgba(143, 95, 53, 0.13);
}

.activity-deliverable-section p {
  margin-top: 24px;
}

.activity-deliverable-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-deliverable-section li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 44px;
  color: #2f2a24;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(143, 95, 53, 0.13);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
}

.activity-deliverable-section li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  background: var(--agency-red);
  border-radius: 50%;
}

.activity-process-section {
  padding: 76px clamp(28px, 5vw, 56px) 82px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74)),
    url("../images/optimized/hero-agency-image2.jpg") center / cover no-repeat,
    #11110f;
}

.activity-process-section h2 {
  color: #ffffff;
}

.activity-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}

.activity-process-grid article {
  position: relative;
  padding-top: 10px;
}

.activity-process-grid article::before {
  content: "";
  position: absolute;
  left: 72px;
  right: 0;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 144, 85, 0.8), rgba(184, 144, 85, 0.08));
}

.activity-process-grid span {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e6c891;
  border: 1px solid rgba(184, 144, 85, 0.55);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.activity-process-grid h3 {
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.activity-process-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.72;
}

.activity-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  width: min(var(--agency-max), calc(100% - 112px));
  padding: 78px 0 82px;
}

.activity-cta-section p {
  max-width: 820px;
  margin-top: 22px;
}

.activity-cta-section .agency-btn {
  width: auto;
  max-width: 260px;
  min-height: 60px;
  padding-inline: 34px;
  font-size: 19px;
  border-radius: 7px;
  white-space: nowrap;
}

.activity-footer {
  border-top: 0;
}

.service-hero,
.case-hero,
.product-agency-hero,
.news-agency-hero,
.contact-hero,
.about-hero,
.activity-hero {
  min-height: clamp(500px, 36vw, 560px);
}

@media (max-width: 1180px) {
  .activity-scenario-grid,
  .activity-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .activity-hero {
    min-height: 480px;
  }

  .activity-hero__content,
  .activity-deliverable-section,
  .activity-cta-section {
    width: min(100% - 40px, var(--agency-max));
  }

  .activity-hero h1 {
    font-size: 42px;
  }

  .activity-hero p,
  .activity-core-head p,
  .activity-deliverable-section p,
  .activity-cta-section p {
    font-size: 17px;
  }

  .activity-core-head,
  .activity-phase-grid,
  .activity-scenario-grid,
  .activity-deliverable-section,
  .activity-deliverable-section ul,
  .activity-process-grid {
    grid-template-columns: 1fr;
  }

  .activity-section-title,
  .activity-cta-section {
    display: grid;
    align-items: start;
  }

  .activity-process-grid article::before {
    display: none;
  }
}

/* Mobile experience pass: public pages only, desktop layouts stay untouched. */
@media (max-width: 860px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.agency-home,
  body.agency-subpage {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  body.agency-home .agency-header,
  body.agency-subpage .agency-header {
    min-height: 68px;
    padding: 0 16px;
  }

  body.agency-home .brand-logo,
  body.agency-subpage .brand-logo {
    width: clamp(144px, 42vw, 168px);
  }

  body.agency-home .nav-toggle,
  body.agency-subpage .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
  }

  body.agency-home .site-nav,
  body.agency-subpage .site-nav {
    inset: 68px 0 auto;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    padding: 10px 20px calc(18px + env(safe-area-inset-bottom));
    background: rgba(11, 11, 10, 0.98);
  }

  body.agency-home .site-nav a,
  body.agency-subpage .site-nav a {
    min-height: 46px;
    justify-content: flex-start;
    font-size: 15px;
    border-bottom: 1px solid rgba(184, 144, 85, 0.14);
  }

  body.agency-home .site-nav a::after,
  body.agency-subpage .site-nav a::after {
    bottom: 0;
  }

  .home-hero {
    min-height: min(760px, 100svh);
  }

  .home-hero__content {
    width: min(100% - 40px, 520px);
    padding-top: 90px;
  }

  .home-hero h1 {
    max-width: 6.8em;
    font-size: clamp(46px, 13.6vw, 64px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .home-kicker {
    max-width: 24em;
    font-size: 12px;
    line-height: 1.55;
  }

  .home-hero__lead {
    max-width: 25em;
    font-size: 16px;
    line-height: 1.78;
  }

  .home-hero__actions,
  .home-footer__nav,
  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-hero__actions {
    display: grid;
    max-width: 310px;
    gap: 12px;
  }

  .agency-btn {
    min-height: 52px;
    padding-inline: 20px;
    border-radius: 6px;
    font-size: 15px;
  }

  .service-hero,
  .case-hero,
  .product-agency-hero,
  .news-agency-hero,
  .contact-hero,
  .about-hero,
  .activity-hero {
    min-height: clamp(420px, 68svh, 580px);
  }

  .service-hero__content,
  .case-hero__content,
  .product-agency-hero__content,
  .news-agency-hero__content,
  .contact-hero__content,
  .about-hero__content,
  .activity-hero__content {
    width: min(100% - 40px, 620px);
  }

  .service-hero h1,
  .case-hero h1,
  .product-agency-hero h1,
  .news-agency-hero h1,
  .contact-hero h1,
  .about-hero h1,
  .activity-hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .service-hero p,
  .case-hero p,
  .product-agency-hero p,
  .news-agency-hero p,
  .contact-hero p,
  .about-hero p,
  .activity-hero p {
    max-width: 28em;
    font-size: 16px;
    line-height: 1.75;
  }

  .home-belief,
  .home-services,
  .home-projects,
  .service-capabilities,
  .service-flow,
  .activity-delivery,
  .case-gallery-section,
  .case-feature,
  .product-catalog-section,
  .gift-showcase,
  .product-advantages__grid,
  .product-feature-strip,
  .news-insight-section,
  .news-list-section,
  .news-method-section,
  .news-values-section,
  .contact-consult-section,
  .contact-promise-section,
  .about-principles-section,
  .about-cta-section,
  .activity-core-head,
  .activity-phase-grid,
  .activity-section-title,
  .activity-scenario-grid,
  .activity-deliverable-section,
  .activity-cta-section {
    width: min(100% - 32px, var(--agency-max));
  }

  .home-service-list,
  .home-project-grid,
  .home-process ol,
  .service-capability-row,
  .service-flow ol,
  .activity-delivery__grid,
  .case-gallery,
  #caseShowcase,
  body.product-page .product-showcase,
  body.product-page #productShowcase,
  .gift-showcase__grid,
  .product-advantages__grid,
  .product-feature-strip,
  body.news-page .article-grid,
  body.news-page .news-insight-grid,
  .news-method-section,
  .news-values-section,
  .contact-consult-section,
  .contact-form-grid,
  .contact-promise-grid,
  .about-principles-section,
  .about-capability-list,
  .about-process-grid,
  .activity-core-head,
  .activity-phase-grid,
  .activity-scenario-grid,
  .activity-deliverable-section,
  .activity-deliverable-section ul,
  .activity-process-grid,
  .activity-cta-section {
    grid-template-columns: 1fr;
  }

  .home-service-list a,
  body.case-page .case-card,
  body.product-page .product-card,
  body.news-page .article-card a,
  .activity-scenario-grid article {
    min-height: auto;
  }

  .home-service-list img,
  .project-card img,
  .case-card img,
  .product-card img,
  body.news-page .article-card img,
  .activity-scenario-grid img {
    height: auto;
    min-height: 220px;
    max-height: 320px;
    object-fit: cover;
  }

  .contact-info-card,
  .contact-message-form,
  .contact-promise-section {
    padding: 30px 20px;
  }

  .contact-message-form input,
  .contact-message-form select,
  .contact-message-form textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .contact-message-form textarea {
    min-height: 160px;
  }

  .contact-submit,
  .service-consult,
  .product-primary-link,
  .product-secondary-link,
  .news-more-link,
  .activity-cta-section .agency-btn {
    width: 100%;
    max-width: none;
  }

  .contact-promise-grid article {
    grid-template-columns: auto 1fr;
    align-items: start;
    text-align: left;
    gap: 12px 16px;
    padding: 18px 0;
  }

  .contact-promise-grid article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 95, 53, 0.16);
  }

  .contact-promise-grid .yd-icon {
    grid-row: span 2;
    margin: 0;
  }

  .contact-promise-grid p {
    max-width: none;
    margin: 0;
  }

  .about-belief-copy,
  .about-belief-text,
  .about-capability-copy {
    padding: 44px 20px;
  }

  .about-capability-media {
    order: 1;
    min-height: 280px;
  }

  .about-capability-copy {
    order: 2;
  }

  .home-footer {
    gap: 34px;
    padding: 48px 20px 110px;
  }

  .home-footer__brand img {
    width: min(180px, 52vw);
  }

  .home-footer__contact {
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }

  .back-to-top {
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 760px) {
  .mobile-consult-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(184, 144, 85, 0.28);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 17, 15, 0.22);
    backdrop-filter: blur(12px);
  }

  .mobile-consult-bar a {
    min-width: 0;
    min-height: 54px;
    display: grid;
    place-items: center;
    padding: 0 8px;
    color: #2f2923;
    border-right: 1px solid rgba(184, 144, 85, 0.2);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-consult-bar a:last-child {
    color: #ffffff;
    background: var(--agency-red);
    border-right: 0;
  }
}

@media (min-width: 761px) {
  .mobile-consult-bar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .home-hero {
    min-height: 680px;
  }

  .home-hero__content {
    width: calc(100% - 32px);
    padding-top: 80px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .home-hero__lead {
    font-size: 15px;
  }

  .home-belief,
  .home-services,
  .home-projects,
  .service-capabilities,
  .service-flow,
  .activity-delivery,
  .case-gallery-section,
  .case-feature,
  .product-catalog-section,
  .gift-showcase,
  .product-advantages__grid,
  .product-feature-strip,
  .news-insight-section,
  .news-list-section,
  .news-method-section,
  .news-values-section,
  .contact-consult-section,
  .contact-promise-section,
  .about-principles-section,
  .about-cta-section,
  .activity-core-head,
  .activity-phase-grid,
  .activity-section-title,
  .activity-scenario-grid,
  .activity-deliverable-section,
  .activity-cta-section {
    width: calc(100% - 28px);
  }

  .service-hero,
  .case-hero,
  .product-agency-hero,
  .news-agency-hero,
  .contact-hero,
  .about-hero,
  .activity-hero {
    min-height: 430px;
  }

  .service-hero__content,
  .case-hero__content,
  .product-agency-hero__content,
  .news-agency-hero__content,
  .contact-hero__content,
  .about-hero__content,
  .activity-hero__content {
    width: calc(100% - 32px);
  }

  .service-hero h1,
  .case-hero h1,
  .product-agency-hero h1,
  .news-agency-hero h1,
  .contact-hero h1,
  .about-hero h1,
  .activity-hero h1,
  .home-belief__statement h2,
  .home-section-head h2,
  .home-process h2,
  .contact-info-card > h2,
  .contact-message-form > h2,
  .contact-promise-section > h2,
  .about-belief-copy h2,
  .about-capability-copy h2,
  .about-process-section h2,
  .about-cta-section h2,
  .activity-core-head h2,
  .activity-section-title h2,
  .activity-deliverable-section h2,
  .activity-process-section h2,
  .activity-cta-section h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.16;
  }

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

  .contact-info-list article {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .contact-qr-row {
    justify-items: center;
  }

  .activity-process-section {
    padding: 58px 16px 66px;
  }
}


.wechat-modal[hidden] {
  display: none;
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wechat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 15, 0.72);
  border: 0;
}

.wechat-modal__panel {
  position: relative;
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 24px 26px;
  color: #171512;
  background: #fffdf8;
  border: 1px solid rgba(184, 144, 85, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 17, 15, 0.32);
}

.wechat-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #3a332d;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.wechat-modal__panel h2 {
  margin: 0;
  font-family: var(--agency-serif);
  font-size: 26px;
  font-weight: 500;
}

.wechat-modal__qr {
  width: min(260px, 76vw);
  aspect-ratio: 1;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(143, 95, 53, 0.18);
}

.wechat-modal__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wechat-modal__panel p {
  margin: 0;
  color: #5b554c;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.wechat-modal-open {
  overflow: hidden;
}

/* Mobile service page refinement: keep desktop intact, redesign the phone reading rhythm. */
@media (max-width: 860px) {
  body.service-page .service-hero {
    min-height: clamp(360px, 62svh, 500px);
  }

  body.service-page .service-hero::before {
    background:
      radial-gradient(circle at 84% 38%, rgba(184, 144, 85, 0.12), transparent 34%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.34) 100%);
  }

  body.service-page .service-hero__content {
    width: min(100% - 36px, 560px);
  }

  body.service-page .service-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  body.service-page .service-hero p {
    max-width: 20em;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.72;
  }

  body.service-page .service-capabilities,
  body.service-page .service-flow,
  body.service-page .activity-delivery {
    width: calc(100% - 28px);
  }

  body.service-page .service-capabilities {
    padding-top: 24px;
  }

  body.service-page .service-capability-row {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-bottom: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(143, 95, 53, 0.12);
    border-radius: 8px;
  }

  body.service-page .service-capability-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.88);
  }

  body.service-page .service-capability-row__intro {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-bottom: 6px;
  }

  body.service-page .service-capability-row__intro > span {
    font-size: 38px;
    line-height: 0.95;
  }

  body.service-page .service-capability-row h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  body.service-page .service-capability-row__intro p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.55;
  }

  body.service-page .service-capability-row__group {
    min-height: 0;
    padding: 12px 12px 13px;
    background: rgba(247, 244, 239, 0.72);
    border: 1px solid rgba(143, 95, 53, 0.12);
    border-radius: 6px;
  }

  body.service-page .service-capability-row__group:nth-of-type(odd) {
    border-left: 1px solid rgba(143, 95, 53, 0.12);
  }

  body.service-page .service-capability-row__group h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  body.service-page .service-capability-row__group li {
    margin-top: 5px;
    padding-left: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  body.service-page .service-capability-row__group li:nth-child(n + 4) {
    display: none;
  }

  body.service-page .service-consult {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    border-radius: 6px;
    font-size: 15px;
  }

  body.service-page .service-flow {
    margin-top: 8px;
    padding: 32px 0 34px;
    overflow: hidden;
    text-align: left;
  }

  body.service-page .service-flow h2 {
    margin: 0 18px 18px;
    font-size: 26px;
  }

  body.service-page .service-flow ol {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(148px, 42%);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.service-page .service-flow li {
    justify-items: start;
    gap: 7px;
    min-height: 138px;
    padding: 16px 14px;
    background: #fffdf8;
    border: 1px solid rgba(143, 95, 53, 0.12);
    border-radius: 7px;
    scroll-snap-align: start;
  }

  body.service-page .service-flow span {
    width: auto;
    height: auto;
    place-items: start;
    border: 0;
    color: rgba(143, 95, 53, 0.78);
    font-size: 28px;
  }

  body.service-page .service-flow strong {
    font-size: 16px;
  }

  body.service-page .service-flow p {
    max-width: 10em;
    font-size: 13px;
    line-height: 1.55;
  }

  body.service-page .activity-delivery {
    margin-top: 14px;
    padding: 34px 0 36px;
    overflow: hidden;
  }

  body.service-page .activity-delivery h2 {
    margin-inline: 18px;
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.2;
  }

  body.service-page .activity-delivery__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(218px, 74%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.service-page .activity-delivery article {
    min-height: 238px;
    scroll-snap-align: start;
  }
}

@media (max-width: 380px) {
  body.service-page .service-capability-row {
    padding: 16px;
  }

  body.service-page .service-capability-row__group {
    padding-inline: 10px;
  }

  body.service-page .service-capability-row__group li {
    font-size: 11.5px;
  }
}

/* Mobile page rhythm pass: make non-service pages feel designed for phone browsing. */
@media (max-width: 860px) {
  body.agency-home .home-projects,
  body.case-page .case-gallery-section,
  body.product-page .product-catalog-section,
  body.product-page .gift-showcase,
  body.news-page .news-list-section,
  body.activity-page .activity-scenario-grid,
  body.activity-page .activity-process-grid,
  body.about-page .about-process-grid {
    overflow: hidden;
  }

  body.agency-home .home-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.agency-home .home-service-list a {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 8px;
  }

  body.agency-home .home-service-list span {
    font-size: 34px;
  }

  body.agency-home .home-service-list strong {
    font-size: 17px;
  }

  body.agency-home .home-service-list p {
    min-height: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  body.agency-home .home-service-list img {
    height: 128px;
    min-height: 0;
    margin-top: 8px;
  }

  body.agency-home .home-project-grid,
  body.case-page .case-gallery,
  body.case-page #caseShowcase,
  body.product-page .product-showcase,
  body.product-page #productShowcase,
  body.product-page .gift-showcase__grid,
  body.activity-page .activity-scenario-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 76%);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.case-page .case-card,
  body.product-page .product-showcase article,
  body.product-page .gift-showcase article,
  body.activity-page .activity-scenario-grid article,
  body.agency-home .project-card {
    min-height: 350px;
    scroll-snap-align: start;
  }

  body.case-page .case-card h2 {
    margin-top: 88px;
    font-size: 24px;
  }

  body.case-page .case-card > div,
  body.case-page .case-card > a.text-link {
    padding-inline: 22px;
  }

  body.case-page .case-card p,
  body.product-page .product-showcase p,
  body.product-page .gift-showcase p,
  body.activity-page .activity-scenario-grid p {
    font-size: 13px;
    line-height: 1.62;
  }

  body.case-page .case-filter-bar,
  body.product-page .product-filter-bar,
  body.product-page .product-hero-tags {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  body.case-page .case-filter-bar button,
  body.product-page .product-filter-bar button,
  body.product-page .product-hero-tags span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  body.agency-home .home-process {
    min-height: 0;
    padding: 42px 0 48px;
  }

  body.agency-home .home-process__inner {
    width: calc(100% - 28px);
  }

  body.agency-home .home-process__inner h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 8vw, 38px);
  }

  body.agency-home .home-process ol,
  body.activity-page .activity-process-grid,
  body.about-page .about-process-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 44%);
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  body.agency-home .home-process li,
  body.activity-page .activity-process-grid article,
  body.about-page .about-process-grid article {
    min-height: 138px;
    padding: 16px 14px;
    border: 1px solid rgba(184, 144, 85, 0.2);
    border-radius: 7px;
    scroll-snap-align: start;
  }

  body.agency-home .home-process li:not(:last-child)::after,
  body.activity-page .activity-process-grid article::before,
  body.about-page .about-process-grid article::before {
    display: none;
  }

  body.agency-home .home-process span,
  body.activity-page .activity-process-grid span,
  body.about-page .about-process-grid span {
    width: auto;
    height: auto;
    display: block;
    border: 0;
    font-size: 30px;
  }

  body.agency-home .home-process strong,
  body.activity-page .activity-process-grid h3,
  body.about-page .about-process-grid h3 {
    margin-top: 10px;
    font-size: 16px;
  }

  body.agency-home .home-process p,
  body.activity-page .activity-process-grid p,
  body.about-page .about-process-grid p {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.55;
  }

  body.news-page .news-list-section {
    padding-top: 30px;
  }

  body.news-page .article-grid,
  body.news-page .news-insight-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.news-page .article-card {
    min-height: 0;
    border-radius: 8px;
  }

  body.news-page .article-card a {
    min-height: 0;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    color: inherit;
  }

  body.news-page .article-card img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 128px;
    max-height: 150px;
    object-fit: cover;
  }

  body.news-page .article-card div {
    grid-column: 2;
    grid-row: 1;
    padding: 14px 14px 12px;
  }

  body.news-page .article-card div > p:first-child {
    order: initial;
    display: block;
    margin: 0;
    color: #8b6b45;
    font-size: 12px;
    line-height: 1.45;
  }

  body.news-page .article-card h2,
  body.news-page .article-card h3 {
    margin: 7px 0 0;
    font-size: 17px;
    line-height: 1.38;
  }

  body.news-page .article-card div > p:not(:first-child) {
    display: none;
  }

  body.news-page .news-method-section {
    grid-template-columns: 1fr;
  }

  body.news-page .news-method-steps,
  body.news-page .news-values-section,
  body.product-page .product-advantages__grid,
  body.product-page .product-feature-strip,
  body.about-page .about-principles-section,
  body.about-page .about-capability-list,
  body.contact-page .contact-promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.news-page .news-method-steps article,
  body.news-page .news-values-section article,
  body.product-page .product-advantages article,
  body.product-page .product-feature-strip article,
  body.about-page .about-principles-section article,
  body.about-page .about-capability-list article,
  body.contact-page .contact-promise-grid article {
    min-height: 0;
    padding: 14px 12px;
    border: 1px solid rgba(143, 95, 53, 0.13);
    border-radius: 7px;
  }

  body.contact-page .contact-promise-grid article {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    border-right: 1px solid rgba(143, 95, 53, 0.13);
    border-bottom: 1px solid rgba(143, 95, 53, 0.13);
  }

  body.contact-page .contact-promise-grid .yd-icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  body.contact-page .contact-promise-grid p {
    font-size: 13px;
  }

  body.activity-page .activity-phase-grid,
  body.activity-page .activity-deliverable-section ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.activity-page .activity-phase-grid {
    border: 0;
  }

  body.activity-page .activity-phase-grid article,
  body.activity-page .activity-deliverable-section li {
    min-height: 0;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(143, 95, 53, 0.13);
    border-radius: 7px;
  }

  body.activity-page .activity-phase-grid span {
    font-size: 34px;
  }

  body.activity-page .activity-phase-grid h3 {
    margin-top: 14px;
    font-size: 17px;
  }

  body.activity-page .activity-phase-grid p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
  }

  body.activity-page .activity-deliverable-section li {
    padding-left: 24px;
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  body.agency-home .home-service-list,
  body.news-page .news-method-steps,
  body.news-page .news-values-section,
  body.product-page .product-advantages__grid,
  body.product-page .product-feature-strip,
  body.about-page .about-principles-section,
  body.about-page .about-capability-list,
  body.contact-page .contact-promise-grid,
  body.activity-page .activity-phase-grid,
  body.activity-page .activity-deliverable-section ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.agency-home .home-service-list a,
  body.news-page .news-method-steps article,
  body.news-page .news-values-section article,
  body.product-page .product-advantages article,
  body.product-page .product-feature-strip article,
  body.about-page .about-principles-section article,
  body.about-page .about-capability-list article {
    padding: 13px 11px;
  }

  body.news-page .article-card a {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  body.news-page .article-card h2,
  body.news-page .article-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  body.activity-page .activity-hero h1,
  body.about-page .about-hero h1,
  body.contact-page .contact-hero h1,
  body.product-page .product-agency-hero h1,
  body.news-page .news-agency-hero h1,
  body.case-page .case-hero h1 {
    font-size: clamp(38px, 10.5vw, 50px);
    line-height: 1.16;
  }

  body.activity-page .activity-hero p,
  body.about-page .about-hero p,
  body.contact-page .contact-hero p,
  body.product-page .product-agency-hero p,
  body.news-page .news-agency-hero p,
  body.case-page .case-hero p {
    font-size: 16px;
    line-height: 1.72;
  }

  body.activity-page .activity-core-head h2,
  body.activity-page .activity-section-title h2,
  body.activity-page .activity-deliverable-section h2,
  body.activity-page .activity-process-section h2,
  body.activity-page .activity-cta-section h2,
  body.about-page .about-belief-copy h2,
  body.about-page .about-capability-copy h2,
  body.about-page .about-process-section h2,
  body.about-page .about-cta-section h2 {
    font-size: clamp(30px, 8.7vw, 40px);
    line-height: 1.2;
    text-wrap: balance;
  }

  body.product-page .product-agency-hero {
    min-height: 560px;
  }

  body.product-page .product-hero-tags {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  body.product-page .product-hero-tags span {
    flex: 0 0 auto;
  }
}

/* Mobile detail pass: reduce fixed-bar pressure and polish horizontal browsing. */
@media (max-width: 760px) {
  body:not(.admin-page) {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .mobile-consult-bar {
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    border-radius: 7px;
  }

  .mobile-consult-bar a {
    min-height: 50px;
    font-size: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }

  body.agency-home .home-project-grid,
  body.agency-home .home-process ol,
  body.service-page .service-flow ol,
  body.service-page .activity-delivery__grid,
  body.case-page .case-filter-bar,
  body.case-page .case-gallery,
  body.case-page #caseShowcase,
  body.product-page .product-filter-bar,
  body.product-page .product-hero-tags,
  body.product-page .product-showcase,
  body.product-page #productShowcase,
  body.product-page .gift-showcase__grid,
  body.activity-page .activity-scenario-grid,
  body.activity-page .activity-process-grid,
  body.about-page .about-process-grid {
    scrollbar-width: none;
    scroll-padding-inline: 14px;
  }

  body.agency-home .home-project-grid::-webkit-scrollbar,
  body.agency-home .home-process ol::-webkit-scrollbar,
  body.service-page .service-flow ol::-webkit-scrollbar,
  body.service-page .activity-delivery__grid::-webkit-scrollbar,
  body.case-page .case-filter-bar::-webkit-scrollbar,
  body.case-page .case-gallery::-webkit-scrollbar,
  body.case-page #caseShowcase::-webkit-scrollbar,
  body.product-page .product-filter-bar::-webkit-scrollbar,
  body.product-page .product-hero-tags::-webkit-scrollbar,
  body.product-page .product-showcase::-webkit-scrollbar,
  body.product-page #productShowcase::-webkit-scrollbar,
  body.product-page .gift-showcase__grid::-webkit-scrollbar,
  body.activity-page .activity-scenario-grid::-webkit-scrollbar,
  body.activity-page .activity-process-grid::-webkit-scrollbar,
  body.about-page .about-process-grid::-webkit-scrollbar {
    display: none;
  }

  body.case-page .case-gallery,
  body.case-page #caseShowcase,
  body.product-page .product-showcase,
  body.product-page #productShowcase,
  body.product-page .gift-showcase__grid,
  body.activity-page .activity-scenario-grid {
    padding-inline: 2px 18px;
  }

  body.news-page .article-grid,
  body.news-page .news-insight-grid,
  body.contact-page .contact-form-grid {
    gap: 10px;
  }

  body.contact-page .contact-qr--inline {
    width: min(176px, 64vw);
  }

  body.contact-page .contact-message-form,
  body.contact-page .contact-promise-section,
  .home-footer,
  .service-footer,
  .contact-footer {
    margin-bottom: 14px;
  }
}

@media (max-width: 380px) {
  .mobile-consult-bar a {
    min-height: 48px;
    padding-inline: 4px;
    font-size: 13px;
  }

  body.news-page .article-card a {
    grid-template-columns: 94px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body.news-page .news-method-steps,
  body.news-page .news-values-section {
    grid-template-columns: 1fr;
  }

  body.news-page .news-method-steps article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 16px;
    text-align: left;
  }

  body.news-page .news-method-steps span {
    font-size: 36px;
  }

  body.news-page .news-method-steps h3,
  body.news-page .news-method-steps p,
  body.news-page .news-values-section h2,
  body.news-page .news-values-section p {
    word-break: normal;
    overflow-wrap: normal;
  }

  body.news-page .news-values-section article {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  body.product-page .product-hero-tags {
    width: min(100%, 360px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin-top: 30px;
  }

  body.product-page .product-hero-tags span {
    min-width: 0;
    min-height: 46px;
    justify-content: center;
    padding: 0 12px;
    border-right: 1px solid rgba(184, 144, 85, 0.18);
    border-bottom: 1px solid rgba(184, 144, 85, 0.18);
    white-space: nowrap;
  }

  body.product-page .product-hero-tags span:nth-child(2n) {
    border-right: 0;
  }

  body.product-page .product-hero-tags span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* Mobile footer compaction: avoid long vertical link columns on every page. */
@media (max-width: 760px) {
  .home-footer {
    gap: 22px;
    padding: 34px 14px calc(102px + env(safe-area-inset-bottom));
  }

  .home-footer__brand img {
    width: min(162px, 48vw);
    margin-bottom: 14px;
  }

  .home-footer__brand p {
    max-width: 25em;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.75;
  }

  .home-footer__brand small {
    display: block;
    font-size: 12px;
  }

  .home-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .home-footer__nav > div {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 7px 8px;
    padding: 13px 12px 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
  }

  .home-footer__nav strong {
    flex: 0 0 100%;
    margin: 0 0 2px;
    font-size: 14px;
    line-height: 1.35;
  }

  .home-footer__nav a {
    flex: 0 1 auto;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.45;
    white-space: nowrap;
  }

  .home-footer__contact {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: center;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-footer__contact > a:not(.home-footer__button) {
    grid-column: 1;
    font-size: 20px;
    text-align: left;
  }

  .home-footer__contact > span {
    grid-column: 1;
    text-align: left;
    font-size: 12px;
  }

  .home-footer__button {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 40px;
    padding: 0 14px;
    align-self: center;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .home-footer__nav {
    grid-template-columns: 1fr;
  }

  .home-footer__contact {
    grid-template-columns: 1fr;
  }

  .home-footer__button {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .home-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }

  .home-footer__nav > div {
    display: contents;
  }

  .home-footer__nav strong {
    display: none;
  }

.home-footer__nav a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin: 0;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  color: #f8f5ef;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)),
    url("../images/optimized/hero-agency-image2.jpg") center / cover no-repeat,
    #151512;
}

.not-found-page section {
  width: min(620px, 100%);
}

.not-found-page p {
  margin: 0 0 18px;
  color: #b89055;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.not-found-page h1 {
  margin: 0;
  font-family: "Songti SC", "SimSun", "Noto Serif SC", serif;
  font-size: clamp(44px, 9vw, 76px);
  font-weight: 500;
}

.not-found-page span {
  display: block;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.not-found-page section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

img[data-wechat-qr-img]:not([src]) {
  display: none;
}

/* Alignment patch: keep method/process copy on the same reading grid. */
@media (min-width: 861px) {
  body.news-page .news-method-copy {
    padding-left: max(clamp(42px, 8vw, 122px), calc((100vw - var(--agency-max)) / 2));
  }

  body.news-page .news-method-steps {
    padding-right: max(clamp(42px, 7vw, 110px), calc((100vw - var(--agency-max)) / 2));
  }

  body.activity-page .activity-process-section h2,
  body.activity-page .activity-process-grid {
    width: min(var(--agency-max), calc(100% - 112px));
  }
}

@media (max-width: 760px) {
  body.activity-page .activity-process-grid {
    grid-auto-columns: minmax(220px, 72%);
    gap: 12px;
  }

  body.activity-page .activity-process-grid article,
  body.news-page .news-method-steps article {
    text-align: left;
  }

  body.news-page .news-method-steps article {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
  }

  body.news-page .news-method-steps h3,
  body.activity-page .activity-process-grid h3 {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  body.news-page .news-method-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 38px);
  }

  body.agency-home .home-belief h2 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.34;
    text-align: left;
  }
}
