:root {
    --ncy-ink: #151915;
    --ncy-ink-soft: #303630;
    --ncy-paper: #f7f7f3;
    --ncy-white: #ffffff;
    --ncy-jade: #146b60;
    --ncy-jade-dark: #0c4f47;
    --ncy-cinnabar: #c84b36;
    --ncy-brass: #a68b5b;
    --ncy-mist: #dce7ea;
    --ncy-line: #d9ded9;
    --ncy-muted: #667067;
    --ncy-shadow: 0 20px 52px rgba(21, 25, 21, 0.12);
    --ncy-radius: 8px;
    --ncy-content: 1180px;
    --ncy-reading: 760px;
    --ncy-header-height: 78px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: clip;
    background: var(--ncy-paper);
    color: var(--ncy-ink);
    font-family: "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.ncy-menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

p {
    margin: 0 0 1.2em;
    text-align: justify;
    text-justify: inter-ideograph;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    max-width: 100%;
    color: var(--ncy-ink);
    font-family: "FZQingKeBenYueSong", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: 0;
    overflow-wrap: break-word;
    text-wrap: balance;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.35rem;
}

button,
input,
select,
textarea {
    font: inherit;
}

.ncy-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--ncy-white);
    color: var(--ncy-ink);
    transform: translateY(-140%);
}

.ncy-skip-link:focus {
    transform: translateY(0);
}

.ncy-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--ncy-header-height);
    border-bottom: 1px solid rgba(21, 25, 21, 0.1);
    background: rgba(247, 247, 243, 0.96);
    transition: box-shadow 180ms ease;
}

.ncy-site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(21, 25, 21, 0.08);
}

.ncy-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 40px), var(--ncy-content));
    height: 100%;
    margin: 0 auto;
    min-width: 0;
}

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

.ncy-brand-mark {
    display: grid;
    width: 42px;
    aspect-ratio: 1;
    place-items: center;
    background: var(--ncy-cinnabar);
    color: var(--ncy-white);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.45rem;
    line-height: 1;
}

.ncy-brand-copy {
    display: grid;
    line-height: 1.15;
}

.ncy-brand-copy strong {
    font-size: 1.16rem;
}

.ncy-brand-copy small {
    margin-top: 4px;
    color: var(--ncy-muted);
    font-size: 0.72rem;
}

.ncy-primary-nav,
.ncy-menu {
    display: flex;
    align-items: center;
}

.ncy-menu {
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-menu a {
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.ncy-menu a:hover,
.ncy-menu a:focus-visible {
    color: var(--ncy-jade);
}

.ncy-header-cta,
.wp-element-button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ncy-ink);
    border-radius: 4px;
    background: var(--ncy-ink);
    color: var(--ncy-white);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ncy-header-cta {
    min-width: 110px;
    margin-left: 32px;
    padding: 12px 18px;
    font-size: 0.9rem;
}

.wp-element-button,
.wp-block-button__link {
    padding: 15px 24px;
}

.ncy-header-cta:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    border-color: var(--ncy-jade-dark);
    background: var(--ncy-jade-dark);
    color: var(--ncy-white);
    transform: translateY(-1px);
}

.is-style-outline .wp-block-button__link {
    border-color: currentColor;
    background: transparent;
    color: inherit;
}

.is-style-outline .wp-block-button__link:hover {
    border-color: var(--ncy-white);
    background: var(--ncy-white);
    color: var(--ncy-ink);
}

.ncy-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: transparent;
    color: var(--ncy-ink);
    flex: 0 0 48px;
}

.ncy-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.ncy-menu-toggle__icon,
.ncy-menu-toggle__icon::before,
.ncy-menu-toggle__icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
}

.ncy-menu-toggle__icon::before {
    transform: translateY(-7px);
}

.ncy-menu-toggle__icon::after {
    transform: translateY(5px);
}

.ncy-menu-toggle[aria-expanded="true"] .ncy-menu-toggle__icon {
    background: transparent;
}

.ncy-menu-toggle[aria-expanded="true"] .ncy-menu-toggle__icon::before {
    transform: rotate(45deg);
}

.ncy-menu-toggle[aria-expanded="true"] .ncy-menu-toggle__icon::after {
    transform: translateY(-2px) rotate(-45deg);
}

.ncy-site-main {
    min-height: 60vh;
}

.ncy-hero {
    position: relative;
    display: grid;
    min-height: min(760px, calc(100svh - 132px));
    align-items: end;
    overflow: hidden;
    background-color: var(--ncy-ink);
    background-image: url('../images/hero-naming-studio.webp');
    background-position: center;
    background-size: cover;
    color: var(--ncy-white);
    isolation: isolate;
}

.ncy-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(9, 15, 12, 0.54);
    content: "";
}

.ncy-hero > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
    min-width: 0;
    padding: 96px 0 72px;
}

.ncy-hero-copy {
    width: 100%;
    max-width: 780px;
    min-width: 0;
}

.ncy-hero .ncy-eyebrow,
.ncy-hero h1,
.ncy-hero p {
    color: var(--ncy-white);
}

.ncy-hero h1 {
    max-width: 11em;
}

.ncy-hero .ncy-hero-lead {
    max-width: 650px;
    margin-top: 24px;
    font-size: 1.16rem;
    line-height: 1.8;
    text-align: left;
}

.ncy-hero .wp-block-buttons {
    margin-top: 30px;
}

.ncy-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    font-size: 0.88rem;
}

.ncy-hero-proof span::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--ncy-cinnabar);
    content: "";
    vertical-align: 0.12em;
}

.ncy-section,
.ncy-section-band > .wp-block-group__inner-container,
.ncy-home-services > .wp-block-group__inner-container,
.ncy-home-method > .wp-block-group__inner-container,
.ncy-home-process > .wp-block-group__inner-container,
.ncy-home-about > .wp-block-group__inner-container,
.ncy-home-cta > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-home-services,
.ncy-home-method,
.ncy-home-process,
.ncy-home-about,
.ncy-home-cta {
    padding: 96px 0;
}

.ncy-home-services {
    background: var(--ncy-paper);
}

.ncy-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}

.ncy-section-heading p:last-child {
    margin: 0;
    color: var(--ncy-ink-soft);
    font-size: 1.05rem;
}

.ncy-eyebrow {
    margin-bottom: 14px;
    color: var(--ncy-jade);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ncy-service-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ncy-service-card {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--ncy-line);
    border-radius: var(--ncy-radius);
    background: var(--ncy-white);
}

.ncy-service-card:nth-child(2) {
    border-color: var(--ncy-jade);
    background: var(--ncy-mist);
}

.ncy-service-card:nth-child(3) {
    border-color: #e3d8c1;
    background: #fbf8f1;
}

.ncy-service-card__number {
    color: var(--ncy-brass);
    font-family: Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.ncy-service-card h3 {
    margin-top: 52px;
    font-size: 2rem;
}

.ncy-service-card p {
    margin-top: 18px;
    color: var(--ncy-ink-soft);
}

.ncy-service-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(21, 25, 21, 0.14);
}

.ncy-service-card__price {
    font-size: 0.9rem;
    font-weight: 800;
}

.ncy-text-link {
    color: var(--ncy-jade-dark);
    font-weight: 800;
    text-decoration: none;
}

.ncy-text-link::after {
    margin-left: 8px;
    content: "→";
}

.ncy-section-band {
    padding: 72px 0;
    background: var(--ncy-jade-dark);
    color: var(--ncy-white);
}

.ncy-section-band h2,
.ncy-section-band h3,
.ncy-section-band p {
    color: inherit;
}

.ncy-question-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 44px;
    background: rgba(255, 255, 255, 0.28);
}

.ncy-question-item {
    min-height: 200px;
    padding: 30px;
    background: var(--ncy-jade-dark);
}

.ncy-question-item strong {
    display: block;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.ncy-question-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.ncy-home-method {
    background: var(--ncy-white);
}

.ncy-method-layout,
.ncy-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 72px;
    align-items: start;
}

.ncy-method-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ncy-line);
    list-style: none;
}

.ncy-method-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-method-list span {
    color: var(--ncy-cinnabar);
    font-family: Georgia, serif;
    font-weight: 700;
}

.ncy-method-list strong {
    display: block;
    margin-bottom: 5px;
}

.ncy-method-list p {
    margin: 0;
    color: var(--ncy-muted);
}

.ncy-home-process {
    background: var(--ncy-paper);
}

.ncy-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-process-step {
    min-height: 240px;
    padding: 28px 28px 28px 0;
    border-right: 1px solid var(--ncy-line);
}

.ncy-process-step + .ncy-process-step {
    padding-left: 28px;
}

.ncy-process-step:last-child {
    border-right: 0;
}

.ncy-process-step__number {
    color: var(--ncy-cinnabar);
    font-family: Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.ncy-process-step h3 {
    margin-top: 38px;
}

.ncy-process-step p {
    margin-top: 14px;
    color: var(--ncy-muted);
    font-size: 0.94rem;
}

.ncy-home-about {
    background: var(--ncy-mist);
}

.ncy-about-statement {
    padding-left: 28px;
    border-left: 4px solid var(--ncy-cinnabar);
}

.ncy-about-statement p {
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.35rem;
    line-height: 1.75;
}

.ncy-fact-list {
    display: grid;
    gap: 0;
    margin: 32px 0 0;
    padding: 0;
    border-top: 1px solid rgba(21, 25, 21, 0.2);
    list-style: none;
}

.ncy-fact-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(21, 25, 21, 0.2);
}

.ncy-home-cta {
    background: var(--ncy-cinnabar);
    color: var(--ncy-white);
}

.ncy-home-cta h2,
.ncy-home-cta p {
    color: inherit;
}

.ncy-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
}

.ncy-cta-layout p {
    max-width: 650px;
    margin: 18px 0 0;
}

.ncy-page,
.ncy-article,
.ncy-archive,
.ncy-commerce-shell,
.ncy-empty-state {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
    padding: 72px 0 110px;
}

.ncy-page-header,
.ncy-article-header {
    max-width: 920px;
    margin-bottom: 48px;
}

.ncy-prose {
    max-width: var(--ncy-reading);
}

.ncy-page-content > p,
.ncy-page-content > h2,
.ncy-page-content > h3,
.ncy-page-content > ul,
.ncy-page-content > ol,
.ncy-page-content > blockquote {
    max-width: var(--ncy-reading);
}

.ncy-page-content > * + * {
    margin-top: 1.35em;
}

.ncy-page-lead {
    max-width: 820px !important;
    color: var(--ncy-ink-soft);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.35rem;
    line-height: 1.75;
}

.ncy-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 58px 0 76px;
}

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

.ncy-package {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--ncy-line);
    border-radius: var(--ncy-radius);
    background: var(--ncy-white);
}

.ncy-package--featured {
    border: 2px solid var(--ncy-jade);
    background: var(--ncy-mist);
}

.ncy-package__label {
    color: var(--ncy-jade-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-package h2 {
    margin-top: 28px;
    font-size: 1.7rem;
}

.ncy-package__price {
    margin: 10px 0 22px;
    color: var(--ncy-cinnabar);
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
}

.ncy-package__fit {
    min-height: 84px;
    color: var(--ncy-ink-soft);
    font-size: 0.94rem;
}

.ncy-package ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(21, 25, 21, 0.16);
    list-style: none;
}

.ncy-package li {
    position: relative;
    padding-left: 22px;
}

.ncy-package li::before {
    position: absolute;
    top: 0.75em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ncy-cinnabar);
    content: "";
}

.ncy-package .wp-element-button {
    width: 100%;
    margin-top: auto;
}

.ncy-service-note {
    margin: 72px 0;
    padding: 34px 0 34px 28px;
    border-left: 4px solid var(--ncy-cinnabar);
}

.ncy-service-note h2 {
    font-size: 1.75rem;
}

.ncy-service-note p {
    max-width: 780px;
    margin: 14px 0 0;
}

.ncy-faq-list {
    max-width: 860px;
    margin: 52px 0 0;
    border-top: 1px solid var(--ncy-line);
}

.ncy-faq-list details {
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-faq-list summary {
    padding: 22px 44px 22px 0;
    cursor: pointer;
    font-weight: 800;
}

.ncy-faq-list details p {
    padding: 0 0 22px;
    color: var(--ncy-muted);
}

.ncy-prose > * + * {
    margin-top: 1.35em;
}

.ncy-prose h2,
.ncy-prose h3 {
    margin-top: 2.2em;
}

.ncy-prose li + li {
    margin-top: 0.6em;
}

.ncy-article-meta,
.ncy-post-card__meta {
    color: var(--ncy-muted);
    font-size: 0.86rem;
}

.ncy-article-cover {
    width: min(100%, 980px);
    margin: 0 0 48px;
}

.ncy-article-header {
    max-width: 980px;
}

.ncy-article-header h1 {
    max-width: 900px;
    font-size: clamp(3rem, 5.6vw, 5.4rem);
    line-height: 1.1;
}

.ncy-article-dek {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--ncy-ink-soft);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.28rem;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-ideograph;
}

.ncy-article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 28px;
    color: var(--ncy-muted);
    font-size: 0.86rem;
}

.ncy-article-meta-row span + span::before {
    margin-right: 24px;
    color: var(--ncy-cinnabar);
    content: "•";
}

.ncy-article-cover img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.ncy-article-frame {
    display: grid;
    grid-template-columns: minmax(0, var(--ncy-reading)) minmax(220px, 280px);
    gap: 80px;
    align-items: start;
}

.ncy-article-frame .ncy-prose {
    max-width: none;
}

.ncy-article-intro {
    padding: 28px 0 28px 24px;
    border-left: 3px solid var(--ncy-cinnabar);
    color: var(--ncy-ink);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.23rem;
    line-height: 1.75;
}

.ncy-prose p,
.ncy-prose li {
    color: var(--ncy-ink-soft);
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-ideograph;
}

.ncy-prose h2 {
    scroll-margin-top: calc(var(--ncy-header-height) + 28px);
    padding-top: 20px;
    border-top: 1px solid var(--ncy-line);
    font-size: 1.85rem;
}

.ncy-prose blockquote {
    margin: 54px 0;
    padding: 34px 36px;
    border: 0;
    background: var(--ncy-mist);
    color: var(--ncy-ink);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.32rem;
    line-height: 1.7;
}

.ncy-prose ul,
.ncy-prose ol {
    padding-left: 1.4em;
}

.ncy-article-rail {
    position: sticky;
    top: calc(var(--ncy-header-height) + 32px);
}

.ncy-article-toc {
    padding: 24px 0;
    border-top: 2px solid var(--ncy-ink);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-article-toc summary {
    cursor: pointer;
    font-weight: 800;
}

.ncy-article-toc ol {
    display: grid;
    gap: 13px;
    margin: 22px 0 0;
    padding: 0;
    counter-reset: article-toc;
    list-style: none;
}

.ncy-article-toc li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    counter-increment: article-toc;
}

.ncy-article-toc li::before {
    color: var(--ncy-cinnabar);
    content: counter(article-toc, decimal-leading-zero);
    font-family: Georgia, serif;
    font-size: 0.72rem;
    line-height: 1.8;
}

.ncy-article-toc a {
    color: var(--ncy-ink-soft);
    font-size: 0.86rem;
    line-height: 1.55;
    text-decoration: none;
}

.ncy-article-toc a:hover,
.ncy-article-toc a:focus-visible {
    color: var(--ncy-jade);
}

.ncy-author-note {
    margin-top: 78px;
    padding: 32px;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-white);
}

.ncy-author-note h2 {
    margin: 12px 0 16px;
    padding: 0;
    border: 0;
    font-size: 1.7rem;
}

.ncy-author-note p:last-child {
    margin: 0;
}

.ncy-article-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-top: 92px;
    padding: 42px;
    background: var(--ncy-ink);
    color: var(--ncy-white);
}

.ncy-article-service h2 {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--ncy-white);
    font-size: 2rem;
}

.ncy-article-service p:not(.ncy-eyebrow) {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.ncy-article-service .wp-element-button {
    border-color: rgba(255, 255, 255, 0.58);
}

.ncy-related-posts {
    margin-top: 92px;
}

.ncy-related-posts > h2 {
    margin: 12px 0 34px;
}

.ncy-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1px;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-line);
}

.ncy-post-card {
    min-height: 340px;
    padding: 30px;
    background: var(--ncy-white);
}

.ncy-post-card h2 {
    margin: 36px 0 18px;
    font-size: 1.5rem;
}

.ncy-post-card h2 a {
    text-decoration: none;
}

.ncy-post-card h3 {
    margin: 36px 0 18px;
    font-size: 1.45rem;
}

.ncy-post-card h3 a {
    text-decoration: none;
}

.ncy-archive-header {
    margin-bottom: 56px;
}

.ncy-site-footer {
    padding: 72px 0 24px;
    background: var(--ncy-ink);
    color: rgba(255, 255, 255, 0.76);
}

.ncy-footer-grid,
.ncy-footer-bottom {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 64px;
}

.ncy-footer-title,
.ncy-footer-heading {
    margin: 0 0 16px;
    color: var(--ncy-white);
    font-weight: 800;
    text-align: left;
}

.ncy-footer-title {
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.9rem;
}

.ncy-footer-menu,
.ncy-footer-menu .ncy-menu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-footer-menu a,
.ncy-site-footer a {
    color: inherit;
}

.ncy-site-footer .ncy-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.ncy-site-footer .ncy-menu a {
    display: block;
    font-size: 0.86rem;
    font-weight: 500;
    white-space: nowrap;
}

.ncy-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    min-height: 48px;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: var(--ncy-white);
}

.single-product .ncy-commerce-shell {
    width: min(calc(100% - 40px), 920px);
}

.single-product div.product {
    margin: 0;
}

.single-product div.product .summary {
    float: none;
    width: 100%;
    margin: 0;
    padding: 56px 64px;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-white);
}

.single-product div.product .product_title {
    max-width: 12em;
    font-size: 3rem;
}

.single-product div.product p.price {
    margin: 18px 0 28px;
    color: var(--ncy-cinnabar);
    font-family: "Songti SC", "STSong", serif;
    font-size: 2.15rem;
    font-weight: 700;
}

.single-product .woocommerce-product-details__short-description {
    max-width: 680px;
    color: var(--ncy-ink-soft);
    font-size: 1.08rem;
}

.ncy-product-details {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--ncy-line);
}

.ncy-product-details h2 {
    margin: 32px 0 14px;
    font-size: 1.45rem;
}

.ncy-product-details h2:first-of-type {
    margin-top: 0;
}

.ncy-product-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-product-details li {
    position: relative;
    padding: 9px 0 9px 20px;
    border-bottom: 1px solid rgba(21, 25, 21, 0.08);
}

.ncy-product-details li::before {
    position: absolute;
    top: 1.05em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ncy-cinnabar);
    content: "";
}

.ncy-product-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-product-facts span {
    padding: 16px 12px;
    border-right: 1px solid var(--ncy-line);
    color: var(--ncy-jade-dark);
    font-weight: 700;
    text-align: center;
}

.ncy-product-facts span:last-child {
    border-right: 0;
}

.single-product div.product form.cart {
    display: block;
    margin: 34px 0 0;
}

.single-product div.product form.cart .single_add_to_cart_button {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--ncy-ink) !important;
    border-radius: 4px !important;
    background: var(--ncy-ink) !important;
    color: var(--ncy-white) !important;
    font-size: 1.05rem;
}

.single-product div.product form.cart .single_add_to_cart_button:hover {
    border-color: var(--ncy-jade-dark) !important;
    background: var(--ncy-jade-dark) !important;
}

.ncy-purchase-note {
    margin: 14px 0 0;
    color: var(--ncy-muted);
    font-size: 0.88rem;
    text-align: left;
}

.woocommerce-checkout .ncy-page {
    width: min(calc(100% - 40px), 1120px);
}

.woocommerce-checkout .ncy-page-header {
    margin-bottom: 34px;
}

.woocommerce-checkout .ncy-page-header h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 20px 56px;
    align-items: start;
}

.woocommerce-checkout form.checkout .col2-set {
    grid-row: 1 / 3;
    grid-column: 1;
    width: 100%;
}

.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2 {
    float: none;
    width: 100%;
}

.woocommerce-checkout form.checkout .col2-set .col-2 {
    margin-top: 32px;
}

.woocommerce-checkout form.checkout .woocommerce-billing-fields,
.woocommerce-checkout form.checkout .woocommerce-additional-fields,
.woocommerce-checkout form.checkout #order_review {
    padding: 32px;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: var(--ncy-white);
}

.woocommerce-checkout form.checkout h3 {
    margin: 0 0 22px;
    font-size: 1.42rem;
}

.woocommerce-checkout form.checkout #order_review_heading {
    grid-column: 2;
    margin: 0;
    padding: 0 0 4px;
}

.woocommerce-checkout form.checkout #order_review {
    grid-column: 2;
}

.woocommerce-checkout .woocommerce form .form-row {
    margin: 0 0 20px;
    padding: 0;
}

.woocommerce-checkout .woocommerce form .form-row:last-child {
    margin-bottom: 0;
}

.woocommerce-checkout .woocommerce form .form-row label {
    margin-bottom: 8px;
    color: var(--ncy-ink);
    font-weight: 700;
}

.woocommerce-checkout .woocommerce form .form-row .required {
    color: var(--ncy-cinnabar);
}

.woocommerce-checkout .woocommerce form .form-row input.input-text,
.woocommerce-checkout .woocommerce form .form-row textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border-color: rgba(21, 25, 21, 0.22);
    box-shadow: none;
}

.woocommerce-checkout .woocommerce form .form-row textarea {
    min-height: 116px;
    resize: vertical;
}

.woocommerce-checkout .woocommerce form .form-row input.input-text:focus,
.woocommerce-checkout .woocommerce form .form-row textarea:focus {
    border-color: var(--ncy-jade);
    outline: 2px solid rgba(20, 107, 96, 0.14);
    outline-offset: 0;
}

.woocommerce-checkout table.shop_table {
    margin: 0 0 26px;
    border: 0;
    border-radius: 0;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
    padding: 16px 0;
    border-top: 1px solid var(--ncy-line);
}

.woocommerce-checkout table.shop_table thead th {
    border-top: 0;
    color: var(--ncy-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.woocommerce-checkout table.shop_table th:last-child,
.woocommerce-checkout table.shop_table td:last-child {
    text-align: right;
}

.woocommerce-checkout #payment {
    border-radius: 4px;
    background: var(--ncy-paper);
}

.woocommerce-checkout #payment div.payment_box {
    background: var(--ncy-white);
}

.woocommerce-checkout #payment div.form-row {
    padding: 20px;
}

.woocommerce-checkout #payment #place_order {
    float: none;
    width: 100%;
    min-height: 56px;
    margin: 0;
    border-color: var(--ncy-ink) !important;
    background: var(--ncy-ink) !important;
    color: var(--ncy-white) !important;
    font-size: 1.02rem;
}

.woocommerce-checkout #payment #place_order:hover {
    border-color: var(--ncy-jade-dark) !important;
    background: var(--ncy-jade-dark) !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: var(--ncy-muted);
    font-size: 0.84rem;
}

.ncy-about-opening {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: end;
}

.ncy-about-opening .ncy-page-lead {
    margin: 0;
}

.ncy-about-statement {
    padding-left: 34px;
    border-left: 3px solid var(--ncy-cinnabar);
}

.ncy-about-statement h2 {
    max-width: 12em;
    margin: 12px 0 18px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.ncy-about-statement p:last-child {
    max-width: 680px;
    color: var(--ncy-ink-soft);
    font-size: 1.05rem;
}

.ncy-about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 76px !important;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-about-facts div {
    display: grid;
    gap: 6px;
    padding: 28px 30px;
    border-right: 1px solid var(--ncy-line);
}

.ncy-about-facts div:last-child {
    border-right: 0;
}

.ncy-about-facts strong {
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.55rem;
}

.ncy-about-facts span {
    color: var(--ncy-muted);
    font-size: 0.9rem;
}

.ncy-about-method {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    margin-top: 84px !important;
}

.ncy-about-method article {
    padding-top: 22px;
    border-top: 2px solid var(--ncy-ink);
}

.ncy-about-method span {
    color: var(--ncy-cinnabar);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-about-method h2 {
    margin: 28px 0 14px;
    font-size: 1.65rem;
}

.ncy-about-method p,
.ncy-about-detail > p {
    color: var(--ncy-ink-soft);
}

.ncy-about-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: start;
    margin-top: 94px !important;
    padding: 64px 0;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-about-detail h2 {
    max-width: 13em;
    margin: 12px 0 0;
    font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.ncy-about-detail > p {
    margin: 4px 0 0;
    font-size: 1.08rem;
}

.ncy-sample-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px !important;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-white);
}

.ncy-sample-switcher a {
    display: grid;
    gap: 8px;
    min-height: 126px;
    padding: 24px 26px;
    border-right: 1px solid var(--ncy-line);
    color: var(--ncy-ink);
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.ncy-sample-switcher a:last-child {
    border-right: 0;
}

.ncy-sample-switcher a:hover,
.ncy-sample-switcher a:focus-visible {
    background: var(--ncy-mist);
    color: var(--ncy-jade-dark);
}

.ncy-sample-switcher span {
    color: var(--ncy-cinnabar);
    font-size: 0.74rem;
    font-weight: 800;
}

.ncy-sample-switcher strong {
    font-family: var(--ncy-font-serif);
    font-size: 1.28rem;
}

.ncy-sample-switcher small {
    color: var(--ncy-muted);
    font-size: 0.82rem;
}

.ncy-sample-preview[id] {
    scroll-margin-top: calc(var(--ncy-header-height) + 24px);
}

.ncy-sample-preview + .ncy-sample-preview {
    margin-top: 36px !important;
}
.ncy-sample-preview {
    margin-top: 58px !important;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-white);
}

.ncy-sample-preview > header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 42px 46px 36px;
}

.ncy-sample-preview > header h2 {
    max-width: 18em;
    margin: 12px 0 0;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.ncy-sample-badge {
    flex: 0 0 auto;
    padding: 8px 11px;
    border: 1px solid var(--ncy-jade);
    border-radius: 3px;
    color: var(--ncy-jade-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-sample-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
    background: var(--ncy-paper);
}

.ncy-sample-meta div {
    display: grid;
    gap: 7px;
    padding: 22px 30px;
    border-right: 1px solid var(--ncy-line);
}

.ncy-sample-meta div:last-child {
    border-right: 0;
}

.ncy-sample-meta span {
    color: var(--ncy-muted);
    font-size: 0.76rem;
}

.ncy-sample-meta strong {
    font-size: 0.96rem;
}

.ncy-sample-body {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 56px;
    padding: 52px 46px 58px;
}

.ncy-sample-body aside {
    display: grid;
    align-content: center;
    min-height: 300px;
    padding: 34px;
    border: 1px solid var(--ncy-line);
    background: var(--ncy-paper);
    text-align: center;
}

.ncy-sample-body aside p,
.ncy-sample-body aside span {
    color: var(--ncy-muted);
    font-size: 0.82rem;
}

.ncy-sample-body aside strong {
    margin: 24px 0 16px;
    font-family: "Songti SC", "STSong", serif;
    font-size: 2.7rem;
    letter-spacing: 0;
}

.ncy-sample-body h3 {
    margin: 0 0 10px;
    font-size: 1.32rem;
}

.ncy-sample-body h3:not(:first-child) {
    margin-top: 32px;
}

.ncy-sample-body p {
    color: var(--ncy-ink-soft);
}

.ncy-sample-contents {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    margin-top: 88px !important;
}

.ncy-sample-contents h2 {
    max-width: 11em;
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.ncy-sample-contents ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-sample-contents li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-sample-contents li:first-child {
    border-top: 1px solid var(--ncy-line);
}

.ncy-sample-contents li span {
    color: var(--ncy-cinnabar);
    font-size: 0.76rem;
    font-weight: 800;
}

.ncy-sample-contents li p {
    margin: 0;
}

.ncy-redaction-note {
    margin-top: 62px !important;
    padding: 20px 24px;
    border-left: 3px solid var(--ncy-jade);
    background: var(--ncy-mist);
    color: var(--ncy-ink-soft);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    :root {
        --ncy-header-height: 72px;
    }

    .ncy-header-inner {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-menu-toggle {
        display: inline-flex;
    }

    .ncy-primary-nav {
        position: fixed;
        top: var(--ncy-header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        align-content: start;
        padding: 28px 20px 44px;
        overflow-y: auto;
        background: var(--ncy-paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .ncy-primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ncy-primary-nav .ncy-menu {
        display: grid;
        gap: 0;
    }

    .ncy-primary-nav .ncy-menu a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--ncy-line);
        font-family: "Songti SC", "STSong", serif;
        font-size: 1.4rem;
    }

    .ncy-header-cta {
        width: 100%;
        margin: 26px 0 0;
    }

    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .woocommerce-checkout form.checkout .col2-set,
    .woocommerce-checkout form.checkout #order_review_heading,
    .woocommerce-checkout form.checkout #order_review {
        grid-row: auto;
        grid-column: 1;
    }

    .woocommerce-checkout form.checkout #order_review_heading {
        margin-top: 14px;
    }

    .ncy-about-opening,
    .ncy-about-detail {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ncy-about-facts,
    .ncy-about-method {
        grid-template-columns: 1fr;
    }

    .ncy-about-facts div,
    .ncy-about-facts div:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--ncy-line);
    }

    .ncy-about-facts div:last-child {
        border-bottom: 0;
    }

    .ncy-sample-preview > header,
    .ncy-sample-body,
    .ncy-sample-contents {
        grid-template-columns: 1fr;
    }

    .ncy-sample-preview > header {
        display: grid;
        padding: 30px 24px;
    }

    .ncy-sample-badge {
        justify-self: start;
    }

    .ncy-sample-meta {
        grid-template-columns: 1fr;
    }

    .ncy-sample-meta div,
    .ncy-sample-meta div:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--ncy-line);
    }

    .ncy-sample-meta div:last-child {
        border-bottom: 0;
    }

    .ncy-sample-body {
        gap: 34px;
        padding: 30px 24px 36px;
    }

    .ncy-sample-body aside {
        min-height: 220px;
    }

    .ncy-section-heading,
    .ncy-method-layout,
    .ncy-about-layout,
    .ncy-cta-layout,
    .ncy-pricing-grid,
    .ncy-pricing-grid--three {
        grid-template-columns: 1fr;
    }

    .ncy-package {
        min-height: 0;
    }

    .ncy-service-track {
        grid-template-columns: repeat(3, minmax(300px, 1fr));
        overflow-x: auto;
        scroll-padding-inline: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-service-track::-webkit-scrollbar {
        display: none;
    }

    .ncy-service-card {
        scroll-snap-align: start;
    }

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

    .ncy-process-step:nth-child(2) {
        border-right: 0;
    }

    .ncy-process-step:nth-child(n + 3) {
        border-top: 1px solid var(--ncy-line);
    }

    .ncy-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2.42rem;
    }

    h2 {
        font-size: 2rem;
    }

    .ncy-brand-mark {
        width: 38px;
    }

    .ncy-hero {
        min-height: min(650px, calc(100svh - 160px));
        background-position: 62% center;
    }

    .ncy-hero > .wp-block-group__inner-container {
        width: 100%;
        max-width: var(--ncy-content);
        padding: 70px 14px 42px;
    }

    .ncy-hero-copy,
    .ncy-hero h1,
    .ncy-hero .ncy-hero-lead,
    .ncy-hero .wp-block-buttons,
    .ncy-hero-proof {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .ncy-hero h1 {
        font-size: 2.12rem;
        line-height: 1.24;
        overflow-wrap: anywhere;
        text-wrap: wrap;
    }

    .ncy-hero::before {
        background: rgba(9, 15, 12, 0.68);
    }

    .ncy-hero .ncy-hero-lead {
        font-size: 1rem;
    }

    .ncy-hero .wp-block-buttons {
        display: grid;
        width: 100%;
    }

    .ncy-hero .wp-block-button,
    .ncy-hero .wp-block-button__link {
        width: 100%;
    }

    .ncy-hero-proof {
        display: grid;
        gap: 7px;
        margin-top: 24px;
    }

    .ncy-home-services,
    .ncy-home-method,
    .ncy-home-process,
    .ncy-home-about,
    .ncy-home-cta {
        padding: 68px 0;
    }

    .ncy-home-services > .wp-block-group__inner-container,
    .ncy-home-method > .wp-block-group__inner-container,
    .ncy-home-process > .wp-block-group__inner-container,
    .ncy-home-about > .wp-block-group__inner-container,
    .ncy-home-cta > .wp-block-group__inner-container,
    .ncy-section-band > .wp-block-group__inner-container {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-section-heading {
        gap: 20px;
        margin-bottom: 34px;
    }

    .ncy-service-track {
        width: calc(100% + 14px);
        grid-template-columns: repeat(3, minmax(84%, 1fr));
        gap: 12px;
        padding-right: 14px;
    }

    .ncy-service-card {
        min-height: 390px;
        padding: 26px;
    }

    .ncy-service-card h3 {
        margin-top: 42px;
    }

    .ncy-section-band {
        padding: 62px 0;
    }

    .ncy-question-grid {
        grid-template-columns: 1fr;
    }

    .ncy-question-item {
        min-height: 0;
        padding: 24px 0;
    }

    .ncy-method-layout,
    .ncy-about-layout {
        gap: 42px;
    }

    .ncy-process-grid {
        grid-template-columns: 1fr;
    }

    .ncy-process-step,
    .ncy-process-step + .ncy-process-step {
        min-height: 0;
        padding: 25px 0;
        border-top: 1px solid var(--ncy-line);
        border-right: 0;
    }

    .ncy-process-step:first-child {
        border-top: 0;
    }

    .ncy-process-step h3 {
        margin-top: 18px;
    }

    .ncy-about-statement {
        padding-left: 20px;
    }

    .ncy-about-statement p {
        font-size: 1.17rem;
    }

    .ncy-cta-layout {
        gap: 28px;
    }

    .ncy-cta-layout .wp-block-buttons,
    .ncy-cta-layout .wp-block-button,
    .ncy-cta-layout .wp-block-button__link {
        width: 100%;
    }

    .ncy-page,
    .ncy-article,
    .ncy-archive,
    .ncy-commerce-shell,
    .ncy-empty-state {
        width: min(calc(100% - 28px), var(--ncy-content));
        padding: 52px 0 82px;
    }

    .ncy-post-grid,
    .ncy-footer-grid {
        grid-template-columns: 1fr;
    }

    .ncy-page-lead {
        font-size: 1.16rem;
    }

    .ncy-pricing-grid {
        margin: 42px 0 58px;
    }

    .ncy-package {
        padding: 26px;
    }

    .single-product .ncy-commerce-shell {
        width: min(calc(100% - 28px), 920px);
    }

    .single-product div.product .summary {
        padding: 30px 24px;
    }

    .single-product div.product .product_title {
        font-size: 2.12rem;
    }

    .ncy-product-facts {
        grid-template-columns: 1fr;
    }

    .ncy-product-facts span,
    .ncy-product-facts span:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--ncy-line);
    }

    .ncy-product-facts span:last-child {
        border-bottom: 0;
    }

    .ncy-footer-grid {
        gap: 36px;
    }
}

@media (max-width: 980px) {
    .ncy-article-frame {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .ncy-article-rail {
        position: static;
        grid-row: 1;
    }

    .ncy-article-toc {
        padding: 22px 0;
    }

    .ncy-article-service {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ncy-article-service .wp-element-button {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .ncy-article-header {
        margin-bottom: 36px;
    }

    .ncy-article-header h1 {
        font-size: 2.46rem;
        line-height: 1.18;
    }

    .ncy-article-dek {
        margin-top: 22px;
        font-size: 1.12rem;
    }

    .ncy-article-meta-row span + span::before {
        margin-right: 10px;
    }

    .ncy-article-frame {
        gap: 38px;
    }

    .ncy-article-intro {
        padding: 20px 0 20px 18px;
        font-size: 1.12rem;
    }

    .ncy-prose h2 {
        font-size: 1.55rem;
    }

    .ncy-prose blockquote {
        margin: 42px 0;
        padding: 28px 24px;
        font-size: 1.18rem;
    }

    .ncy-author-note {
        margin-top: 58px;
        padding: 26px 22px;
    }

    .ncy-article-service {
        margin-top: 68px;
        padding: 32px 24px;
    }

    .ncy-article-service h2 {
        font-size: 1.7rem;
    }

    .ncy-article-service .wp-element-button {
        width: 100%;
    }

    .ncy-related-posts {
        margin-top: 68px;
    }

    .ncy-site-footer .ncy-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Compliance, legal documents and checkout consent */
.ncy-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.ncy-legal-links,
.ncy-operator-disclosure {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.ncy-operator-disclosure {
    color: rgba(255, 255, 255, 0.62);
}

.ncy-legal-document {
    width: min(100%, 860px);
}

.ncy-legal-updated {
    margin: 0 0 42px;
    color: var(--ncy-muted);
    font-size: 0.9rem;
    text-align: left;
}

.ncy-legal-document section {
    padding: 30px 0;
    border-top: 1px solid var(--ncy-line);
}

.ncy-legal-document section:first-of-type {
    border-top: 0;
}

.ncy-legal-document h2 {
    margin: 0 0 14px;
    font-size: 1.48rem;
}

.ncy-legal-document p,
.ncy-legal-document li {
    color: var(--ncy-copy);
}

.ncy-legal-document ul {
    margin: 0;
    padding-left: 1.2em;
}

.ncy-business-information {
    width: min(100%, 860px);
    margin: 38px 0 0;
    border-top: 1px solid var(--ncy-ink);
}

.ncy-business-information > div {
    display: grid;
    grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-business-information dt {
    color: var(--ncy-muted);
    font-weight: 700;
}

.ncy-business-information dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.ncy-checkout-consent {
    margin: 18px 0;
    padding: 20px;
    border: 1px solid rgba(20, 107, 96, 0.28);
    border-radius: 4px;
    background: rgba(20, 107, 96, 0.06);
}

.ncy-checkout-consent__title {
    margin: 0 0 8px;
    color: var(--ncy-ink);
    font-weight: 800;
}

.ncy-checkout-consent > p:not(.ncy-checkout-consent__title) {
    margin: 0 0 14px;
    color: var(--ncy-copy);
    font-size: 0.9rem;
    text-align: left;
}

.ncy-checkout-consent > .ncy-checkout-consent__summary {
    padding: 12px 14px;
    border-left: 3px solid var(--ncy-jade);
    background: var(--ncy-white);
    color: var(--ncy-ink);
    line-height: 1.7;
}

.ncy-checkout-consent .form-row label.checkbox {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    margin: 0;
    font-weight: 500;
    line-height: 1.55;
}

.ncy-checkout-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
}

@media (max-width: 640px) {
    .ncy-legal-document section {
        padding: 24px 0;
    }

    .ncy-business-information > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .ncy-legal-links,
    .ncy-operator-disclosure {
        gap: 10px 16px;
    }
}

/* Conversion homepage v2 */
.ncy-hero--conversion {
    min-height: min(720px, calc(100svh - 108px));
    background-position: 58% center;
}

.ncy-hero--conversion::before {
    background: rgba(7, 14, 11, 0.6);
}

.ncy-hero--conversion .ncy-hero-copy {
    max-width: 850px;
}

.ncy-hero--conversion h1 {
    max-width: 10.8em;
    font-size: 4.2rem;
}

.ncy-hero--conversion .ncy-hero-lead {
    max-width: 620px;
    font-size: 1.12rem;
}

.ncy-hero--conversion .ncy-hero-proof {
    max-width: 820px;
}

.ncy-home-services--conversion {
    padding-top: 88px;
}

.ncy-service-track--conversion {
    gap: 16px;
}

.ncy-service-track--conversion .ncy-service-card {
    min-height: 520px;
    padding: 32px;
    box-shadow: 0 12px 34px rgba(21, 25, 21, 0.05);
}

.ncy-service-track--conversion .ncy-service-card:nth-child(1) {
    border-color: #d7dfda;
    background: #ffffff;
}

.ncy-service-track--conversion .ncy-service-card:nth-child(2) {
    border-color: #bdd2d6;
    background: #e7eff1;
}

.ncy-service-track--conversion .ncy-service-card:nth-child(3) {
    border-color: #e1d3b7;
    background: #fbf6ec;
}

.ncy-service-card__kicker {
    margin: 38px 0 6px;
    color: var(--ncy-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: left;
}

.ncy-service-track--conversion .ncy-service-card h3 {
    margin-top: 0;
    font-size: 2.35rem;
}

.ncy-service-card__promise {
    min-height: 4.2em;
    margin: 18px 0 0;
    color: var(--ncy-ink);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: left;
}

.ncy-service-card__checks {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(21, 25, 21, 0.14);
    list-style: none;
}

.ncy-service-card__checks li {
    position: relative;
    padding-left: 18px;
    color: var(--ncy-ink-soft);
    font-size: 0.9rem;
}

.ncy-service-card__checks li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ncy-cinnabar);
    content: "";
}

.ncy-anxiety-band {
    padding: 82px 0;
    background: #123e38;
}

.ncy-question-grid--conversion {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    background: transparent;
}

.ncy-question-grid--conversion .ncy-question-item {
    min-height: 230px;
    padding: 30px 30px 30px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    background: transparent;
}

.ncy-question-grid--conversion .ncy-question-item + .ncy-question-item {
    padding-left: 30px;
}

.ncy-question-grid--conversion .ncy-question-item:last-child {
    border-right: 0;
}

.ncy-question-grid--conversion .ncy-question-item > span {
    color: #dfb86d;
    font-family: Georgia, serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.ncy-question-grid--conversion .ncy-question-item strong {
    margin-top: 42px;
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.22rem;
}

.ncy-delivery-proof {
    padding: 104px 0;
}

.ncy-method-layout--conversion {
    align-items: center;
}

.ncy-delivery-copy > p:not(.ncy-eyebrow) {
    max-width: 530px;
    margin-top: 22px;
    color: var(--ncy-ink-soft);
    font-size: 1.02rem;
}

.ncy-delivery-sheet {
    border: 1px solid var(--ncy-line);
    border-top: 4px solid var(--ncy-jade);
    background: var(--ncy-paper);
    box-shadow: var(--ncy-shadow);
}

.ncy-delivery-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-delivery-sheet__head span {
    color: var(--ncy-cinnabar);
    font-size: 0.76rem;
    font-weight: 800;
}

.ncy-delivery-sheet__head strong {
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.2rem;
}

.ncy-delivery-sheet dl {
    margin: 0;
    padding: 0 28px;
}

.ncy-delivery-sheet dl > div {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-delivery-sheet dl > div:last-child {
    border-bottom: 0;
}

.ncy-delivery-sheet dt {
    color: var(--ncy-jade-dark);
    font-weight: 800;
}

.ncy-delivery-sheet dd {
    margin: 0;
    color: var(--ncy-ink-soft);
}

.ncy-home-about--conversion {
    background: #dce7ea;
}

.ncy-about-commitments {
    border-top: 1px solid rgba(21, 25, 21, 0.26);
}

.ncy-about-commitments > div {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(21, 25, 21, 0.26);
}

.ncy-about-commitments span {
    color: var(--ncy-cinnabar);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-about-commitments strong {
    font-size: 1rem;
}

.ncy-home-process--conversion {
    background: var(--ncy-white);
}

.ncy-home-cta--conversion {
    background: var(--ncy-cinnabar);
    color: var(--ncy-white);
}

.ncy-home-cta--conversion h2,
.ncy-home-cta--conversion p,
.ncy-home-cta--conversion .ncy-eyebrow {
    color: var(--ncy-white);
}

.ncy-home-cta--conversion .wp-block-button__link {
    border-color: var(--ncy-white);
    background: var(--ncy-white);
    color: var(--ncy-ink);
}

.ncy-mobile-action {
    display: none;
}

@media (max-width: 980px) {
    .ncy-hero--conversion h1 {
        font-size: 3.7rem;
    }

    .ncy-service-track--conversion .ncy-service-card {
        min-height: 500px;
    }

    .ncy-method-layout--conversion {
        gap: 52px;
    }
}

@media (max-width: 640px) {
    body.ncy-is-front-page {
        padding-bottom: calc(68px + env(safe-area-inset-bottom));
    }

    .ncy-hero--conversion {
        min-height: min(680px, calc(100svh - 92px));
        background-position: 64% center;
    }

    .ncy-hero--conversion h1 {
        font-size: 2.2rem;
        line-height: 1.22;
    }

    .ncy-hero--conversion .ncy-hero-lead {
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.72;
    }

    .ncy-hero--conversion .wp-block-buttons {
        gap: 10px;
        margin-top: 24px;
    }

    .ncy-hero--conversion .ncy-hero-proof {
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
        font-size: 0.76rem;
    }

    .ncy-home-services--conversion {
        padding-top: 62px;
    }

    .ncy-service-track--conversion {
        grid-template-columns: repeat(3, minmax(86%, 1fr));
    }

    .ncy-service-track--conversion .ncy-service-card {
        min-height: 500px;
        padding: 25px;
    }

    .ncy-service-track--conversion .ncy-service-card h3 {
        font-size: 2rem;
    }

    .ncy-service-card__promise {
        min-height: 0;
    }

    .ncy-anxiety-band {
        padding: 64px 0;
    }

    .ncy-question-grid--conversion {
        border-bottom: 0;
    }

    .ncy-question-grid--conversion .ncy-question-item,
    .ncy-question-grid--conversion .ncy-question-item + .ncy-question-item {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .ncy-question-grid--conversion .ncy-question-item strong {
        margin-top: 18px;
    }

    .ncy-delivery-proof {
        padding: 70px 0;
    }

    .ncy-delivery-sheet {
        margin: 0 -2px;
        box-shadow: 0 14px 34px rgba(21, 25, 21, 0.1);
    }

    .ncy-delivery-sheet__head {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px;
    }

    .ncy-delivery-sheet dl {
        padding: 0 20px;
    }

    .ncy-delivery-sheet dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px 0;
    }

    .ncy-about-commitments > div {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
    }

    .ncy-mobile-action {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 60px;
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(21, 25, 21, 0.16);
        background: rgba(247, 247, 243, 0.98);
        box-shadow: 0 -10px 28px rgba(21, 25, 21, 0.1);
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .ncy-mobile-action.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .ncy-mobile-action a {
        display: grid;
        min-height: 46px;
        place-items: center;
        border: 1px solid var(--ncy-ink);
        color: var(--ncy-ink);
        font-size: 0.88rem;
        font-weight: 800;
        text-decoration: none;
    }

    .ncy-mobile-action a:first-child {
        background: var(--ncy-ink);
        color: var(--ncy-white);
    }
}

/* Editorial refinement 2026-07-15 */
:root {
    --ncy-obsidian: #101511;
    --ncy-obsidian-soft: #17211c;
    --ncy-bronze: #b08a57;
    --ncy-bronze-pale: #e8dcc7;
    --ncy-paper-warm: #f6f4ef;
    --ncy-font-serif: "FZQingKeBenYueSongS-R-GB", "FZQingKeBenYueSongS", "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
    --ncy-font-sans: "Noto Sans CJK SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
}

body {
    background: var(--ncy-paper-warm);
    font-family: var(--ncy-font-sans);
}

h1,
h2,
h3,
h4,
.ncy-footer-title,
.ncy-brand-copy strong {
    font-family: var(--ncy-font-serif);
}

::selection {
    background: var(--ncy-bronze-pale);
    color: var(--ncy-obsidian);
}

:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid var(--ncy-bronze);
    outline-offset: 3px;
}

.ncy-brand-reg {
    margin-left: 0.12em;
    color: var(--ncy-brass);
    font-family: var(--ncy-font-sans);
    font-size: 0.42em;
    font-weight: 700;
    vertical-align: super;
}

.ncy-site-header {
    border-bottom-color: rgba(21, 25, 21, 0.12);
    background: rgba(247, 247, 243, 0.97);
    backdrop-filter: blur(14px);
}

.ncy-brand-mark {
    background: var(--ncy-cinnabar);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.ncy-menu a {
    position: relative;
}

.ncy-menu .current-menu-item > a::after,
.ncy-menu .current_page_item > a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    background: var(--ncy-bronze);
    content: "";
}

.ncy-header-cta {
    border-color: var(--ncy-obsidian);
    background: var(--ncy-obsidian);
}

.ncy-header-cta:hover,
.ncy-header-cta:focus-visible {
    border-color: var(--ncy-jade-dark);
    background: var(--ncy-jade-dark);
}

.ncy-hero--conversion {
    min-height: min(720px, calc(100svh - 96px));
    background-color: var(--ncy-obsidian);
    background-image:
        linear-gradient(90deg, rgba(8, 13, 10, 0.93) 0%, rgba(8, 13, 10, 0.76) 45%, rgba(8, 13, 10, 0.43) 74%, rgba(8, 13, 10, 0.56) 100%),
        url("../images/hero-naming-studio.webp");
    background-position: center;
}

.ncy-hero--conversion::before {
    background: linear-gradient(180deg, rgba(5, 8, 7, 0.02) 56%, rgba(5, 8, 7, 0.34) 100%);
}

.ncy-hero--conversion .ncy-hero-copy {
    max-width: 880px;
    padding-left: 30px;
    border-left: 1px solid rgba(176, 138, 87, 0.72);
}

.ncy-hero--conversion h1 {
    max-width: 10.5em;
    font-size: 4rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.ncy-hero--conversion .ncy-hero-lead {
    max-width: 590px;
}

.ncy-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    border-color: var(--ncy-bronze);
    background: var(--ncy-bronze);
    color: var(--ncy-obsidian);
}

.ncy-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.ncy-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link:focus-visible {
    border-color: #c49c68;
    background: #c49c68;
}

.ncy-hero .wp-block-button.is-style-outline .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(8, 13, 10, 0.12);
    color: var(--ncy-white);
}

.ncy-hero-proof {
    color: rgba(255, 255, 255, 0.92);
}

.ncy-hero-proof span::before {
    border-radius: 0;
    background: var(--ncy-bronze);
    transform: rotate(45deg);
}

.ncy-hero p,
.ncy-service-card p,
.ncy-question-item p,
.ncy-process-step p,
.ncy-site-footer p,
.ncy-page-lead {
    text-align: left;
}

.ncy-home-services--conversion,
.ncy-delivery-proof,
.ncy-home-process--conversion {
    position: relative;
}

.ncy-home-services--conversion::before,
.ncy-delivery-proof::before,
.ncy-home-process--conversion::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(21, 25, 21, 0.08);
    content: "";
}

.ncy-service-track--conversion {
    scroll-padding-inline: 20px;
    scrollbar-width: none;
}

.ncy-service-track--conversion::-webkit-scrollbar {
    display: none;
}

.ncy-service-track--conversion .ncy-service-card {
    border-top-width: 3px;
    box-shadow: 0 16px 40px rgba(21, 25, 21, 0.06);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ncy-service-track--conversion .ncy-service-card:nth-child(1) {
    border-top-color: var(--ncy-cinnabar);
}

.ncy-service-track--conversion .ncy-service-card:nth-child(2) {
    border-top-color: var(--ncy-jade);
}

.ncy-service-track--conversion .ncy-service-card:nth-child(3) {
    border-top-color: var(--ncy-bronze);
}

.ncy-service-track--conversion .ncy-service-card:hover {
    box-shadow: 0 24px 56px rgba(21, 25, 21, 0.1);
    transform: translateY(-4px);
}

.ncy-service-card__kicker,
.ncy-service-card__promise {
    font-family: var(--ncy-font-sans);
}

.ncy-service-track--conversion .ncy-service-card h3 {
    font-family: var(--ncy-font-serif);
}

.ncy-anxiety-band {
    background: var(--ncy-obsidian-soft);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), inset 0 -1px rgba(255, 255, 255, 0.06);
}

.ncy-question-grid--conversion .ncy-question-item > span {
    color: #d7b57a;
}

.ncy-question-grid--conversion .ncy-question-item strong {
    font-family: var(--ncy-font-serif);
}

.ncy-delivery-proof {
    background: var(--ncy-paper-warm);
}

.ncy-delivery-sheet {
    border-top-color: var(--ncy-bronze);
    background: #fbfaf7;
    box-shadow: 0 22px 52px rgba(21, 25, 21, 0.09);
}

.ncy-delivery-sheet__head strong {
    font-family: var(--ncy-font-serif);
}

.ncy-home-about--conversion {
    background: #e3eceb;
}

.ncy-about-commitments > div {
    transition: background 160ms ease;
}

.ncy-about-commitments > div:hover {
    background: rgba(255, 255, 255, 0.36);
}

.ncy-home-process--conversion {
    background: #fbfaf7;
}

.ncy-process-step__number {
    color: var(--ncy-cinnabar);
}

.ncy-home-cta--conversion {
    background: var(--ncy-obsidian);
}

.ncy-home-cta--conversion .wp-block-button__link {
    border-color: var(--ncy-bronze);
    background: var(--ncy-bronze);
    color: var(--ncy-obsidian);
}

.ncy-site-footer {
    background: #0d120f;
}

.ncy-pricing-grid {
    gap: 20px;
    align-items: stretch;
}

.ncy-package {
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--ncy-bronze);
    background: #fbfaf7;
    box-shadow: 0 18px 44px rgba(21, 25, 21, 0.07);
}

.ncy-package--featured {
    border-top-color: var(--ncy-jade);
    background: #eef4f2;
}

.ncy-package__label {
    color: var(--ncy-jade-dark);
}

.ncy-package__price {
    font-family: var(--ncy-font-serif);
}

.ncy-service-note {
    border-left-color: var(--ncy-bronze);
    background: #f1ece2;
}

.ncy-faq-list details {
    border-color: rgba(21, 25, 21, 0.16);
    background: #fbfaf7;
}

.ncy-reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 180;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}

.ncy-reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ncy-bronze);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.ncy-article .ncy-prose {
    line-height: 1.85;
}

.ncy-article .ncy-prose p {
    text-align: justify;
    text-justify: inter-ideograph;
}

.ncy-article blockquote {
    margin: 36px 0;
    padding: 6px 0 6px 24px;
    border-left: 3px solid var(--ncy-bronze);
    color: var(--ncy-ink);
    font-family: var(--ncy-font-serif);
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1.7;
}

.ncy-archive .ncy-post-grid {
    display: block;
    border-top: 1px solid var(--ncy-line);
}

.ncy-archive .ncy-post-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
    border: 0;
    border-bottom: 1px solid var(--ncy-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ncy-archive .ncy-post-card h2,
.ncy-archive .ncy-post-card p {
    margin: 0;
}

.ncy-archive .ncy-post-card .ncy-text-link {
    align-self: center;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .ncy-archive .ncy-post-card {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    .ncy-archive .ncy-post-card .ncy-text-link {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    .ncy-site-header {
        height: 66px;
    }

    .ncy-header-inner {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-brand {
        gap: 10px;
    }

    .ncy-brand-mark {
        width: 38px;
    }

    .ncy-menu-toggle {
        border-color: rgba(176, 138, 87, 0.52);
        color: var(--ncy-obsidian);
    }

    .ncy-menu-toggle__icon,
    .ncy-menu-toggle__icon::before,
    .ncy-menu-toggle__icon::after {
        height: 1px;
        background: var(--ncy-bronze);
    }

    .ncy-hero--conversion {
        min-height: 640px;
        background-image:
            linear-gradient(180deg, rgba(8, 13, 10, 0.48) 0%, rgba(8, 13, 10, 0.7) 54%, rgba(8, 13, 10, 0.9) 100%),
            url("../images/hero-naming-studio.webp");
        background-position: 61% center;
    }

    .ncy-hero--conversion > .wp-block-group__inner-container {
        padding-top: 76px;
        padding-bottom: 34px;
    }

    .ncy-hero--conversion .ncy-hero-copy {
        padding-left: 0;
        border-left: 0;
    }

    .ncy-hero--conversion h1 {
        max-width: 10.8em;
        font-size: 2.08rem;
        line-height: 1.25;
    }

    .ncy-hero--conversion .ncy-hero-lead {
        max-width: 22em;
        font-size: 0.98rem;
    }

    .ncy-hero--conversion .wp-block-button,
    .ncy-hero--conversion .wp-block-button__link {
        width: 100%;
    }

    .ncy-hero--conversion .ncy-hero-proof {
        margin-top: 24px;
        padding-top: 16px;
    }

    .ncy-home-services,
    .ncy-home-method,
    .ncy-home-process,
    .ncy-home-about,
    .ncy-home-cta {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .ncy-service-track--conversion {
        grid-template-columns: repeat(3, minmax(84%, 1fr));
    }

    .ncy-service-track--conversion .ncy-service-card {
        min-height: 480px;
        padding: 24px;
    }

    .ncy-service-track--conversion .ncy-service-card:hover {
        transform: none;
    }

    .ncy-delivery-sheet {
        box-shadow: 0 14px 30px rgba(21, 25, 21, 0.08);
    }

    .ncy-mobile-action {
        grid-template-columns: 1.08fr 0.92fr;
        border-top-color: rgba(176, 138, 87, 0.44);
        background: rgba(247, 247, 243, 0.99);
    }

    .ncy-mobile-action a:first-child {
        border-color: var(--ncy-obsidian);
        background: var(--ncy-obsidian);
    }

    .ncy-mobile-action a:last-child {
        border-color: var(--ncy-bronze);
    }

    .ncy-archive .ncy-post-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 0;
    }

    .ncy-archive .ncy-post-card .ncy-text-link {
        grid-column: 1;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .ncy-sample-switcher {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 0 10px;
        border: 0;
        background: transparent;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-sample-switcher::-webkit-scrollbar {
        display: none;
    }

    .ncy-sample-switcher a,
    .ncy-sample-switcher a:last-child {
        flex: 0 0 86%;
        min-height: 116px;
        border: 1px solid var(--ncy-line);
        background: var(--ncy-white);
        scroll-snap-align: start;
    }

    .ncy-sample-preview + .ncy-sample-preview {
        margin-top: 28px !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Service decision pages */
.ncy-service-decision,
.ncy-service-pricing,
.ncy-service-proof,
.ncy-service-process,
.ncy-service-final {
    margin-top: 84px;
}

.ncy-service-section-heading {
    max-width: 780px;
}

.ncy-service-section-heading .ncy-eyebrow {
    margin-bottom: 14px;
}

.ncy-service-section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.2;
}

.ncy-service-section-heading > p:last-child:not(.ncy-eyebrow) {
    margin: 18px 0 0;
    color: var(--ncy-muted);
}

.ncy-service-decision-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-service-decision-grid article {
    min-width: 0;
    padding: 28px 26px 30px;
}

.ncy-service-decision-grid article + article {
    border-left: 1px solid var(--ncy-line);
}

.ncy-service-decision-grid span {
    color: var(--ncy-cinnabar);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-service-decision-grid h3 {
    margin: 18px 0 10px;
    font-family: var(--ncy-font-serif);
    font-size: 1.35rem;
}

.ncy-service-decision-grid p {
    margin: 0;
    color: var(--ncy-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.ncy-service-pricing .ncy-pricing-grid {
    margin: 34px 0 0;
}

.ncy-service-proof {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 64px;
    padding: 50px;
    background: var(--ncy-obsidian-soft);
    color: var(--ncy-white);
}

.ncy-service-proof .ncy-eyebrow {
    color: #d7b57a;
}

.ncy-service-proof h2,
.ncy-service-proof p {
    color: inherit;
}

.ncy-service-proof h2 {
    margin: 14px 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.ncy-service-proof__copy > p:not(.ncy-eyebrow) {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.76);
}

.ncy-service-proof .ncy-text-link {
    display: inline-flex;
    margin-top: 22px;
    color: #e8c98f;
}

.ncy-service-proof__list {
    margin: 0;
}

.ncy-service-proof__list > div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ncy-service-proof__list > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ncy-service-proof__list dt {
    color: #e8c98f;
    font-weight: 800;
}

.ncy-service-proof__list dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.ncy-service-process .ncy-process-grid {
    margin-top: 34px;
}

.ncy-service-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 44px;
    background: var(--ncy-jade-dark);
    color: var(--ncy-white);
}

.ncy-service-final h2,
.ncy-service-final p {
    color: inherit;
}

.ncy-service-final h2 {
    margin: 10px 0 8px;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.ncy-service-final p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.ncy-service-final .wp-element-button {
    flex: 0 0 auto;
    border-color: var(--ncy-bronze);
    background: var(--ncy-bronze);
    color: var(--ncy-obsidian);
}

@media (max-width: 720px) {
    .ncy-service-decision,
    .ncy-service-pricing,
    .ncy-service-proof,
    .ncy-service-process,
    .ncy-service-final {
        margin-top: 58px;
    }

    .ncy-service-section-heading h2 {
        font-size: 1.95rem;
    }

    .ncy-service-decision-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-service-decision-grid::-webkit-scrollbar {
        display: none;
    }

    .ncy-service-decision-grid article {
        flex: 0 0 86%;
        padding: 24px 22px 26px;
        scroll-snap-align: start;
    }

    .ncy-service-decision-grid article + article {
        border-left: 0;
        border-right: 1px solid var(--ncy-line);
    }

    .ncy-service-proof {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding: 30px 24px;
    }

    .ncy-service-proof__list > div {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 16px;
    }

    .ncy-service-final {
        align-items: stretch;
        flex-direction: column;
        gap: 26px;
        padding: 30px 24px;
    }

    .ncy-service-final .wp-element-button {
        width: 100%;
    }
}

/* Blueprint-aligned dark consultancy system 2026-07-16 */
:root {
    --ncy-v3-night: #080b09;
    --ncy-v3-night-soft: #101612;
    --ncy-v3-night-raised: #171e19;
    --ncy-v3-pearl: #f4f1e9;
    --ncy-v3-paper: #ebe5d8;
    --ncy-v3-gold: #c4a574;
    --ncy-v3-gold-strong: #d3b680;
    --ncy-v3-teal: #6e9a90;
    --ncy-v3-rust: #b65e46;
    --ncy-v3-line: rgba(196, 165, 116, 0.24);
    --ncy-v3-muted: rgba(244, 241, 233, 0.68);
}

.ncy-site-header {
    border-bottom-color: rgba(196, 165, 116, 0.2);
    background: rgba(8, 11, 9, 0.96);
}

.ncy-site-header.is-scrolled {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.ncy-brand-mark {
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-brand-copy strong,
.ncy-primary-nav .ncy-menu a {
    color: var(--ncy-v3-pearl);
}

.ncy-brand-copy small {
    color: var(--ncy-v3-muted);
}

.ncy-primary-nav .ncy-menu a:hover,
.ncy-primary-nav .ncy-menu a:focus-visible {
    color: var(--ncy-v3-gold-strong);
}

.ncy-header-cta {
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-header-cta:hover,
.ncy-header-cta:focus-visible {
    border-color: var(--ncy-v3-gold-strong);
    background: var(--ncy-v3-gold-strong);
    color: var(--ncy-v3-night);
}

.ncy-menu-toggle {
    border-color: var(--ncy-v3-line);
    color: var(--ncy-v3-gold);
}

.ncy-menu .current-menu-item > a::after,
.ncy-menu .current_page_item > a::after {
    background: var(--ncy-v3-gold);
}

body.ncy-is-front-page {
    background: var(--ncy-v3-night);
}

body.ncy-is-front-page .ncy-site-main {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

body.ncy-is-front-page .ncy-eyebrow {
    color: var(--ncy-v3-gold-strong);
}

body.ncy-is-front-page .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
}

.ncy-home-v3-hero {
    min-height: min(760px, calc(100svh - var(--ncy-header-height)));
    background-color: var(--ncy-v3-night);
    background-image:
        linear-gradient(90deg, rgba(8, 11, 9, 0.96) 0%, rgba(8, 11, 9, 0.83) 47%, rgba(8, 11, 9, 0.28) 76%, rgba(8, 11, 9, 0.48) 100%),
        url("../images/hero-naming-studio.webp");
    background-position: center;
}

.ncy-home-v3-hero::before {
    background: rgba(8, 11, 9, 0.12);
}

.ncy-home-v3-hero .ncy-hero-copy {
    max-width: 840px;
    padding-left: 30px;
    border-left: 1px solid var(--ncy-v3-gold);
}

.ncy-home-v3-hero h1 {
    max-width: 11.6em;
    color: var(--ncy-v3-pearl);
    font-size: clamp(3.2rem, 5.4vw, 5rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.ncy-home-v3-hero .ncy-hero-lead {
    max-width: 680px;
    color: rgba(244, 241, 233, 0.84);
    font-size: 1.12rem;
}

.ncy-home-v3-hero .ncy-hero-proof {
    border-top-color: var(--ncy-v3-line);
    color: rgba(244, 241, 233, 0.84);
}

.ncy-home-v3-hero .ncy-hero-proof span::before {
    background: var(--ncy-v3-gold);
}

.ncy-home-v3-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-home-v3-hero .wp-block-button.is-style-outline .wp-block-button__link {
    border-color: rgba(244, 241, 233, 0.72);
    background: rgba(8, 11, 9, 0.34);
    color: var(--ncy-v3-pearl);
}

.ncy-home-v3-services,
.ncy-home-v3-contrast,
.ncy-home-v3-method,
.ncy-home-v3-delivery,
.ncy-home-v3-origin,
.ncy-home-v3-process,
.ncy-home-v3-faq,
.ncy-home-v3-reading,
.ncy-home-v3-cta {
    padding: 104px 0;
}

.ncy-home-v3-services > .wp-block-group__inner-container,
.ncy-home-v3-contrast > .wp-block-group__inner-container,
.ncy-home-v3-method > .wp-block-group__inner-container,
.ncy-home-v3-delivery > .wp-block-group__inner-container,
.ncy-home-v3-origin > .wp-block-group__inner-container,
.ncy-home-v3-process > .wp-block-group__inner-container,
.ncy-home-v3-faq > .wp-block-group__inner-container,
.ncy-home-v3-reading > .wp-block-group__inner-container,
.ncy-home-v3-cta > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-section-heading--v3 {
    margin-bottom: 46px;
}

.ncy-section-heading--v3 h2 {
    color: inherit;
    font-size: clamp(2.25rem, 4vw, 3.7rem);
    line-height: 1.18;
}

.ncy-section-heading--v3 > p,
.ncy-section-heading--v3 > a {
    align-self: end;
}

.ncy-home-v3-services {
    background: var(--ncy-v3-night-soft);
    color: var(--ncy-v3-pearl);
}

.ncy-home-v3-services .ncy-section-heading p:last-child {
    color: var(--ncy-v3-muted);
}

.ncy-service-track--v3 {
    gap: 16px;
}

.ncy-service-track--v3 .ncy-service-card {
    min-height: 510px;
    border: 1px solid var(--ncy-v3-line);
    border-top: 3px solid var(--ncy-v3-gold);
    border-radius: 4px;
    background: var(--ncy-v3-night-raised);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    color: var(--ncy-v3-pearl);
}

.ncy-service-track--v3 .ncy-service-card:nth-child(1) {
    border-top-color: var(--ncy-v3-rust);
    background: #1b1714;
}

.ncy-service-track--v3 .ncy-service-card:nth-child(2) {
    border-top-color: var(--ncy-v3-teal);
    background: #121b18;
}

.ncy-service-track--v3 .ncy-service-card:nth-child(3) {
    border-top-color: var(--ncy-v3-gold);
    background: #1c1912;
}

.ncy-service-track--v3 .ncy-service-card h3,
.ncy-service-track--v3 .ncy-service-card p,
.ncy-service-track--v3 .ncy-service-card li,
.ncy-service-track--v3 .ncy-service-card__price {
    color: inherit;
}

.ncy-service-track--v3 .ncy-service-card h3 {
    margin-top: 38px;
    font-size: 2.15rem;
}

.ncy-service-track--v3 .ncy-service-card__kicker {
    margin: 16px 0 0;
    color: var(--ncy-v3-muted);
    font-size: 0.84rem;
}

.ncy-service-track--v3 .ncy-service-card__promise {
    color: rgba(244, 241, 233, 0.78);
}

.ncy-service-track--v3 .ncy-service-card__checks {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    color: rgba(244, 241, 233, 0.86);
    list-style: none;
}

.ncy-service-track--v3 .ncy-service-card__checks li::before {
    margin-right: 10px;
    color: var(--ncy-v3-gold);
    content: "—";
}

.ncy-service-track--v3 .ncy-service-card__meta {
    align-items: flex-end;
    border-top-color: var(--ncy-v3-line);
}

.ncy-service-track--v3 .ncy-service-card__number {
    color: var(--ncy-v3-gold-strong);
}

.ncy-service-track--v3 .ncy-service-card:hover {
    border-color: rgba(196, 165, 116, 0.62);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.28);
}

.ncy-home-v3-contrast {
    background: var(--ncy-v3-paper);
    color: var(--ncy-v3-night);
}

.ncy-home-v3-contrast .ncy-eyebrow,
.ncy-home-v3-contrast .ncy-text-link {
    color: #7f5c33;
}

.ncy-home-v3-contrast .ncy-section-heading p:last-child {
    color: #4d524d;
}

.ncy-contrast-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(8, 11, 9, 0.18);
    border-bottom: 1px solid rgba(8, 11, 9, 0.18);
}

.ncy-contrast-grid article {
    min-width: 0;
    padding: 30px 26px 34px;
}

.ncy-contrast-grid article + article {
    border-left: 1px solid rgba(8, 11, 9, 0.18);
}

.ncy-contrast-grid span {
    color: var(--ncy-v3-rust);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-contrast-grid h3 {
    margin-top: 30px;
    color: inherit;
    font-size: 1.45rem;
}

.ncy-contrast-grid p {
    margin: 14px 0 0;
    color: #4d524d;
    font-size: 0.95rem;
    text-align: left;
}

.ncy-contrast-statement {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: start;
    margin-top: 50px;
    padding: 34px 0 0 28px;
    border-top: 1px solid rgba(8, 11, 9, 0.18);
    border-left: 3px solid var(--ncy-v3-rust);
}

.ncy-contrast-statement strong {
    font-family: var(--ncy-font-serif);
    font-size: 1.35rem;
    line-height: 1.65;
}

.ncy-contrast-statement span {
    color: #4d524d;
}

.ncy-home-v3-method {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

.ncy-home-v3-method .ncy-section-heading p:last-child {
    color: var(--ncy-v3-muted);
}

.ncy-method-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ncy-method-card {
    min-height: 270px;
    padding: 34px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    background: var(--ncy-v3-night-soft);
}

.ncy-method-card:nth-child(2) {
    background: #131a1b;
}

.ncy-method-card:nth-child(3) {
    background: #191612;
}

.ncy-method-card:nth-child(4) {
    background: #111a17;
}

.ncy-method-card > span {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-method-card h3 {
    margin-top: 54px;
    color: var(--ncy-v3-pearl);
    font-size: 1.75rem;
}

.ncy-method-card p {
    max-width: 520px;
    margin: 14px 0 0;
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-method-card--wide {
    display: grid;
    min-height: 210px;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    background: #1a1812;
}

.ncy-method-card--wide h3 {
    margin-top: 0;
}

.ncy-method-card--wide .ncy-text-link {
    white-space: nowrap;
}

.ncy-home-v3-delivery {
    background: var(--ncy-v3-paper);
    color: var(--ncy-v3-night);
}

.ncy-home-v3-delivery .ncy-eyebrow,
.ncy-home-v3-delivery .ncy-text-link {
    color: #7f5c33;
}

.ncy-home-v3-delivery .ncy-delivery-copy h2 {
    color: inherit;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.ncy-home-v3-delivery .ncy-delivery-copy > p:not(.ncy-eyebrow) {
    color: #4d524d;
}

.ncy-home-v3-delivery .ncy-delivery-sheet {
    border: 1px solid rgba(8, 11, 9, 0.16);
    border-top: 3px solid var(--ncy-v3-rust);
    border-radius: 4px;
    background: #f8f5ee;
    box-shadow: 0 24px 54px rgba(8, 11, 9, 0.12);
}

.ncy-home-v3-origin {
    background: #0d1513;
    color: var(--ncy-v3-pearl);
}

.ncy-origin-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: center;
}

.ncy-origin-year {
    display: grid;
    min-height: 360px;
    align-content: center;
    padding: 42px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    background: #17170f;
}

.ncy-origin-year span,
.ncy-origin-year p {
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-origin-year strong {
    color: var(--ncy-v3-gold-strong);
    font-family: Georgia, serif;
    font-size: clamp(4.8rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 1;
}

.ncy-origin-year p {
    margin: 18px 0 0;
}

.ncy-origin-copy h2 {
    color: var(--ncy-v3-pearl);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.ncy-origin-copy > p:not(.ncy-eyebrow) {
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-origin-copy .ncy-text-link {
    display: inline-flex;
    margin-top: 10px;
}

.ncy-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-trust-strip span {
    padding: 22px 18px;
    color: rgba(244, 241, 233, 0.84);
    font-size: 0.9rem;
    text-align: center;
}

.ncy-trust-strip span + span {
    border-left: 1px solid var(--ncy-v3-line);
}

.ncy-home-v3-process {
    background: #111816;
    color: var(--ncy-v3-pearl);
}

.ncy-home-v3-process .ncy-section-heading p:last-child {
    color: var(--ncy-v3-muted);
}

.ncy-home-v3-process .ncy-process-grid {
    border-color: var(--ncy-v3-line);
}

.ncy-home-v3-process .ncy-process-step {
    border-color: var(--ncy-v3-line);
}

.ncy-home-v3-process .ncy-process-step h3 {
    color: var(--ncy-v3-pearl);
}

.ncy-home-v3-process .ncy-process-step p {
    color: var(--ncy-v3-muted);
}

.ncy-home-v3-process .ncy-process-step__number {
    color: var(--ncy-v3-gold-strong);
}

.ncy-home-v3-faq {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

.ncy-faq-list--v3 {
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-faq-list--v3 details {
    border: 0;
    border-bottom: 1px solid var(--ncy-v3-line);
    border-radius: 0;
    background: transparent;
    color: var(--ncy-v3-pearl);
}

.ncy-faq-list--v3 summary {
    padding: 24px 4px;
    color: var(--ncy-v3-pearl);
    font-family: var(--ncy-font-serif);
    font-size: 1.12rem;
}

.ncy-faq-list--v3 details p {
    max-width: 820px;
    padding: 0 4px 24px;
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-home-v3-reading {
    background: #4f2920;
    color: var(--ncy-v3-pearl);
}

.ncy-reading-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
}

.ncy-reading-entry h2 {
    color: var(--ncy-v3-pearl);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.ncy-reading-entry p:not(.ncy-eyebrow) {
    max-width: 720px;
    color: rgba(244, 241, 233, 0.78);
    text-align: left;
}

.ncy-reading-entry .wp-element-button {
    border-color: var(--ncy-v3-pearl);
    background: var(--ncy-v3-pearl);
    color: #4f2920;
}

.ncy-home-v3-cta {
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-home-v3-cta .ncy-eyebrow,
.ncy-home-v3-cta h2,
.ncy-home-v3-cta p {
    color: var(--ncy-v3-night);
}

.ncy-home-v3-cta .wp-block-button__link {
    border-color: var(--ncy-v3-night);
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

.ncy-mobile-action {
    border-top-color: var(--ncy-v3-line);
    background: rgba(8, 11, 9, 0.98);
}

.ncy-mobile-action a {
    border-color: var(--ncy-v3-line);
    color: var(--ncy-v3-pearl);
}

.ncy-mobile-action a:first-child {
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

/* Dark service decision pages */
body.ncy-service-page {
    background: var(--ncy-v3-night);
}

body.ncy-service-page .ncy-site-main {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-page {
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-page-header h1,
body.ncy-service-page .ncy-page-content h2,
body.ncy-service-page .ncy-page-content h3 {
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-page-header .ncy-eyebrow,
body.ncy-service-page .ncy-page-content .ncy-eyebrow {
    color: var(--ncy-v3-gold-strong);
}

body.ncy-service-page .ncy-page-lead,
body.ncy-service-page .ncy-service-section-heading > p:last-child:not(.ncy-eyebrow) {
    color: var(--ncy-v3-muted);
}

body.ncy-service-page .ncy-service-decision-grid {
    border-color: var(--ncy-v3-line);
}

body.ncy-service-page .ncy-service-decision-grid article + article {
    border-color: var(--ncy-v3-line);
}

body.ncy-service-page .ncy-service-decision-grid span {
    color: var(--ncy-v3-gold-strong);
}

body.ncy-service-page .ncy-service-decision-grid p {
    color: var(--ncy-v3-muted);
}

body.ncy-service-page .ncy-package {
    border-color: var(--ncy-v3-line);
    border-top-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-night-raised);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-package--featured {
    border-color: var(--ncy-v3-teal);
    border-top-color: var(--ncy-v3-teal);
    background: #13201c;
}

body.ncy-service-page .ncy-package h2,
body.ncy-service-page .ncy-package p,
body.ncy-service-page .ncy-package li {
    color: inherit;
}

body.ncy-service-page .ncy-package__label,
body.ncy-service-page .ncy-package__price {
    color: var(--ncy-v3-gold-strong);
}

body.ncy-service-page .ncy-package .wp-element-button {
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

body.ncy-service-page .ncy-service-proof {
    background: #121916;
}

body.ncy-service-page .ncy-service-note {
    border-color: var(--ncy-v3-gold);
    background: #1b1812;
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-service-note h2,
body.ncy-service-page .ncy-service-note p {
    color: inherit;
}

body.ncy-service-page .ncy-faq-list details {
    border-color: var(--ncy-v3-line);
    background: var(--ncy-v3-night-soft);
    color: var(--ncy-v3-pearl);
}

body.ncy-service-page .ncy-faq-list summary,
body.ncy-service-page .ncy-faq-list p {
    color: inherit;
}

body.ncy-service-page .ncy-service-final {
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

body.ncy-service-page .ncy-service-final .ncy-eyebrow,
body.ncy-service-page .ncy-service-final h2,
body.ncy-service-page .ncy-service-final p {
    color: var(--ncy-v3-night);
}

body.ncy-service-page .ncy-service-final .wp-element-button {
    border-color: var(--ncy-v3-night);
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

@media (max-width: 980px) {
    .ncy-contrast-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncy-contrast-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(8, 11, 9, 0.18);
    }

    .ncy-contrast-grid article:nth-child(4) {
        border-top: 1px solid rgba(8, 11, 9, 0.18);
    }

    .ncy-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncy-trust-strip span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--ncy-v3-line);
    }

    .ncy-trust-strip span:nth-child(4) {
        border-top: 1px solid var(--ncy-v3-line);
    }
}

@media (max-width: 720px) {
    .ncy-site-header {
        height: 66px;
    }

    .ncy-primary-nav {
        border-color: var(--ncy-v3-line);
        background: var(--ncy-v3-night-soft);
    }

    .ncy-primary-nav .ncy-menu a {
        color: var(--ncy-v3-pearl);
    }

    .ncy-menu-toggle {
        border-color: var(--ncy-v3-line);
        color: var(--ncy-v3-gold);
    }

    .ncy-home-v3-hero {
        min-height: 650px;
        background-image:
            linear-gradient(180deg, rgba(8, 11, 9, 0.42) 0%, rgba(8, 11, 9, 0.7) 52%, rgba(8, 11, 9, 0.97) 100%),
            url("../images/hero-naming-studio.webp");
        background-position: 62% center;
    }

    .ncy-home-v3-hero > .wp-block-group__inner-container {
        padding-top: 88px;
        padding-bottom: 34px;
    }

    .ncy-home-v3-hero .ncy-hero-copy {
        padding-left: 0;
        border-left: 0;
    }

    .ncy-home-v3-hero h1 {
        max-width: 11.4em;
        font-size: 2.22rem;
        line-height: 1.24;
    }

    .ncy-home-v3-hero .ncy-hero-lead {
        max-width: 22em;
        font-size: 1rem;
    }

    .ncy-home-v3-hero .wp-block-button,
    .ncy-home-v3-hero .wp-block-button__link {
        width: 100%;
    }

    .ncy-home-v3-hero .ncy-hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        font-size: 0.78rem;
    }

    .ncy-home-v3-services,
    .ncy-home-v3-contrast,
    .ncy-home-v3-method,
    .ncy-home-v3-delivery,
    .ncy-home-v3-origin,
    .ncy-home-v3-process,
    .ncy-home-v3-faq,
    .ncy-home-v3-reading,
    .ncy-home-v3-cta {
        padding: 68px 0;
    }

    .ncy-home-v3-services > .wp-block-group__inner-container,
    .ncy-home-v3-contrast > .wp-block-group__inner-container,
    .ncy-home-v3-method > .wp-block-group__inner-container,
    .ncy-home-v3-delivery > .wp-block-group__inner-container,
    .ncy-home-v3-origin > .wp-block-group__inner-container,
    .ncy-home-v3-process > .wp-block-group__inner-container,
    .ncy-home-v3-faq > .wp-block-group__inner-container,
    .ncy-home-v3-reading > .wp-block-group__inner-container,
    .ncy-home-v3-cta > .wp-block-group__inner-container {
        width: min(calc(100% - 32px), var(--ncy-content));
    }

    .ncy-section-heading--v3 {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }

    .ncy-section-heading--v3 h2 {
        font-size: 2.05rem;
    }

    .ncy-service-track--v3 {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 0 14% 14px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-service-track--v3::-webkit-scrollbar {
        display: none;
    }

    .ncy-service-track--v3 .ncy-service-card {
        flex: 0 0 86%;
        min-height: 500px;
        padding: 26px;
        scroll-snap-align: start;
    }

    .ncy-contrast-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        padding-right: 14%;
        border-right: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-contrast-grid::-webkit-scrollbar {
        display: none;
    }

    .ncy-contrast-grid article,
    .ncy-contrast-grid article + article,
    .ncy-contrast-grid article:nth-child(3),
    .ncy-contrast-grid article:nth-child(4) {
        flex: 0 0 86%;
        min-height: 260px;
        border-top: 0;
        border-right: 1px solid rgba(8, 11, 9, 0.18);
        border-left: 0;
        scroll-snap-align: start;
    }

    .ncy-contrast-statement {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 38px;
        padding: 28px 0 0 20px;
    }

    .ncy-method-bento {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 0 14% 14px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-method-bento::-webkit-scrollbar {
        display: none;
    }

    .ncy-method-card,
    .ncy-method-card--wide {
        display: block;
        flex: 0 0 86%;
        min-height: 330px;
        padding: 28px;
        scroll-snap-align: start;
    }

    .ncy-method-card--wide h3 {
        margin-top: 54px;
    }

    .ncy-method-card--wide .ncy-text-link {
        display: inline-flex;
        margin-top: 24px;
    }

    .ncy-home-v3-delivery .ncy-method-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ncy-origin-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ncy-origin-year {
        min-height: 270px;
        padding: 30px;
    }

    .ncy-origin-year strong {
        font-size: 5.2rem;
    }

    .ncy-origin-copy h2 {
        font-size: 2.1rem;
    }

    .ncy-trust-strip {
        display: flex;
        overflow-x: auto;
        padding-right: 14%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-trust-strip::-webkit-scrollbar {
        display: none;
    }

    .ncy-trust-strip span,
    .ncy-trust-strip span + span,
    .ncy-trust-strip span:nth-child(3),
    .ncy-trust-strip span:nth-child(4) {
        flex: 0 0 86%;
        min-height: 88px;
        border-top: 0;
        border-right: 1px solid var(--ncy-v3-line);
        border-left: 0;
        scroll-snap-align: start;
    }

    .ncy-home-v3-process .ncy-process-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        padding-right: 14%;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-home-v3-process .ncy-process-grid::-webkit-scrollbar {
        display: none;
    }

    .ncy-home-v3-process .ncy-process-step,
    .ncy-home-v3-process .ncy-process-step + .ncy-process-step {
        flex: 0 0 86%;
        min-height: 250px;
        padding: 26px;
        border-right: 1px solid var(--ncy-v3-line);
        scroll-snap-align: start;
    }

    .ncy-reading-entry,
    .ncy-home-v3-cta .ncy-cta-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ncy-reading-entry h2,
    .ncy-home-v3-cta h2 {
        font-size: 2.05rem;
    }

    .ncy-reading-entry .wp-element-button,
    .ncy-home-v3-cta .wp-block-button,
    .ncy-home-v3-cta .wp-block-button__link {
        width: 100%;
    }

    body.ncy-service-page .ncy-page {
        padding-top: 54px;
    }

    body.ncy-service-page .ncy-service-decision-grid article + article {
        border-right-color: var(--ncy-v3-line);
    }
}


/* Blueprint continuation: core editorial pages, 2026-07-16 */
body.ncy-editorial-dark,
body.blog,
body.single-post {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

body.ncy-editorial-dark .ncy-site-main,
body.blog .ncy-site-main,
body.single-post .ncy-site-main {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

body.ncy-editorial-dark .ncy-page {
    width: 100%;
    max-width: none;
    margin: 0;
}

body.ncy-editorial-dark .ncy-page-header {
    width: min(calc(100% - 40px), var(--ncy-content));
    max-width: none;
    margin: 0 auto;
    padding: 96px 0 54px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

body.ncy-editorial-dark .ncy-page-header h1,
body.blog .ncy-archive h1,
body.single-post .ncy-article h1,
body.ncy-editorial-dark .ncy-page-content h2,
body.ncy-editorial-dark .ncy-page-content h3 {
    color: var(--ncy-v3-pearl);
    letter-spacing: 0;
}

body.ncy-editorial-dark .ncy-page-header h1 {
    margin-top: 14px;
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: 1.05;
}

body.ncy-editorial-dark .ncy-page-header .ncy-eyebrow,
body.ncy-editorial-dark .ncy-page-content .ncy-eyebrow,
body.blog .ncy-eyebrow,
body.single-post .ncy-eyebrow {
    color: var(--ncy-v3-gold-strong);
}

body.ncy-editorial-dark .ncy-page-content {
    width: 100%;
    color: var(--ncy-v3-pearl);
}

.ncy-services-v2,
.ncy-about-v2,
.ncy-samples-v2 {
    padding-bottom: 112px;
}

.ncy-services-v2 > *,
.ncy-about-v2 > *,
.ncy-samples-v2 > *,
.ncy-v2-opening {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin-right: auto;
    margin-left: auto;
}

.ncy-v2-opening {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
    gap: 72px;
    align-items: end;
    padding: 78px 0;
}

.ncy-v2-opening h2,
.ncy-v2-final h2,
.ncy-about-v2__statement h2,
.ncy-about-v2__work > header h2,
.ncy-about-v2__method h2,
.ncy-about-v2__credentials h2,
.ncy-samples-v2__case h2,
.ncy-samples-v2__structure h2 {
    margin: 12px 0 0;
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    line-height: 1.16;
}

.ncy-v2-opening > p {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ncy-v2-service-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 96px;
}

.ncy-v2-service-card {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--ncy-v3-line);
    border-top: 3px solid var(--ncy-v3-gold);
    border-radius: 4px;
    background: var(--ncy-v3-night-raised);
    color: var(--ncy-v3-pearl);
}

.ncy-v2-service-card--rust {
    border-top-color: var(--ncy-v3-rust);
    background: #1b1714;
}

.ncy-v2-service-card--teal {
    border-top-color: var(--ncy-v3-teal);
    background: #121b18;
}

.ncy-v2-service-card--gold {
    border-top-color: var(--ncy-v3-gold);
    background: #1c1912;
}

.ncy-v2-service-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--ncy-v3-gold-strong);
    font-size: 0.78rem;
}

.ncy-v2-service-card h2 {
    margin: 54px 0 20px;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.ncy-v2-service-card > p {
    min-height: 5.4em;
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.8;
}

.ncy-v2-service-card ul {
    display: grid;
    gap: 12px;
    margin: auto 0 34px;
    padding: 0;
    color: rgba(244, 241, 233, 0.84);
    list-style: none;
}

.ncy-v2-service-card li::before {
    margin-right: 10px;
    color: var(--ncy-v3-rust);
    content: "●";
    font-size: 0.58rem;
    vertical-align: 0.18em;
}

.ncy-v2-card-link {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--ncy-v3-line);
    color: var(--ncy-v3-gold-strong);
    font-weight: 800;
}

.ncy-v2-card-link::after {
    content: "→";
}

.ncy-v2-choice {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    gap: 80px;
    padding: 92px 0;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-v2-choice h2 {
    max-width: 8em;
    margin: 12px 0 0;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1.12;
}

.ncy-v2-choice ol,
.ncy-samples-v2__structure ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-v2-choice li,
.ncy-samples-v2__structure li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-v2-choice li:first-child,
.ncy-samples-v2__structure li:first-child {
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-v2-choice li span,
.ncy-samples-v2__structure li span {
    color: var(--ncy-v3-rust);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-v2-choice li p,
.ncy-samples-v2__structure li p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.7;
}

.ncy-v2-choice li strong {
    display: block;
    color: var(--ncy-v3-pearl);
    font-size: 1.05rem;
}

.ncy-v2-promise {
    padding: 92px 0;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-v2-promise > header {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 42px;
}

.ncy-v2-promise h2 {
    margin: 12px 0 0;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.16;
}

.ncy-v2-bento,
.ncy-about-v2__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-v2-bento article,
.ncy-about-v2__steps article {
    min-height: 220px;
    padding: 28px;
    border-right: 1px solid var(--ncy-v3-line);
}

.ncy-v2-bento article:last-child,
.ncy-about-v2__steps article:last-child {
    border-right: 0;
}

.ncy-v2-bento span,
.ncy-about-v2__steps span {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.75rem;
    font-weight: 800;
}

.ncy-v2-bento h3,
.ncy-about-v2__steps h3 {
    margin: 54px 0 10px;
    font-size: 1.65rem;
}

.ncy-v2-bento p,
.ncy-about-v2__steps p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

.ncy-v2-final {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 24px;
    padding: 54px;
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-v2-final .ncy-eyebrow,
.ncy-v2-final h2 {
    color: var(--ncy-v3-night) !important;
}

.ncy-v2-final h2 {
    max-width: 15em;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.ncy-v2-button {
    display: inline-flex;
    min-height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid var(--ncy-v3-night);
    border-radius: 3px;
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
    font-weight: 800;
}

.ncy-about-v2__hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: stretch;
    padding: 78px 0 64px;
}

.ncy-about-v2__year {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border: 1px solid var(--ncy-v3-line);
    background: #17160f;
}

.ncy-about-v2__year small,
.ncy-about-v2__year span {
    color: var(--ncy-v3-muted);
}

.ncy-about-v2__year strong {
    display: block;
    margin: 18px 0;
    color: var(--ncy-v3-gold-strong);
    font-family: "Songti SC", "STSong", serif;
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
}

.ncy-about-v2__statement {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
}

.ncy-about-v2__statement > p:last-child {
    max-width: 720px;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ncy-about-v2__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-about-v2__facts > div {
    padding: 26px 22px;
    border-right: 1px solid var(--ncy-v3-line);
}

.ncy-about-v2__facts > div:last-child {
    border-right: 0;
}

.ncy-about-v2__facts strong,
.ncy-about-v2__facts span {
    display: block;
}

.ncy-about-v2__facts span {
    margin-top: 8px;
    color: var(--ncy-v3-muted);
    font-size: 0.86rem;
}

.ncy-about-v2__work {
    padding: 104px 0;
}

.ncy-about-v2__work > header {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 46px;
}

.ncy-about-v2__method {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    padding: 96px 0;
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-about-v2__method-copy {
    align-self: end;
}

.ncy-about-v2__method-copy p {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.ncy-about-v2__method-copy p + p {
    margin-top: 20px;
}

.ncy-about-v2__credentials {
    padding: 104px 0;
}

.ncy-about-v2__credentials > header {
    display: grid;
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 42px;
}

.ncy-about-v2__credentials dl {
    margin: 0;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-about-v2__credentials dl > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-about-v2__credentials dt {
    color: var(--ncy-v3-gold-strong);
}

.ncy-about-v2__credentials dd {
    margin: 0;
    color: var(--ncy-v3-muted);
}

.ncy-about-v2__credentials a {
    color: var(--ncy-v3-pearl);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ncy-samples-v2__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-samples-v2__nav a {
    display: flex;
    min-height: 150px;
    flex-direction: column;
    padding: 26px;
    border-right: 1px solid var(--ncy-v3-line);
    color: var(--ncy-v3-pearl);
}

.ncy-samples-v2__nav a:last-child {
    border-right: 0;
}

.ncy-samples-v2__nav span {
    color: var(--ncy-v3-rust);
    font-size: 0.75rem;
    font-weight: 800;
}

.ncy-samples-v2__nav strong {
    margin-top: auto;
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.5rem;
}

.ncy-samples-v2__nav small {
    margin-top: 6px;
    color: var(--ncy-v3-muted);
}

.ncy-samples-v2__case {
    margin-top: 34px;
    border: 1px solid var(--ncy-v3-line);
    background: var(--ncy-v3-night-soft);
}

.ncy-samples-v2__case > header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
}

.ncy-samples-v2__case > header h2 {
    max-width: 17em;
    font-size: clamp(2.1rem, 3.6vw, 3.8rem);
}

.ncy-samples-v2__case > header > span {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--ncy-v3-teal);
    border-radius: 3px;
    color: #9ac2b9;
    font-size: 0.78rem;
}

.ncy-samples-v2__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-samples-v2__meta p {
    margin: 0;
    padding: 22px 28px;
    border-right: 1px solid var(--ncy-v3-line);
}

.ncy-samples-v2__meta p:last-child {
    border-right: 0;
}

.ncy-samples-v2__meta small,
.ncy-samples-v2__meta strong {
    display: block;
}

.ncy-samples-v2__meta small {
    color: var(--ncy-v3-muted);
}

.ncy-samples-v2__meta strong {
    margin-top: 8px;
}

.ncy-samples-v2__body {
    display: grid;
    grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
    gap: 50px;
    padding: 46px;
}

.ncy-samples-v2__body aside {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ncy-v3-line);
    background: #17160f;
    color: var(--ncy-v3-muted);
    text-align: center;
}

.ncy-samples-v2__body aside strong {
    margin: 42px 0 28px;
    color: var(--ncy-v3-pearl);
    font-family: "Songti SC", "STSong", serif;
    font-size: 2.8rem;
    letter-spacing: 0.25em;
}

.ncy-samples-v2__body h3 {
    margin: 0;
    font-size: 1.55rem;
}

.ncy-samples-v2__body h3:not(:first-child) {
    margin-top: 30px;
}

.ncy-samples-v2__body p {
    margin: 9px 0 0;
    color: var(--ncy-v3-muted);
    line-height: 1.8;
}

.ncy-samples-v2__structure {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    gap: 76px;
    padding: 104px 0 54px;
}

.ncy-samples-v2__privacy {
    padding: 22px 24px;
    border-left: 3px solid var(--ncy-v3-teal);
    background: #121b18;
    color: var(--ncy-v3-muted);
}

body.blog .ncy-archive-v2,
body.single-post .ncy-article {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.ncy-archive-v2__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 70px;
    align-items: end;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-archive-v2__header h1 {
    margin: 14px 0 0;
    font-size: clamp(3.5rem, 7vw, 6.4rem);
    line-height: 1.04;
}

.ncy-archive-v2__header > p {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ncy-archive-v2__facts {
    display: flex;
    gap: 28px;
    padding: 22px 0 70px;
    color: var(--ncy-v3-muted);
    font-size: 0.82rem;
}

body.blog .ncy-archive .ncy-post-grid {
    border-top: 1px solid var(--ncy-v3-line);
}

body.blog .ncy-archive .ncy-post-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 32px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
    background: transparent;
    color: var(--ncy-v3-pearl);
}

body.blog .ncy-post-card__meta {
    color: var(--ncy-v3-gold-strong);
}

body.blog .ncy-post-card h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    line-height: 1.25;
}

body.blog .ncy-post-card h2 a,
body.blog .ncy-text-link {
    color: var(--ncy-v3-pearl);
}

body.blog .ncy-post-card p {
    margin: 12px 0 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

body.blog .ncy-text-link {
    align-self: center;
    color: var(--ncy-v3-gold-strong);
    white-space: nowrap;
}

body.single-post .ncy-article-header {
    max-width: 980px;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

body.single-post .ncy-article-header h1 {
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-article-dek,
body.single-post .ncy-article-meta-row {
    color: var(--ncy-v3-muted);
}

body.single-post .ncy-article-frame {
    border-color: var(--ncy-v3-line);
}

body.single-post .ncy-prose {
    color: #e6e5df;
}

body.single-post .ncy-prose p,
body.single-post .ncy-prose li {
    color: #e6e5df;
}

body.single-post .ncy-prose h2,
body.single-post .ncy-prose h3,
body.single-post .ncy-author-note h2,
body.single-post .ncy-related-posts h2,
body.single-post .ncy-related-posts h3 {
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-prose blockquote {
    border-left-color: var(--ncy-v3-gold);
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-article-toc,
body.single-post .ncy-author-note {
    border-color: var(--ncy-v3-line);
    background: var(--ncy-v3-night-soft);
    color: var(--ncy-v3-muted);
}

body.single-post .ncy-article-toc a,
body.single-post .ncy-author-note p {
    color: var(--ncy-v3-muted);
}

body.single-post .ncy-article-service {
    border: 0;
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

body.single-post .ncy-article-service .ncy-eyebrow,
body.single-post .ncy-article-service h2,
body.single-post .ncy-article-service p {
    color: var(--ncy-v3-night);
}

body.single-post .ncy-article-service .wp-element-button {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-related-posts .ncy-post-card {
    border-color: var(--ncy-v3-line);
    background: var(--ncy-v3-night-soft);
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-related-posts a {
    color: var(--ncy-v3-gold-strong);
}

@media (max-width: 900px) {
    .ncy-v2-opening,
    .ncy-v2-choice,
    .ncy-about-v2__hero,
    .ncy-about-v2__work > header,
    .ncy-about-v2__method,
    .ncy-about-v2__credentials > header,
    .ncy-samples-v2__structure,
    .ncy-archive-v2__header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ncy-v2-service-track,
    .ncy-v2-bento,
    .ncy-about-v2__steps,
    .ncy-samples-v2__nav {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-v2-service-track::-webkit-scrollbar,
    .ncy-v2-bento::-webkit-scrollbar,
    .ncy-about-v2__steps::-webkit-scrollbar,
    .ncy-samples-v2__nav::-webkit-scrollbar {
        display: none;
    }

    .ncy-v2-service-card {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    .ncy-v2-bento article,
    .ncy-about-v2__steps article {
        flex: 0 0 44%;
        scroll-snap-align: start;
    }

    .ncy-samples-v2__nav a {
        flex: 0 0 48%;
        scroll-snap-align: start;
    }

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

    .ncy-about-v2__facts > div:nth-child(2) {
        border-right: 0;
    }

    .ncy-about-v2__facts > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--ncy-v3-line);
    }

    .ncy-samples-v2__body {
        grid-template-columns: 1fr;
    }

    body.blog .ncy-archive .ncy-post-card {
        grid-template-columns: 100px minmax(0, 1fr);
    }

    body.blog .ncy-text-link {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    body.ncy-editorial-dark .ncy-page-header {
        width: min(calc(100% - 28px), var(--ncy-content));
        padding: 58px 0 34px;
    }

    body.ncy-editorial-dark .ncy-page-header h1 {
        font-size: 3rem;
    }

    .ncy-services-v2,
    .ncy-about-v2,
    .ncy-samples-v2 {
        padding-bottom: 72px;
    }

    .ncy-services-v2 > *,
    .ncy-about-v2 > *,
    .ncy-samples-v2 > *,
    .ncy-v2-opening {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-v2-opening {
        padding: 48px 0;
    }

    .ncy-v2-opening h2,
    .ncy-v2-final h2,
    .ncy-about-v2__statement h2,
    .ncy-about-v2__work > header h2,
    .ncy-about-v2__method h2,
    .ncy-about-v2__credentials h2,
    .ncy-samples-v2__case h2,
    .ncy-samples-v2__structure h2 {
        font-size: 2.1rem;
    }

    .ncy-v2-service-track {
        width: calc(100% - 14px);
        margin-left: 14px;
        padding-bottom: 62px;
    }

    .ncy-v2-service-card {
        min-height: 470px;
        flex-basis: 86%;
        padding: 26px;
    }

    .ncy-v2-service-card h2 {
        margin-top: 44px;
        font-size: 2.1rem;
    }

    .ncy-v2-choice,
    .ncy-v2-promise,
    .ncy-about-v2__work,
    .ncy-about-v2__method,
    .ncy-about-v2__credentials,
    .ncy-samples-v2__structure {
        padding: 64px 0;
    }

    .ncy-v2-choice h2 {
        font-size: 2.7rem;
    }

    .ncy-v2-promise > header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .ncy-v2-bento,
    .ncy-about-v2__steps {
        width: calc(100% + 14px);
    }

    .ncy-v2-bento article,
    .ncy-about-v2__steps article {
        min-height: 210px;
        flex-basis: 82%;
    }

    .ncy-v2-final {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        padding: 38px 20px;
    }

    .ncy-v2-button {
        width: 100%;
    }

    .ncy-about-v2__hero {
        padding: 48px 0;
    }

    .ncy-about-v2__year {
        min-height: 280px;
        padding: 28px;
    }

    .ncy-about-v2__year strong {
        font-size: 5.5rem;
    }

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

    .ncy-about-v2__facts > div {
        border-right: 0;
        border-bottom: 1px solid var(--ncy-v3-line);
    }

    .ncy-about-v2__facts > div:last-child {
        border-bottom: 0;
    }

    .ncy-about-v2__credentials dl > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ncy-samples-v2__nav {
        width: calc(100% - 14px);
        margin-left: 14px;
    }

    .ncy-samples-v2__nav a {
        flex-basis: 86%;
    }

    .ncy-samples-v2__case {
        width: calc(100% - 28px);
        margin-top: 24px;
    }

    .ncy-samples-v2__case > header,
    .ncy-samples-v2__body {
        padding: 26px 20px;
    }

    .ncy-samples-v2__case > header {
        display: block;
    }

    .ncy-samples-v2__case > header > span {
        display: inline-block;
        margin-top: 18px;
    }

    .ncy-samples-v2__meta {
        grid-template-columns: 1fr;
    }

    .ncy-samples-v2__meta p {
        border-right: 0;
        border-bottom: 1px solid var(--ncy-v3-line);
    }

    .ncy-samples-v2__meta p:last-child {
        border-bottom: 0;
    }

    .ncy-samples-v2__body {
        gap: 28px;
    }

    .ncy-samples-v2__body aside {
        min-height: 240px;
    }

    body.blog .ncy-archive-v2,
    body.single-post .ncy-article {
        width: min(calc(100% - 28px), var(--ncy-content));
        padding: 58px 0 78px;
    }

    .ncy-archive-v2__header h1 {
        font-size: 3rem;
    }

    .ncy-archive-v2__facts {
        flex-wrap: wrap;
        padding-bottom: 46px;
    }

    body.blog .ncy-archive .ncy-post-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 28px 0;
    }

    body.blog .ncy-text-link {
        grid-column: 1;
    }
}


/* v0.12.1: report redaction and article contrast */
body.blog .ncy-archive .ncy-post-grid {
    background: transparent;
}

body.blog .ncy-archive .ncy-post-card {
    min-height: 0;
}

.ncy-sample-sheet {
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 28px;
    text-align: left !important;
}

.ncy-sample-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-sample-sheet__head strong {
    margin: 0 !important;
    color: var(--ncy-v3-pearl) !important;
    font-family: inherit !important;
    font-size: 0.9rem !important;
    letter-spacing: 0 !important;
}

.ncy-sample-sheet__head small {
    color: var(--ncy-v3-teal);
    font-size: 0.74rem;
}

.ncy-sample-sheet__redaction {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 54px 0;
}

.ncy-sample-sheet__redaction span {
    height: 46px;
    border: 1px solid rgba(202, 169, 111, 0.34);
    background: rgba(202, 169, 111, 0.13);
}

.ncy-sample-sheet dl {
    display: grid;
    gap: 12px;
    margin: auto 0 0;
}

.ncy-sample-sheet dl > div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-sample-sheet dt {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.76rem;
}

.ncy-sample-sheet dd {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 0.82rem;
}

@media (max-width: 640px) {
    .ncy-sample-sheet {
        min-height: 230px !important;
        padding: 22px !important;
    }

    .ncy-sample-sheet__redaction {
        margin: 34px 0;
    }

    .ncy-sample-sheet__redaction span {
        height: 38px;
    }
}


/* v0.12.2: dark article callouts */
body.single-post .ncy-prose blockquote {
    border: 1px solid var(--ncy-v3-line);
    border-left: 3px solid var(--ncy-v3-gold);
    background: var(--ncy-v3-night-soft);
    color: var(--ncy-v3-pearl);
}

body.single-post .ncy-prose blockquote p,
body.single-post .ncy-prose blockquote li {
    color: var(--ncy-v3-pearl);
}


/* Commerce alignment: keep product decisions focused on one readable column. */
.woocommerce.single-product .ncy-commerce-shell {
    width: min(calc(100% - 40px), 760px);
}

.woocommerce.single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
