:root {
    --ink: #211614;
    --ink-2: #4b2b24;
    --rouge: #8c352e;
    --rouge-dark: #66251f;
    --gold: #c7a15d;
    --jade: #6b7d64;
    --paper: #f8f1e6;
    --porcelain: #fffaf3;
    --muted: #7b6a62;
    --line: rgba(108, 66, 52, .14);
    --shadow: 0 24px 70px rgba(45, 23, 18, .16);
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", sans-serif;
    --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    background:
        radial-gradient(circle at 10% 0%, rgba(199, 161, 93, .18), transparent 34rem),
        linear-gradient(180deg, #fffaf2 0%, #f5eadc 48%, #fff9f1 100%);
}

h1,
h2,
h3,
.brand strong,
.hero-card strong,
.footer-brand,
.article-detail h1 {
    font-family: var(--font-display);
    font-weight: 700;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    gap: 1rem;
    align-content: center;
    color: #fff8ec;
    background:
        radial-gradient(circle at 50% 38%, rgba(199, 161, 93, .24), transparent 18rem),
        linear-gradient(135deg, #2b1714, #6b2721);
    transition: opacity .55s ease, visibility .55s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.8rem;
    background: radial-gradient(circle at 35% 20%, #dfbf78, #8f342d 72%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
    animation: loaderBreath 1.6s ease-in-out infinite;
}

.loader-copy {
    display: grid;
    gap: .25rem;
    text-align: center;
}

.loader-copy span {
    color: rgba(255, 248, 236, .62);
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.loader-copy strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: .16em;
}

.loader-line {
    position: relative;
    width: min(260px, 58vw);
    height: 1px;
    overflow: hidden;
    background: rgba(255, 248, 236, .18);
}

.loader-line::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 248, 236, .88), transparent);
    animation: loaderLine 1.25s ease-in-out infinite;
}

@keyframes loaderBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes loaderLine {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(260%); }
}

@media (prefers-reduced-motion: reduce) {
    .loader-mark,
    .loader-line::after {
        animation: none;
    }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-ribbon {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: .55rem 1rem;
    font-size: .78rem;
    letter-spacing: .08em;
    color: #f9e8d4;
    background: #2b1714;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(22px);
    background: rgba(255, 250, 243, .82);
    border-bottom: 1px solid var(--line);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff8ec;
    border-radius: 50% 50% 45% 55%;
    background: radial-gradient(circle at 30% 20%, #d7b975, #7c2d27 70%);
    box-shadow: 0 14px 34px rgba(124, 45, 39, .28);
}

.brand-logo {
    width: auto;
    max-width: 190px;
    height: 52px;
    object-fit: contain;
}

.brand strong {
    display: block;
    font-size: 1.18rem;
    letter-spacing: .12em;
}

.brand em {
    display: block;
    margin-top: .15rem;
    color: var(--muted);
    font-size: .68rem;
    font-style: normal;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: .8rem .92rem;
    color: #493129;
    font-size: .95rem;
}

.nav-item:hover > a {
    color: var(--rouge);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 150px;
    padding: .55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: .2s ease;
    border: 1px solid rgba(199, 161, 93, .28);
    border-radius: 18px;
    background: rgba(255, 250, 243, .96);
    box-shadow: var(--shadow);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: .62rem .8rem;
    border-radius: 12px;
    color: #5d4037;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    background: #f5e7d6;
}

.header-search {
    position: relative;
    flex: 0 0 min(220px, 22vw);
}

.header-search input {
    width: 100%;
    height: 38px;
    padding: 0 2.45rem 0 .95rem;
    border: 1px solid rgba(108, 66, 52, .15);
    border-radius: 999px;
    color: var(--ink);
    outline: none;
    background: rgba(255, 250, 243, .72);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-search input:focus {
    border-color: rgba(140, 53, 46, .42);
    background: #fffaf3;
    box-shadow: 0 0 0 4px rgba(140, 53, 46, .08);
}

.header-search button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    color: #fff8ec;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #9a3d34, #6b211e);
}

.nav-toggle { display: none; }

.hero {
    position: relative;
    min-height: calc(100vh - 110px);
    padding: 9rem max(1.5rem, calc((100vw - 1180px) / 2)) 6rem;
    color: #fff8ec;
    overflow: hidden;
    background: #2b1714;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto auto;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(255, 248, 236, .16);
    border-radius: 50%;
    transform: translateX(20%);
    z-index: 2;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slides {
    z-index: 0;
}

.hero-slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: opacity .9s ease, transform 7s ease;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.eyebrow,
.section-title span,
.split-copy span,
.page-hero span,
.service-card span,
.case-card span,
.expert-card span,
.article-card span,
.article-detail span {
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 1rem 0 1.2rem;
    font-size: clamp(2.7rem, 6.4vw, 6.4rem);
    line-height: 1.04;
    letter-spacing: .04em;
    text-shadow: 0 20px 50px rgba(0, 0, 0, .22);
}

.hero p {
    max-width: 580px;
    color: rgba(255, 248, 236, .88);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn,
.footer-cta,
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .8rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
}

.btn.primary,
.footer-cta,
.link-button,
.primary {
    color: #fff8ec;
    background: linear-gradient(135deg, #9a3d34, #6b211e);
    box-shadow: 0 16px 40px rgba(108, 33, 30, .22);
}

.btn.ghost {
    color: #fff8ec;
    border-color: rgba(255, 248, 236, .46);
    background: rgba(255, 255, 255, .08);
}

.btn.light {
    color: var(--rouge);
    border-color: rgba(140, 53, 46, .2);
    background: rgba(255, 250, 243, .86);
}

.hero-card {
    position: absolute;
    z-index: 3;
    right: max(1.5rem, calc((100vw - 1180px) / 2));
    bottom: 4rem;
    width: min(360px, calc(100% - 3rem));
    padding: 1.5rem;
    border: 1px solid rgba(255, 248, 236, .22);
    border-radius: 28px;
    background: rgba(36, 18, 15, .48);
    backdrop-filter: blur(18px);
}

.hero-card strong {
    display: block;
    margin: .45rem 0;
    font-size: 1.45rem;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: max(1.5rem, calc((100vw - 1180px) / 2));
    bottom: 3rem;
    display: flex;
    gap: .55rem;
}

.hero-dots button {
    width: 38px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 248, 236, .45);
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
}

.hero-dots button.active {
    border-color: transparent;
    background: var(--gold);
}

.section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 6rem 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-title h2,
.split-copy h2,
.split-copy h1,
.page-hero h1 {
    margin: .75rem 0 1rem;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: .06em;
}

.section-title p,
.split-copy p,
.page-hero p,
.muted {
    color: var(--muted);
    line-height: 1.9;
}

.service-grid,
.case-grid,
.news-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card,
.case-card,
.article-card,
.expert-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 250, 243, .82);
    box-shadow: 0 18px 50px rgba(73, 38, 30, .08);
}

.service-card img,
.case-card img,
.article-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card > div,
.case-card > div,
.article-card,
.expert-card > div {
    padding: 1.35rem;
}

.service-card h3,
.case-card h3,
.expert-card h3,
.article-card h2 {
    margin: .6rem 0 .6rem;
    font-size: 1.35rem;
}

.service-card p,
.case-card p,
.expert-card p,
.article-card p {
    color: var(--muted);
    line-height: 1.75;
}

.service-card em {
    color: var(--rouge);
    font-style: normal;
    font-weight: 700;
}

.split {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 4rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: var(--shadow);
}

.split-copy {
    padding: 1rem;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--rouge);
    font-weight: 700;
}

.dark-panel {
    width: 100%;
    max-width: none;
    padding: 6rem max(1.5rem, calc((100vw - 1180px) / 2));
    color: #fff8ec;
    background:
        radial-gradient(circle at 70% 20%, rgba(199, 161, 93, .24), transparent 32rem),
        linear-gradient(135deg, #2b1714, #5b241f);
}

.light p { color: rgba(255, 248, 236, .74); }

.expert-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.expert-row.all {
    grid-template-columns: repeat(3, 1fr);
}

.expert-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.dark-panel .expert-card {
    border-color: rgba(255, 248, 236, .14);
    background: rgba(255, 248, 236, .08);
}

.news-band {
    padding-top: 3rem;
}

.news-list {
    display: grid;
    gap: .85rem;
}

.news-item {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 243, .78);
}

.news-item strong {
    font-size: 1.1rem;
}

.news-item em {
    color: var(--muted);
    font-style: normal;
}

.page-hero {
    padding: 7rem max(1.5rem, calc((100vw - 1180px) / 2)) 3.8rem;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(199, 161, 93, .26), transparent 28rem),
        linear-gradient(180deg, rgba(255, 250, 243, .92), rgba(245, 234, 220, .55));
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    align-items: center;
    width: min(860px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.breadcrumbs a {
    color: var(--rouge);
    font-weight: 700;
}

.breadcrumbs a::after {
    content: "/";
    margin-left: .55rem;
    color: rgba(108, 66, 52, .36);
    font-weight: 400;
}

.breadcrumbs span {
    color: #4f3b35;
}

.page-split {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 6rem 0 2rem;
}

.filter-tabs,
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 2rem;
}

.filter-tabs a,
.tabs a {
    padding: .7rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 243, .82);
}

.service-card.large {
    display: grid;
    grid-template-columns: 44% 1fr;
    grid-column: span 3;
}

.service-card.large img {
    height: 100%;
    min-height: 320px;
}

.article-detail {
    width: min(860px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4.2rem 0 5rem;
}

.article-detail img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.article-detail h1 {
    max-width: 780px;
    margin: 1rem 0 .85rem;
    font-size: clamp(1.9rem, 3.6vw, 3.25rem);
    line-height: 1.18;
    letter-spacing: .04em;
}

.article-body {
    margin-top: 2rem;
    color: #4f3b35;
    font-size: 1.08rem;
    line-height: 2.1;
}

.article-body.mini {
    margin-top: 1rem;
    max-height: 9rem;
    overflow: hidden;
    font-size: .95rem;
    line-height: 1.8;
}

.article-body img {
    height: auto;
    margin: 1rem 0;
    border-radius: 18px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: -2rem auto 5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 243, .78);
}

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

.pagination div {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.pagination a {
    min-width: 2.4rem;
    padding: .56rem .78rem;
    border: 1px solid rgba(108, 66, 52, .12);
    border-radius: 999px;
    color: var(--rouge);
    font-weight: 700;
    text-align: center;
    background: rgba(255, 255, 255, .58);
}

.pagination a.active,
.pagination a:hover {
    color: #fff8ec;
    border-color: transparent;
    background: linear-gradient(135deg, #8c352e, #5d211d);
}

.store-meta {
    display: inline-flex;
    margin: .5rem 0 1rem;
    padding: .55rem .9rem;
    color: var(--rouge);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 243, .86);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.metrics div {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 250, 243, .84);
    text-align: center;
}

.metrics strong {
    display: block;
    color: var(--rouge);
    font-size: 2rem;
}

.culture-page {
    background:
        radial-gradient(circle at 88% 8%, rgba(199, 161, 93, .18), transparent 24rem),
        linear-gradient(180deg, rgba(255, 250, 243, .66), rgba(245, 234, 220, .28));
}

.culture-tabs {
    position: sticky;
    top: 79px;
    z-index: 30;
    display: flex;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 243, .88);
    backdrop-filter: blur(16px);
}

.culture-tabs a {
    padding: .66rem 1rem;
    border: 1px solid rgba(108, 66, 52, .13);
    border-radius: 999px;
    color: #5d4037;
    background: rgba(255, 255, 255, .54);
}

.culture-tabs a.active,
.culture-tabs a:hover {
    color: #fff8ec;
    border-color: transparent;
    background: linear-gradient(135deg, #8c352e, #5d211d);
}

.culture-hero,
.craft-hero {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 5rem 0 3rem;
}

.culture-hero {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 2.5rem;
    align-items: end;
}

.culture-hero.compact {
    align-items: center;
}

.culture-hero-copy,
.craft-hero-copy {
    padding: clamp(1.2rem, 3vw, 2.5rem);
}

.culture-hero-copy span,
.culture-manifesto span,
.culture-entry-grid span,
.craft-hero-copy span,
.craft-definition span,
.craft-people small,
.craft-voice-head span {
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.culture-hero h1,
.craft-hero h1 {
    margin: .9rem 0 1rem;
    font-size: clamp(2.6rem, 6vw, 6.4rem);
    line-height: .96;
    letter-spacing: .08em;
}

.culture-hero p,
.craft-hero p,
.culture-manifesto p,
.craft-definition p,
.craft-voice-head p {
    color: var(--muted);
    line-height: 2;
}

.culture-hero-image img,
.craft-hero-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 44px;
    box-shadow: var(--shadow);
}

.culture-manifesto,
.craft-definition {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-top: 3rem;
}

.culture-manifesto h2,
.craft-definition h2,
.craft-voice-head h2 {
    margin: .7rem 0 0;
    font-size: clamp(2rem, 4vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: .05em;
}

.culture-manifesto p,
.craft-definition p {
    margin: 0;
    padding: 1.6rem;
    border-left: 2px solid rgba(140, 53, 46, .28);
    background: rgba(255, 250, 243, .58);
}

.culture-entry-grid,
.craft-card-grid,
.voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.culture-entry-grid a,
.craft-card-grid article,
.voice-list article,
.timeline-list article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 250, 243, .84);
    box-shadow: 0 18px 48px rgba(73, 38, 30, .08);
}

.culture-entry-grid a {
    min-height: 270px;
    padding: 1.5rem;
}

.culture-entry-grid a::after,
.craft-card-grid article::after {
    content: "";
    position: absolute;
    inset: auto -18% -32% auto;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background: rgba(199, 161, 93, .14);
}

.culture-entry-grid h3,
.craft-card-grid h3,
.timeline-list h3 {
    margin: 1rem 0 .7rem;
    font-size: 1.45rem;
}

.culture-entry-grid p,
.craft-card-grid p,
.voice-list p,
.timeline-list p {
    color: var(--muted);
    line-height: 1.85;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-list article {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.4rem;
    padding: 1.35rem 1.5rem;
}

.timeline-list strong {
    color: var(--rouge);
    font-size: 2rem;
}

.craft-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 2rem;
    align-items: center;
}

.craft-hero-copy {
    position: relative;
    margin-left: -7rem;
    border: 1px solid rgba(255, 248, 236, .4);
    border-radius: 36px;
    background: rgba(255, 250, 243, .86);
    box-shadow: 0 18px 60px rgba(73, 38, 30, .12);
}

.craft-hero-image img {
    min-height: 640px;
}

.craft-card-grid article,
.voice-list article {
    padding: 1.45rem;
}

.craft-card-grid h3 {
    color: var(--rouge);
}

.craft-voice {
    width: 100%;
    max-width: none;
    padding: 6rem max(1.5rem, calc((100vw - 1180px) / 2));
    color: #fff8ec;
    background:
        radial-gradient(circle at 15% 20%, rgba(199, 161, 93, .22), transparent 28rem),
        linear-gradient(135deg, #2b1714, #5b241f);
}

.craft-voice-head {
    max-width: 740px;
    margin-bottom: 2rem;
}

.craft-voice-head p {
    color: rgba(255, 248, 236, .72);
}

.voice-list article {
    border-color: rgba(255, 248, 236, .12);
    background: rgba(255, 248, 236, .08);
}

.voice-list p {
    color: rgba(255, 248, 236, .82);
}

.voice-list strong,
.voice-list span {
    display: block;
}

.voice-list strong {
    margin-top: 1.2rem;
    color: var(--gold);
}

.voice-list span {
    margin-top: .2rem;
    color: rgba(255, 248, 236, .58);
    font-size: .9rem;
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 1.25rem;
}

.lead-form,
.contact-info {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(255, 250, 243, .9);
    box-shadow: 0 18px 50px rgba(73, 38, 30, .08);
}

label {
    display: grid;
    gap: .5rem;
    margin-bottom: 1rem;
    color: #5b4039;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(108, 66, 52, .2);
    border-radius: 16px;
    padding: .88rem 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .76);
    font: inherit;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.notice {
    margin: 1rem 0;
    padding: .9rem 1rem;
    border-radius: 16px;
}

.notice.success { color: #245c35; background: #e8f3df; }
.notice.error { color: #8d2a24; background: #f9e1dc; }

.site-footer {
    padding: 4rem max(1.5rem, calc((100vw - 1180px) / 2)) 1.5rem;
    color: #f7ead7;
    background: #241412;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: .12em;
}

.footer-brand img {
    width: auto;
    max-width: 168px;
    max-height: 58px;
    object-fit: contain;
}

.footer-brand span {
    display: inline-block;
}

.site-footer a {
    display: block;
    margin: .5rem 0;
    color: rgba(247, 234, 215, .78);
}

.copyright {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 234, 215, .12);
    color: rgba(247, 234, 215, .58);
    font-size: .9rem;
}

.friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 234, 215, .12);
    color: rgba(247, 234, 215, .7);
    font-size: .9rem;
}

.friend-links span {
    color: var(--gold);
}

.friend-links a {
    display: inline;
    margin: 0;
}

.footer-qr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 118px));
    gap: .9rem;
    margin: 1rem 0;
}

.footer-qr {
    display: grid;
    gap: .45rem;
    justify-items: center;
    padding: .7rem;
    border: 1px solid rgba(247, 234, 215, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
}

.footer-qr img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
}

.footer-qr small,
.footer-qr span {
    text-align: center;
    color: rgba(247, 234, 215, .62);
    font-size: .86rem;
}

.not-found-page {
    min-height: 58vh;
    display: grid;
    place-items: center;
    padding: 6rem 1rem;
}

.not-found-card {
    width: min(760px, 100%);
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid var(--line);
    border-radius: 42px;
    background: rgba(255, 250, 243, .9);
    box-shadow: var(--shadow);
    text-align: center;
}

.not-found-card > span {
    color: var(--gold);
    font-size: .86rem;
    letter-spacing: .3em;
}

.not-found-card h1 {
    margin: .8rem 0 1rem;
    font-size: clamp(2rem, 5vw, 4rem);
}

.not-found-card p {
    color: var(--muted);
    line-height: 1.9;
}

.not-found-card .hero-actions {
    justify-content: center;
}

.floating-contact {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: grid;
    gap: .5rem;
}

.floating-contact a {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #fff8ec;
    border-radius: 50%;
    background: linear-gradient(135deg, #9a3d34, #6b211e);
    box-shadow: 0 12px 32px rgba(108, 33, 30, .28);
}

.search-hero {
    padding-bottom: 4rem;
}

.search-large-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, auto) auto;
    gap: .85rem;
    width: min(760px, 100%);
    margin: 2rem auto 0;
    padding: .55rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 999px;
    background: rgba(255, 250, 243, .82);
    box-shadow: 0 18px 48px rgba(73, 38, 30, .08);
}

.search-large-form input {
    min-height: 48px;
    padding: 0 1.1rem;
    border: 0;
    color: var(--ink);
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.search-large-form select {
    min-height: 48px;
    min-width: 160px;
    padding: 0 .95rem;
    border: 1px solid rgba(108, 66, 52, .12);
    border-radius: 999px;
    color: #5b4038;
    outline: none;
    background: rgba(255, 250, 243, .78);
}

.search-large-form button {
    min-width: 108px;
    border: 0;
    border-radius: 999px;
    color: #fff8ec;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #9a3d34, #6b211e);
}

.search-results {
    padding-top: 3rem;
}

.search-summary {
    max-width: 760px;
    margin-bottom: 2rem;
}

.search-summary span,
.search-empty::before {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.search-summary h2,
.search-empty h2 {
    margin: .65rem 0 .6rem;
    font-size: clamp(1.9rem, 3.4vw, 3.3rem);
    line-height: 1.12;
}

.search-summary p,
.search-empty p {
    color: var(--muted);
    line-height: 1.9;
}

.search-result-list {
    display: grid;
    gap: .9rem;
}

.search-result-card {
    position: relative;
    display: block;
    padding: 1.35rem 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 28px;
    background: rgba(255, 250, 243, .82);
    box-shadow: 0 16px 42px rgba(73, 38, 30, .06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.search-result-card:hover {
    transform: translateY(-2px);
    border-color: rgba(140, 53, 46, .26);
    box-shadow: 0 22px 58px rgba(73, 38, 30, .1);
}

.search-result-card span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.search-result-card h3 {
    margin: .6rem 0 .45rem;
    color: var(--rouge);
    font-size: 1.35rem;
}

.search-result-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.search-result-card small {
    display: inline-flex;
    margin-top: .8rem;
    color: var(--ink-2);
    font-weight: 700;
}

.search-empty {
    padding: 2rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 30px;
    background: rgba(255, 250, 243, .78);
}

.search-empty::before {
    content: "Search";
}

.charity-page {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 8%, rgba(199, 161, 93, .18), transparent 24rem),
        radial-gradient(circle at 86% 20%, rgba(140, 53, 46, .10), transparent 28rem),
        linear-gradient(180deg, #fffaf3 0%, #f7edde 50%, #fffaf3 100%);
}

.charity-hero {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(340px, 1.14fr);
    gap: clamp(1.8rem, 5vw, 5rem);
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.charity-hero-copy {
    min-width: 0;
}

.charity-hero-copy h1,
.charity-intro h2,
.charity-action-section h2 {
    font-family: var(--font-display);
}

.charity-hero-copy h1 {
    margin: 1rem 0 1.15rem;
    color: #2f1916;
    font-size: clamp(2.65rem, 5.6vw, 5.7rem);
    line-height: 1.08;
    letter-spacing: .06em;
    text-wrap: balance;
}

.charity-hero-copy p {
    max-width: 560px;
    margin: 0;
    color: #5f4a42;
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    line-height: 2.05;
}

.charity-hero-photo {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: 46px;
    background: #eadcc9;
    box-shadow: 0 30px 82px rgba(57, 25, 20, .17);
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform .24s ease, box-shadow .24s ease;
}

.charity-hero-photo.is-hovered {
    box-shadow: 0 34px 90px rgba(57, 25, 20, .22);
}

.charity-hero-photo img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    transition: transform .45s ease;
}

.charity-hero-photo.is-hovered img {
    transform: scale(1.035);
}

.charity-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 248, 236, .28), transparent 18rem),
        linear-gradient(180deg, transparent 42%, rgba(37, 17, 14, .58));
    pointer-events: none;
}

.charity-hero-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    display: grid;
    gap: .3rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 248, 236, .2);
    border-radius: 24px;
    color: #fff8ec;
    background: rgba(43, 23, 20, .52);
    backdrop-filter: blur(16px);
}

.charity-hero-photo figcaption strong {
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .2em;
}

.charity-hero-photo figcaption span {
    color: rgba(255, 248, 236, .82);
    line-height: 1.75;
}

.charity-intro {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.charity-intro h2 {
    margin: .85rem 0 1rem;
    color: #2f1916;
    font-size: clamp(2rem, 4.1vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: .05em;
    text-wrap: balance;
}

.charity-intro > p {
    margin: 0;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 34px;
    color: #513d36;
    font-size: 1.06rem;
    line-height: 2.08;
    background:
        linear-gradient(150deg, rgba(255, 250, 243, .95), rgba(255, 244, 228, .72)),
        radial-gradient(circle at 100% 0%, rgba(199, 161, 93, .16), transparent 14rem);
    box-shadow: 0 22px 60px rgba(73, 38, 30, .08);
}

.charity-action-section {
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.charity-action-section .refined-title p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.charity-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2rem;
}

.charity-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, .84fr) minmax(0, 1.16fr);
    min-height: 270px;
    overflow: hidden;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 34px;
    background: rgba(255, 250, 243, .78);
    box-shadow: 0 18px 48px rgba(73, 38, 30, .08);
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    will-change: transform;
}

.charity-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 248, 236, .42), transparent 15rem);
    pointer-events: none;
    transition: opacity .24s ease;
}

.charity-card.is-hovered {
    border-color: rgba(140, 53, 46, .26);
    box-shadow: 0 26px 68px rgba(73, 38, 30, .14);
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
}

.charity-card.is-hovered::after {
    opacity: 1;
}

.charity-card-image {
    min-height: 270px;
    overflow: hidden;
}

.charity-card-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

.charity-card.is-hovered .charity-card-image img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.06);
}

.charity-card-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.3rem, 3vw, 2rem);
}

.charity-card-copy span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.charity-card-copy h3 {
    margin: .8rem 0 .7rem;
    color: var(--rouge);
    font-size: clamp(1.24rem, 1.9vw, 1.58rem);
    line-height: 1.35;
}

.charity-card-copy p {
    margin: 0;
    color: #65534b;
    line-height: 1.9;
}

.about-brand-page {
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 6%, rgba(199, 161, 93, .16), transparent 24rem),
        radial-gradient(circle at 86% 18%, rgba(140, 53, 46, .10), transparent 28rem),
        linear-gradient(180deg, #fffaf3 0%, #f7edde 48%, #fffaf3 100%);
}

.about-brand-copy h1,
.about-story-title h2,
.about-scale-section h2,
.about-honor-head h2 {
    font-family: var(--font-display);
}

.about-brand-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: clamp(1.8rem, 5vw, 5rem);
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.4rem, 6vw, 5rem);
}

.about-brand-copy {
    min-width: 0;
}

.about-brand-copy h1 {
    margin: 1rem 0 1.15rem;
    color: #2f1916;
    font-size: clamp(2.75rem, 5.7vw, 5.8rem);
    line-height: 1.08;
    letter-spacing: .06em;
    text-wrap: balance;
}

.about-brand-copy p {
    max-width: 580px;
    margin: 0;
    color: #5f4a42;
    font-size: clamp(1.02rem, 1.6vw, 1.2rem);
    line-height: 2.05;
}

.about-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 2rem;
}

.about-hero-facts span {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 24px;
    color: #684f45;
    background: rgba(255, 250, 243, .72);
}

.about-hero-facts strong {
    display: block;
    color: var(--rouge);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1;
}

.about-brand-photo {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: 46px;
    background: #eadcc9;
    box-shadow: 0 30px 82px rgba(57, 25, 20, .17);
}

.about-brand-photo img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.about-brand-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(37, 17, 14, .58));
    pointer-events: none;
}

.about-brand-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    display: grid;
    gap: .3rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(255, 248, 236, .2);
    border-radius: 24px;
    color: #fff8ec;
    background: rgba(43, 23, 20, .52);
    backdrop-filter: blur(16px);
}

.about-brand-photo figcaption strong {
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .2em;
}

.about-brand-photo figcaption span {
    color: rgba(255, 248, 236, .82);
    line-height: 1.75;
}

.about-brand-story {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.about-story-title {
    position: sticky;
    top: 150px;
}

.about-story-title h2,
.about-scale-section h2,
.about-honor-head h2 {
    margin: .85rem 0 1rem;
    color: #2f1916;
    font-size: clamp(2rem, 4.2vw, 4.35rem);
    line-height: 1.08;
    letter-spacing: .05em;
    text-wrap: balance;
}

.about-story-body {
    display: grid;
    gap: 1rem;
}

.about-story-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 34px;
    background:
        linear-gradient(150deg, rgba(255, 250, 243, .95), rgba(255, 244, 228, .72)),
        radial-gradient(circle at 100% 0%, rgba(199, 161, 93, .16), transparent 14rem);
    box-shadow: 0 22px 60px rgba(73, 38, 30, .08);
}

.about-story-card::before {
    content: "美业常青树";
    position: absolute;
    right: 1.5rem;
    bottom: .4rem;
    color: rgba(140, 53, 46, .08);
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: .08em;
    pointer-events: none;
}

.about-story-card p {
    position: relative;
    margin: 0;
    color: #513d36;
    font-size: 1.06rem;
    line-height: 2.08;
}

.about-belief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-belief-grid article {
    padding: 1.35rem;
    border: 1px solid rgba(108, 66, 52, .13);
    border-radius: 28px;
    background: rgba(255, 250, 243, .66);
}

.about-belief-grid small,
.about-scale-grid span {
    color: var(--gold);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.about-belief-grid strong {
    display: block;
    margin: .75rem 0 .55rem;
    color: var(--rouge);
    font-size: clamp(1.22rem, 1.8vw, 1.48rem);
}

.about-belief-grid p,
.about-scale-section .refined-title p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.about-scale-section {
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.about-scale-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-scale-grid article {
    min-height: 230px;
    padding: 1.55rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 32px;
    background: rgba(255, 250, 243, .78);
    box-shadow: 0 18px 48px rgba(73, 38, 30, .07);
}

.about-scale-grid strong {
    display: block;
    margin: 1.2rem 0 .7rem;
    color: var(--rouge);
    font-size: clamp(1.55rem, 3.2vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: .02em;
}

.about-scale-grid p {
    margin: 0;
    color: #65534b;
    line-height: 1.85;
}

.about-honor-panel {
    padding: clamp(4.5rem, 8vw, 7rem) 1rem;
    border-top: 1px solid rgba(108, 66, 52, .14);
    background:
        radial-gradient(circle at 16% 10%, rgba(199, 161, 93, .18), transparent 22rem),
        linear-gradient(180deg, rgba(255, 250, 243, .72), rgba(247, 237, 222, .86));
}

.about-honor-inner {
    display: grid;
    grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
    gap: clamp(2rem, 5vw, 5rem);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.about-honor-head {
    position: sticky;
    top: 150px;
    align-self: start;
}

.about-honor-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.95;
}

.about-honor-timeline {
    display: grid;
    gap: .85rem;
}

.about-honor-timeline article {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.05rem 0 1.05rem 1.1rem;
    border-left: 2px solid rgba(140, 53, 46, .22);
}

.about-honor-timeline time {
    color: var(--rouge);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.about-honor-timeline h3 {
    margin: 0 0 .35rem;
    color: #321916;
    font-size: clamp(1.08rem, 1.5vw, 1.26rem);
    line-height: 1.45;
}

.about-honor-timeline p {
    margin: 0;
    color: var(--muted);
    line-height: 1.82;
}

@media (max-width: 920px) {
    .top-ribbon { display: none; }
    .nav-shell { min-height: 68px; }
    .header-search {
        flex-basis: min(210px, 42vw);
        margin-left: auto;
    }
    .nav-toggle {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        color: #fff8ec;
        background: var(--rouge);
    }
    .main-nav {
        position: fixed;
        inset: 68px 1rem auto 1rem;
        display: none;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 250, 243, .98);
    box-shadow: var(--shadow);
}

.cms-editor-preview [data-cms-section] {
    position: relative;
    outline: 2px solid rgba(140, 53, 46, .22);
    outline-offset: 6px;
    cursor: pointer;
}

.cms-editor-preview [data-cms-section]::before {
    content: attr(data-cms-label);
    position: absolute;
    z-index: 60;
    top: .7rem;
    left: .7rem;
    max-width: calc(100% - 1.4rem);
    padding: .36rem .64rem;
    border-radius: 999px;
    color: #fff8ec;
    background: rgba(102, 37, 31, .92);
    box-shadow: 0 12px 28px rgba(45, 23, 18, .18);
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    pointer-events: none;
}

.cms-editor-preview [data-cms-section]:hover,
.cms-editor-preview [data-cms-section].cms-active-section {
    outline-color: rgba(199, 161, 93, .82);
    box-shadow: 0 0 0 8px rgba(199, 161, 93, .12);
}

.cms-editor-preview [data-cms-field]:hover {
    background: rgba(255, 250, 243, .22);
}
    .main-nav.open { display: block; }
    .nav-dropdown {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: #f7eadc;
    }
    .culture-tabs {
        top: 68px;
        justify-content: flex-start;
        overflow-x: auto;
    }
    .about-brand-hero,
    .about-brand-story,
    .about-honor-inner,
    .charity-hero,
    .charity-intro {
        grid-template-columns: 1fr;
    }
    .about-story-title,
    .about-honor-head {
        position: static;
    }
    .about-brand-photo,
    .about-brand-photo img,
    .charity-hero-photo,
    .charity-hero-photo img {
        min-height: 390px;
    }
    .charity-card-grid,
    .charity-card {
        grid-template-columns: 1fr;
    }
    .about-scale-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 760px;
        padding-top: 6rem;
    }
    .hero-card {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 2rem;
    }
    .hero-dots {
        bottom: 1rem;
    }
    .service-grid,
    .case-grid,
    .expert-row,
    .expert-row.all,
    .news-cards,
    .footer-grid,
    .metrics,
    .contact-panel,
    .split,
    .culture-hero,
    .culture-manifesto,
    .culture-entry-grid,
    .craft-hero,
    .craft-definition,
    .craft-card-grid,
    .voice-list {
        grid-template-columns: 1fr;
    }
    .culture-hero-image img,
    .craft-hero-image img {
        min-height: 360px;
    }
    .craft-hero-copy {
        margin-left: 0;
        margin-top: -5rem;
    }
    .timeline-list article {
        grid-template-columns: 1fr;
    }
    .service-card.large {
        grid-template-columns: 1fr;
        grid-column: auto;
    }
    .news-item {
        grid-template-columns: 1fr;
    }
    .split-image img {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .brand em { display: none; }
    .nav-shell {
        flex-wrap: wrap;
        padding: .65rem 0;
    }
    .brand { flex: 1 1 auto; }
    .header-search {
        order: 3;
        flex: 1 0 100%;
        width: 100%;
        max-width: calc(100vw - 2rem);
        margin: 0;
    }
    .header-search input {
        min-width: 0;
    }
    .main-nav {
        inset: 120px .75rem auto .75rem;
    }
    .hero h1 { font-size: 2.85rem; }
    .section { padding: 4rem 0; }
    .search-large-form {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }
    .search-large-form select {
        width: 100%;
        border-radius: 18px;
    }
    .search-large-form button {
        min-height: 46px;
    }
    .pagination {
        display: grid;
        margin-top: -1rem;
    }
    .footer-qr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-card img,
    .case-card img,
    .article-card img {
        height: 220px;
    }
    .floating-contact {
        right: .75rem;
        bottom: .75rem;
    }
    .about-brand-page * {
        min-width: 0;
    }
    .charity-page * {
        min-width: 0;
    }
    .about-brand-hero,
    .charity-hero {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        padding-top: 3rem;
    }
    .about-brand-copy h1,
    .charity-hero-copy h1 {
        font-size: 3rem;
        letter-spacing: .04em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .about-brand-copy p,
    .about-story-card p,
    .about-belief-grid p,
    .about-scale-grid p,
    .about-honor-head p,
    .about-honor-timeline p,
    .charity-hero-copy p,
    .charity-intro > p,
    .charity-card-copy p {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .about-hero-facts,
    .about-belief-grid,
    .about-honor-timeline article {
        grid-template-columns: 1fr;
    }
    .about-brand-photo,
    .about-brand-photo img,
    .charity-hero-photo,
    .charity-hero-photo img {
        min-height: 310px;
        border-radius: 30px;
    }
    .charity-card,
    .charity-card-image,
    .charity-card-image img {
        min-height: 230px;
        border-radius: 28px;
    }
    .about-brand-photo figcaption,
    .charity-hero-photo figcaption {
        right: .8rem;
        bottom: .8rem;
        left: .8rem;
        max-width: calc(100% - 1.6rem);
        padding: .85rem .95rem;
        font-size: .9rem;
    }
    .about-honor-timeline article {
        padding-left: .95rem;
    }
}

.culture-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.culture-kicker::before {
    content: "";
    width: 3rem;
    height: 1px;
    margin-right: .9rem;
    background: currentColor;
    opacity: .72;
}

.craftsmanship-page,
.enterprise-history-page {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(107, 125, 100, .12), transparent 24rem),
        radial-gradient(circle at 86% 20%, rgba(140, 53, 46, .12), transparent 28rem),
        linear-gradient(180deg, #fffaf3 0%, #f7edde 52%, #fffaf3 100%);
}

.craftsmanship-stage-copy h1,
.craftsmanship-definition-title h2,
.craftsmanship-voice-head h2,
.history-record-copy h1,
.history-year,
.refined-title h2 {
    font-family: "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", serif;
}

.craftsmanship-stage {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
    gap: clamp(1.6rem, 5vw, 5rem);
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.craftsmanship-stage-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.craftsmanship-stage-copy h1 {
    margin: 1rem 0 1.25rem;
    color: #321916;
    font-size: clamp(2.8rem, 6.8vw, 6.6rem);
    line-height: 1.02;
    letter-spacing: .06em;
}

.craftsmanship-stage-copy h1 em {
    display: block;
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(140, 53, 46, .54);
    text-shadow: none;
}

.craftsmanship-stage-copy p {
    max-width: 560px;
    margin: 0;
    color: #5f4a42;
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    line-height: 2.05;
    overflow-wrap: anywhere;
}

.craftsmanship-stage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 2rem;
}

.craftsmanship-stage-meta span {
    padding: .62rem 1rem;
    border: 1px solid rgba(140, 53, 46, .15);
    border-radius: 999px;
    color: #6d332d;
    background: rgba(255, 250, 243, .74);
}

.craftsmanship-stage-photo {
    position: relative;
    min-height: 580px;
    margin: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 44px;
    box-shadow: 0 28px 80px rgba(57, 25, 20, .18);
}

.craftsmanship-stage-photo img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}

.craftsmanship-stage-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(31, 14, 12, .62));
    pointer-events: none;
}

.craftsmanship-stage-photo figcaption {
    position: absolute;
    z-index: 2;
    right: 1.4rem;
    bottom: 1.4rem;
    left: 1.4rem;
    display: grid;
    gap: .35rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255, 248, 236, .22);
    border-radius: 24px;
    color: #fff8ec;
    background: rgba(43, 23, 20, .52);
    backdrop-filter: blur(16px);
}

.craftsmanship-stage-photo figcaption span {
    color: rgba(255, 248, 236, .78);
    line-height: 1.7;
}

.craftsmanship-definition {
    display: grid;
    grid-template-columns: minmax(260px, .76fr) minmax(0, 1.24fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.craftsmanship-definition-title {
    position: sticky;
    top: 150px;
}

.craftsmanship-definition-title h2 {
    margin: .85rem 0 1rem;
    color: #2f1916;
    font-size: clamp(2rem, 4.4vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: .06em;
}

.craftsmanship-definition-title small {
    display: block;
    color: rgba(140, 53, 46, .18);
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: .02em;
}

.craftsmanship-definition-body > p {
    margin: 0 0 2rem;
    padding: 1.6rem 0 1.6rem 1.6rem;
    border-left: 2px solid rgba(140, 53, 46, .32);
    color: #5f4a42;
    font-size: 1.08rem;
    line-height: 2.05;
}

.craftsmanship-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.craftsmanship-pillars article {
    min-height: 230px;
    padding: 1.45rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 30px;
    background: rgba(255, 250, 243, .78);
    box-shadow: 0 18px 48px rgba(73, 38, 30, .07);
}

.craftsmanship-pillars b {
    color: rgba(140, 53, 46, .28);
    font-size: 2.4rem;
    line-height: 1;
}

.craftsmanship-pillars h3 {
    margin: 1.4rem 0 .65rem;
    color: var(--rouge);
    font-size: 1.36rem;
}

.craftsmanship-pillars p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.refined-title {
    max-width: 780px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.craftsmanship-worker-grid {
    counter-reset: worker;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.craftsmanship-worker-grid article {
    position: relative;
    min-height: 238px;
    padding: 1.7rem;
    overflow: hidden;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 34px;
    background:
        linear-gradient(150deg, rgba(255, 250, 243, .96), rgba(255, 244, 228, .72)),
        radial-gradient(circle at 90% 0%, rgba(199, 161, 93, .18), transparent 12rem);
    box-shadow: 0 20px 58px rgba(73, 38, 30, .08);
    counter-increment: worker;
}

.craftsmanship-worker-grid article::before {
    content: "0" counter(worker);
    position: absolute;
    right: 1.3rem;
    bottom: .6rem;
    color: rgba(140, 53, 46, .08);
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1;
}

.craftsmanship-worker-grid span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.craftsmanship-worker-grid h3 {
    margin: 1rem 0 .8rem;
    color: var(--rouge);
    font-size: clamp(1.28rem, 1.7vw, 1.5rem);
}

.craftsmanship-worker-grid p {
    position: relative;
    margin: 0;
    color: #65534b;
    line-height: 1.95;
}

.craftsmanship-voice-panel {
    padding: clamp(4.8rem, 8vw, 7rem) 1rem;
    color: #fff8ec;
    background:
        radial-gradient(circle at 18% 22%, rgba(199, 161, 93, .26), transparent 24rem),
        linear-gradient(135deg, #241210, #5a211d 58%, #2b1714);
}

.craftsmanship-voice-inner {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.craftsmanship-voice-head h2 {
    margin: .85rem 0 1rem;
    font-size: clamp(2.1rem, 4.5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: .06em;
}

.craftsmanship-voice-head p {
    color: rgba(255, 248, 236, .76);
    line-height: 1.95;
}

.craftsmanship-voice-list {
    display: grid;
    gap: .9rem;
}

.craftsmanship-voice-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 1.25rem;
    align-items: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 248, 236, .16);
}

.craftsmanship-voice-list article:last-child {
    border-bottom: 1px solid rgba(255, 248, 236, .16);
}

.craftsmanship-voice-list p {
    margin: 0;
    color: rgba(255, 248, 236, .86);
    font-size: 1.04rem;
    line-height: 1.9;
}

.craftsmanship-voice-list strong,
.craftsmanship-voice-list span {
    display: block;
}

.craftsmanship-voice-list strong {
    color: var(--gold);
}

.craftsmanship-voice-list span {
    margin-top: .35rem;
    color: rgba(255, 248, 236, .58);
}

.history-record-hero {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
    gap: clamp(1.6rem, 5vw, 4.5rem);
    align-items: end;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.history-record-copy h1 {
    margin: 1rem 0 1.1rem;
    color: #321916;
    font-size: clamp(2.75rem, 6.4vw, 6.2rem);
    line-height: 1.02;
    letter-spacing: .06em;
}

.history-record-copy p {
    max-width: 560px;
    margin: 0;
    color: #5f4a42;
    font-size: clamp(1.05rem, 1.55vw, 1.24rem);
    line-height: 2;
    overflow-wrap: anywhere;
}

.history-since {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .2rem 1rem;
    align-items: end;
    max-width: 500px;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(140, 53, 46, .18);
}

.history-since small {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .22em;
}

.history-since strong {
    grid-row: span 2;
    color: var(--rouge);
    font-size: clamp(2.9rem, 5.6vw, 5rem);
    line-height: .88;
}

.history-since span {
    color: var(--muted);
    line-height: 1.8;
}

.history-record-photo {
    position: relative;
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 44px;
    box-shadow: 0 28px 80px rgba(57, 25, 20, .18);
}

.history-record-photo img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.history-record-photo figcaption {
    position: absolute;
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 248, 236, .2);
    border-radius: 22px;
    color: rgba(255, 248, 236, .86);
    line-height: 1.8;
    background: rgba(43, 23, 20, .5);
    backdrop-filter: blur(16px);
}

.history-record-section {
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.history-record-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.8rem);
    margin-top: 1rem;
    padding-top: 3.2rem;
}

.history-record-track::before {
    content: "";
    position: absolute;
    top: 1.35rem;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(140, 53, 46, .08), rgba(140, 53, 46, .42), rgba(140, 53, 46, .08));
}

.history-record-track article {
    position: relative;
    min-width: 0;
}

.history-record-track article::before {
    content: "";
    position: absolute;
    top: -2.12rem;
    left: 0;
    width: 13px;
    height: 13px;
    border: 4px solid #fffaf3;
    border-radius: 999px;
    background: var(--rouge);
    box-shadow: 0 0 0 1px rgba(140, 53, 46, .32);
}

.history-year {
    color: var(--rouge);
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.03em;
}

.history-node-card {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(108, 66, 52, .14);
}

.history-node-card h3 {
    margin: 0 0 .65rem;
    color: #321916;
    font-size: clamp(1.12rem, 1.5vw, 1.3rem);
    line-height: 1.45;
    text-wrap: balance;
}

.history-node-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.history-record-note {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    margin-top: 3rem;
    padding: 1.3rem 1.5rem;
    border: 1px solid rgba(108, 66, 52, .14);
    border-radius: 28px;
    background: rgba(255, 250, 243, .72);
}

.history-record-note strong {
    color: var(--rouge);
    font-size: 1.3rem;
}

.history-record-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 960px) {
    .craftsmanship-stage,
    .craftsmanship-definition,
    .craftsmanship-voice-inner,
    .history-record-hero {
        grid-template-columns: 1fr;
    }

    .craftsmanship-definition-title {
        position: static;
    }

    .craftsmanship-pillars,
    .craftsmanship-worker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .craftsmanship-stage-photo,
    .craftsmanship-stage-photo img,
    .history-record-photo,
    .history-record-photo img {
        min-height: 380px;
    }

    .history-record-track {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-top: 0;
        padding-left: 1.8rem;
    }

    .history-record-track::before {
        top: 0;
        bottom: 0;
        left: .36rem;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, rgba(140, 53, 46, .08), rgba(140, 53, 46, .38), rgba(140, 53, 46, .08));
    }

    .history-record-track article {
        padding-right: 0;
    }

    .history-record-track article::before {
        top: .42rem;
        left: -1.77rem;
    }
}

@media (max-width: 560px) {
    .craftsmanship-page *,
    .enterprise-history-page * {
        min-width: 0;
    }

    .culture-kicker {
        letter-spacing: .16em;
    }

    .culture-kicker::before {
        width: 1.8rem;
        margin-right: .65rem;
    }

    .craftsmanship-stage,
    .history-record-hero {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        padding-top: 3rem;
    }

    .culture-page .section {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
    }

    .culture-tabs {
        max-width: 100vw;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: .5rem;
        padding: .7rem .75rem;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
    }

    .culture-tabs a {
        flex: 0 0 auto;
        padding: .55rem .82rem;
        font-size: .92rem;
    }

    .craftsmanship-stage-copy h1,
    .history-record-copy h1 {
        font-size: 3.05rem;
        letter-spacing: .08em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .craftsmanship-definition-title h2,
    .craftsmanship-voice-head h2,
    .refined-title h2 {
        font-size: 2.35rem;
        letter-spacing: .03em;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .craftsmanship-stage-copy p,
    .history-record-copy p,
    .craftsmanship-definition-body > p,
    .craftsmanship-pillars p,
    .craftsmanship-worker-grid p,
    .craftsmanship-voice-head p,
    .craftsmanship-voice-list p,
    .history-node-card p,
    .history-record-note p,
    .craftsmanship-stage-photo figcaption,
    .history-record-photo figcaption {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .craftsmanship-stage-meta {
        display: grid;
    }

    .craftsmanship-pillars,
    .craftsmanship-worker-grid,
    .craftsmanship-voice-list article {
        grid-template-columns: 1fr;
    }

    .craftsmanship-definition-body > p {
        padding-left: 1rem;
    }

    .craftsmanship-stage-photo,
    .craftsmanship-stage-photo img,
    .history-record-photo,
    .history-record-photo img {
        min-height: 310px;
        border-radius: 30px;
    }

    .craftsmanship-stage-photo figcaption,
    .history-record-photo figcaption {
        right: .8rem;
        bottom: .8rem;
        left: .8rem;
        max-width: calc(100% - 1.6rem);
        padding: .85rem .95rem;
        font-size: .9rem;
    }

    .history-since,
    .history-record-note {
        grid-template-columns: 1fr;
    }

    .history-since strong {
        grid-row: auto;
    }
}
