: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__actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.ncy-package__actions .wp-element-button {
    width: 100%;
    margin-top: 0;
    text-align: center;
}

.ncy-package__actions .ncy-text-link {
    justify-self: center;
    font-size: 0.88rem;
}

.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: 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);
}

.ncy-product-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--ncy-jade-dark);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.ncy-product-back-link::before {
    margin-right: 7px;
    content: "←";
}

.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-product-sample-link {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 22px 0;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-product-sample-link strong,
.ncy-product-sample-link span {
    display: block;
}

.ncy-product-sample-link strong {
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.24rem;
}

.ncy-product-sample-link span {
    margin-top: 5px;
    color: var(--ncy-muted);
    font-size: 0.92rem;
}

.ncy-product-sample-link a {
    flex: 0 0 auto;
    color: var(--ncy-cinnabar);
    font-weight: 700;
}

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

/* v0.19.4: immediate server-rendered cart */
.woocommerce-cart .ncy-page {
    width: min(calc(100% - 40px), 1120px);
}

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

.woocommerce-cart .ncy-page-header h1 {
    font-size: 4.6rem;
}

.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 40px;
    align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error {
    grid-column: 1 / -1;
}

.woocommerce-cart form.woocommerce-cart-form {
    grid-column: 1;
    margin: 0;
}

.woocommerce-cart .cart-collaterals {
    grid-column: 2;
    width: 100%;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    padding: 28px;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: var(--ncy-white);
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    margin: 0 0 18px;
    font-size: 1.5rem;
}

.woocommerce-cart table.shop_table {
    margin: 0;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: var(--ncy-white);
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
    padding: 20px 18px;
    border-color: var(--ncy-line);
}

.woocommerce-cart table.shop_table th {
    color: var(--ncy-muted);
    font-size: 0.82rem;
}

.woocommerce-cart .product-thumbnail {
    display: none;
}

.woocommerce-cart .product-name a {
    color: var(--ncy-ink);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.12rem;
    font-weight: 700;
}

.woocommerce-cart .product-remove a {
    color: var(--ncy-cinnabar) !important;
}

.woocommerce-cart .coupon {
    display: none !important;
}

/* v0.19.5: remove single-item cart dead controls */
.woocommerce-cart .product-quantity,
.woocommerce-cart td.actions {
    display: none !important;
}

.woocommerce-cart td.actions {
    text-align: right;
}

.woocommerce-cart td.actions .button {
    min-height: 46px;
}

.woocommerce-cart .cart_totals table.shop_table {
    border: 0;
    background: transparent;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    padding: 15px 0;
}

.woocommerce-cart .cart_totals table.shop_table td {
    text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout {
    padding: 18px 0 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    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-cart .wc-proceed-to-checkout a.checkout-button:hover {
    border-color: var(--ncy-jade-dark) !important;
    background: var(--ncy-jade-dark) !important;
}

.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: 4.6rem;
}

.woocommerce-checkout .ncy-checkout-intro {
    max-width: 760px;
    margin: -6px 0 28px;
    padding-left: 16px;
    border-left: 3px solid var(--ncy-jade);
    color: var(--ncy-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.ncy-checkout-selection {
    display: none;
}

.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 {
    display: none;
}

.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: 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: 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: 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: 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);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: visibility 0s linear 160ms, opacity 160ms ease, transform 160ms ease;
    }

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

    .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-cart .woocommerce {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .woocommerce-cart form.woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        grid-column: 1;
    }

    .woocommerce-cart .cart-collaterals .cart_totals {
        padding: 24px;
    }

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

    .woocommerce-checkout .ncy-checkout-selection {
        display: block;
        grid-column: 1;
        padding: 20px;
        border: 1px solid var(--ncy-line);
        border-top: 3px solid var(--ncy-jade);
        border-radius: 4px;
        background: var(--ncy-white);
    }

    .ncy-checkout-selection__eyebrow {
        margin: 0 0 12px;
        color: var(--ncy-jade-dark);
        font-size: 0.78rem;
        font-weight: 800;
    }

    .ncy-checkout-selection ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .ncy-checkout-selection li,
    .ncy-checkout-selection__total {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        justify-content: space-between;
    }

    .ncy-checkout-selection li strong {
        min-width: 0;
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .ncy-checkout-selection li > span,
    .ncy-checkout-selection__total strong {
        flex: 0 0 auto;
        color: var(--ncy-ink);
        font-weight: 800;
        white-space: nowrap;
    }

    .ncy-checkout-selection__total {
        margin: 16px 0 0;
        padding-top: 14px;
        border-top: 1px solid var(--ncy-line);
    }

    .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-sample-link {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .ncy-product-sample-link a {
        min-height: 44px;
    }

    .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;
    }
}

/* v0.21.0: finished first impression, concrete proof and public business record */
.ncy-brand--wordmark {
    gap: 0;
}

.ncy-brand--wordmark .ncy-brand-copy strong {
    color: var(--ncy-v3-pearl);
    font-size: 1.32rem;
    line-height: 1;
}

.ncy-brand--wordmark .ncy-brand-copy small {
    margin-top: 6px;
    color: var(--ncy-v3-muted);
    font-size: 0.7rem;
}

.ncy-service-card__badge {
    position: absolute;
    top: 26px;
    right: 26px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid rgba(211, 182, 128, 0.55);
    color: #d3b680;
    font-size: 0.72rem;
    font-weight: 700;
}

.ncy-delivery-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: -8px 0 42px;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
}

.ncy-delivery-strip span {
    padding: 15px 14px;
    color: #39453f;
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
}

.ncy-delivery-strip span + span {
    border-left: 1px solid rgba(23, 32, 28, 0.16);
}

.ncy-home-verification {
    padding: 92px 0;
    background: #f0eee7;
    color: #17201c;
}

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

.ncy-verification-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
    margin-bottom: 38px;
}

.ncy-verification-heading h2 {
    max-width: 780px;
    margin: 0;
    color: #17201c;
    font-size: clamp(2.3rem, 4vw, 3.35rem);
    line-height: 1.24;
}

.ncy-verification-heading > div > p:last-child {
    max-width: 680px;
    margin: 18px 0 0;
    color: #59615c;
    text-align: left;
}

body.ncy-is-front-page .ncy-home-verification .ncy-eyebrow,
body.ncy-is-front-page .ncy-home-verification .ncy-text-link {
    color: #8a4838;
}

.ncy-verification-ledger {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid rgba(23, 32, 28, 0.22);
}

.ncy-verification-ledger > div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 18px 22px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.22);
}

.ncy-verification-ledger > div:nth-child(even) {
    padding-right: 0;
    padding-left: 28px;
    border-left: 1px solid rgba(23, 32, 28, 0.18);
}

.ncy-verification-ledger dt {
    color: #777d78;
    font-size: 0.78rem;
}

.ncy-verification-ledger dd {
    margin: 0;
    color: #17201c;
    font-size: 0.92rem;
    font-weight: 700;
}

@media (max-width: 760px) {
    .ncy-brand--wordmark .ncy-brand-copy strong {
        font-size: 1.16rem;
    }

    .ncy-brand--wordmark .ncy-brand-copy small {
        font-size: 0.64rem;
    }

    .ncy-service-card__badge {
        top: 22px;
        right: 22px;
    }

    .ncy-delivery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -4px;
        margin-bottom: 28px;
    }

    .ncy-delivery-strip span:nth-child(3) {
        border-left: 0;
    }

    .ncy-delivery-strip span:nth-child(n + 3) {
        border-top: 1px solid rgba(23, 32, 28, 0.16);
    }

    .ncy-home-verification {
        padding: 68px 0;
    }

    .ncy-home-verification > .wp-block-group__inner-container {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-verification-heading,
    .ncy-verification-ledger {
        grid-template-columns: 1fr;
    }

    .ncy-verification-heading {
        gap: 20px;
        margin-bottom: 30px;
    }

    .ncy-verification-heading h2 {
        font-size: 2.35rem;
    }

    .ncy-verification-ledger > div,
    .ncy-verification-ledger > div:nth-child(even) {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
        border-left: 0;
    }

    .ncy-verification-ledger dd {
        font-size: 0.86rem;
        line-height: 1.7;
    }
}

@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-official-verification {
    width: min(100%, 860px);
    margin: 54px 0 0;
    padding-top: 36px;
    border-top: 1px solid var(--ncy-ink);
}

.ncy-official-verification__header {
    max-width: 620px;
    margin-bottom: 24px;
}

.ncy-official-verification__header h2 {
    margin: 8px 0 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.ncy-official-verification__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.ncy-official-verification article {
    padding: 22px 0;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-official-verification__label {
    margin: 0 0 8px;
    color: var(--ncy-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.ncy-official-verification h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
}

.ncy-official-verification article p:not(.ncy-official-verification__label) {
    margin: 0 0 14px;
    color: var(--ncy-copy);
    text-align: left;
}

.ncy-official-verification a {
    font-weight: 800;
}

.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__summary strong {
    display: block;
    margin-bottom: 4px;
}

.ncy-checkout-consent__summary span {
    display: block;
}

.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-official-verification {
        margin-top: 42px;
        padding-top: 28px;
    }

    .ncy-official-verification__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ncy-official-verification article + article {
        border-top: 0;
    }

    .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) {
    .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: 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: 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: 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: 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: 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: 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: 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: 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: 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-package__actions .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
}

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) {
    :root {
        --ncy-header-height: 66px;
    }

    .ncy-site-header {
        height: var(--ncy-header-height);
        background: var(--ncy-v3-night);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .ncy-primary-nav {
        top: var(--ncy-header-height);
        bottom: auto;
        z-index: 110;
        width: 100%;
        height: calc(100dvh - var(--ncy-header-height));
        border-color: var(--ncy-v3-line);
        background: var(--ncy-v3-night-soft);
    }

    .ncy-primary-nav .ncy-menu {
        width: 100%;
    }

    .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: 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: 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: 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: 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: 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: 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: 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(4, 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: 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: 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: 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;
}

/* v0.13.0: consultancy extension, direct contact and native sharing */
.ncy-home-v3-consult {
    padding: 104px 0;
    background: #dfe7e4;
    color: #17201c;
}

.ncy-home-v3-consult > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-consult-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 80px;
    align-items: end;
}

.ncy-consult-intro h2,
.ncy-consult-grid h3 {
    color: #17201c;
}

.ncy-consult-intro h2 {
    max-width: 720px;
    font-size: 3rem;
}

.ncy-consult-intro p {
    margin-bottom: 20px;
    color: #46534d;
    text-align: left;
}

.ncy-consult-intro .ncy-eyebrow {
    color: #8e4938;
}

.ncy-consult-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 72px;
    border-top: 1px solid #aebcb6;
    border-bottom: 1px solid #aebcb6;
}

.ncy-consult-grid article {
    min-width: 0;
    padding: 34px 30px 36px;
    border-right: 1px solid #aebcb6;
}

.ncy-consult-grid article:first-child {
    padding-left: 0;
}

.ncy-consult-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.ncy-consult-grid span {
    color: #8e4938;
    font-size: 0.76rem;
    font-weight: 800;
}

.ncy-consult-grid h3 {
    margin-top: 20px;
    font-size: 1.42rem;
}

.ncy-consult-grid p {
    margin: 12px 0 0;
    color: #46534d;
    font-size: 0.96rem;
    text-align: left;
}

.ncy-consult-note {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 28px;
    padding-top: 28px;
    color: #46534d;
    font-size: 0.88rem;
}

.ncy-consult-note strong {
    color: #17201c;
}

body.ncy-dual-page .ncy-page-header {
    padding-top: 98px;
    padding-bottom: 42px;
}

body.ncy-dual-page .ncy-page-header h1 {
    font-size: 4.6rem;
}

.ncy-dual {
    width: 100%;
    padding-bottom: 0;
    color: var(--ncy-v3-pearl);
}

.ncy-dual > section {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-right: max(20px, calc((100% - 1180px) / 2));
    padding-left: max(20px, calc((100% - 1180px) / 2));
}

.ncy-dual__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    gap: 84px;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 112px;
    background: var(--ncy-v3-night);
}

.ncy-dual__intro-copy h2,
.ncy-dual__method h2,
.ncy-dual__trust h2 {
    color: var(--ncy-v3-pearl);
}

.ncy-dual__intro-copy h2 {
    max-width: 680px;
    font-size: 3.2rem;
}

.ncy-dual__intro-copy > p:not(.ncy-eyebrow) {
    max-width: 660px;
    margin-top: 28px;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    text-align: left;
}

.ncy-dual__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
}

.ncy-dual__copy {
    display: inline-flex;
    min-width: 214px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid var(--ncy-v3-gold);
    border-radius: 4px;
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
}

.ncy-dual__copy:hover,
.ncy-dual__copy:focus-visible,
.ncy-dual__copy.is-success {
    border-color: var(--ncy-v3-gold-strong);
    background: var(--ncy-v3-gold-strong);
}

.ncy-dual__text-link {
    color: var(--ncy-v3-pearl);
    font-weight: 700;
    text-underline-offset: 0.28em;
}

.ncy-dual__visual {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-left: 1px solid var(--ncy-v3-line);
}

.ncy-dual__visual::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(244, 241, 233, 0.12);
    content: "";
    pointer-events: none;
}

.ncy-dual__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncy-dual__fit {
    padding-top: 104px;
    padding-bottom: 104px;
    background: #e2e8e6;
    color: #17201c;
}

.ncy-dual__fit header,
.ncy-dual__delivery header {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 64px;
    align-items: end;
}

.ncy-dual__fit h2,
.ncy-dual__fit h3,
.ncy-dual__delivery h2,
.ncy-dual__delivery strong {
    color: #17201c;
}

.ncy-dual__fit h2,
.ncy-dual__delivery h2 {
    font-size: 2.8rem;
}

.ncy-dual__fit .ncy-eyebrow,
.ncy-dual__delivery .ncy-eyebrow {
    color: #8e4938;
}

.ncy-dual__fit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 72px;
    border-top: 1px solid #aebcb6;
    border-bottom: 1px solid #aebcb6;
}

.ncy-dual__fit-grid article {
    padding: 34px 30px 38px;
    border-right: 1px solid #aebcb6;
}

.ncy-dual__fit-grid article:first-child {
    padding-left: 0;
}

.ncy-dual__fit-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.ncy-dual__fit-grid span,
.ncy-dual__steps > li > span {
    color: #8e4938;
    font-size: 0.76rem;
    font-weight: 800;
}

.ncy-dual__fit-grid h3 {
    margin-top: 20px;
}

.ncy-dual__fit-grid p {
    margin: 12px 0 0;
    color: #46534d;
    font-size: 0.96rem;
    text-align: left;
}

.ncy-dual__method {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 96px;
    padding-top: 112px;
    padding-bottom: 112px;
    background: var(--ncy-v3-night-soft);
}

.ncy-dual__method-title h2 {
    max-width: 620px;
    font-size: 3rem;
}

.ncy-dual__method-title > p:last-child {
    margin-top: 28px;
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-dual__steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ncy-v3-line);
    list-style: none;
}

.ncy-dual__steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-dual__steps h3 {
    color: var(--ncy-v3-pearl);
    font-size: 1.2rem;
}

.ncy-dual__steps p {
    margin: 7px 0 0;
    color: var(--ncy-v3-muted);
    font-size: 0.92rem;
    text-align: left;
}

.ncy-dual__delivery {
    padding-top: 104px;
    padding-bottom: 104px;
    background: var(--ncy-v3-pearl);
    color: #17201c;
}

.ncy-dual__delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 64px;
}

.ncy-dual__delivery-grid > div {
    min-height: 190px;
    padding: 28px 24px;
    border: 1px solid #c9c7bf;
    border-radius: 4px;
    background: #ffffff;
}

.ncy-dual__delivery-grid strong,
.ncy-dual__delivery-grid span {
    display: block;
}

.ncy-dual__delivery-grid strong {
    font-family: "FZQingKeBenYueSong", "Songti SC", "STSong", serif;
    font-size: 1.28rem;
}

.ncy-dual__delivery-grid span {
    margin-top: 38px;
    color: #59625d;
    font-size: 0.92rem;
}

.ncy-dual__boundary {
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    gap: 96px;
    padding-top: 88px;
    padding-bottom: 88px;
    background: #6d382f;
    color: #fff6ed;
}

.ncy-dual__boundary h2 {
    color: #fff6ed;
    font-size: 2.7rem;
}

.ncy-dual__boundary .ncy-eyebrow {
    color: #e5c497;
}

.ncy-dual__boundary ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-dual__boundary li {
    padding: 0 0 18px 26px;
    border-bottom: 1px solid rgba(255, 246, 237, 0.22);
    position: relative;
}

.ncy-dual__boundary li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    background: #e5c497;
    content: "";
}

.ncy-dual__trust {
    display: grid;
    grid-template-columns: minmax(240px, 0.46fr) minmax(0, 1fr);
    gap: 96px;
    align-items: center;
    padding-top: 112px;
    padding-bottom: 112px;
    background: var(--ncy-v3-night);
}

.ncy-dual__year {
    display: grid;
    padding-right: 60px;
    border-right: 1px solid var(--ncy-v3-line);
}

.ncy-dual__year small,
.ncy-dual__year span {
    color: var(--ncy-v3-muted);
}

.ncy-dual__year strong {
    color: var(--ncy-v3-gold-strong);
    font-family: "FZQingKeBenYueSong", "Songti SC", "STSong", serif;
    font-size: 5rem;
    line-height: 1.05;
}

.ncy-dual__trust-copy h2 {
    max-width: 720px;
    font-size: 3rem;
}

.ncy-dual__trust-copy > p:not(.ncy-eyebrow) {
    max-width: 780px;
    margin-top: 26px;
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-dual__trust-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 30px;
    color: var(--ncy-v3-gold-strong);
    font-size: 0.84rem;
}

.ncy-dual__cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    padding-top: 82px;
    padding-bottom: 82px;
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

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

.ncy-dual__cta h2 {
    max-width: 780px;
    font-size: 2.8rem;
}

.ncy-dual__cta p:not(.ncy-eyebrow) {
    margin: 18px 0 0;
    text-align: left;
}

.ncy-dual__copy--light {
    flex: 0 0 auto;
    border-color: var(--ncy-v3-night);
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

.ncy-contact-copy,
.ncy-share-tools button {
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid rgba(244, 241, 233, 0.24);
    border-radius: 4px;
    background: transparent;
    color: inherit;
    letter-spacing: 0;
    cursor: pointer;
}

.ncy-contact-copy:hover,
.ncy-contact-copy:focus-visible,
.ncy-share-tools button:hover,
.ncy-share-tools button:focus-visible,
.ncy-contact-copy.is-success,
.ncy-share-tools button.is-success {
    border-color: var(--ncy-v3-gold);
    color: var(--ncy-v3-gold-strong);
}

.ncy-share-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ncy-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 240;
    max-width: min(340px, calc(100% - 28px));
    padding: 12px 16px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    background: var(--ncy-v3-night-raised);
    color: var(--ncy-v3-pearl);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: 0.88rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ncy-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .ncy-consult-intro,
    .ncy-dual__intro,
    .ncy-dual__method,
    .ncy-dual__boundary,
    .ncy-dual__trust {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ncy-dual__visual {
        aspect-ratio: 16 / 10;
    }

    .ncy-dual__fit header,
    .ncy-dual__delivery header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .ncy-dual__year {
        padding-right: 0;
        padding-bottom: 36px;
        border-right: 0;
        border-bottom: 1px solid var(--ncy-v3-line);
    }
}

@media (max-width: 720px) {
    .ncy-home-v3-consult {
        padding: 68px 0;
    }

    .ncy-home-v3-consult > .wp-block-group__inner-container {
        width: min(calc(100% - 28px), var(--ncy-content));
    }

    .ncy-consult-intro {
        gap: 26px;
    }

    .ncy-consult-intro h2,
    .ncy-dual__intro-copy h2,
    .ncy-dual__method-title h2,
    .ncy-dual__trust-copy h2 {
        font-size: 2.2rem;
    }

    .ncy-consult-grid {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .ncy-consult-grid article,
    .ncy-consult-grid article:first-child,
    .ncy-consult-grid article:last-child {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid #aebcb6;
    }

    .ncy-consult-grid article:last-child {
        border-bottom: 0;
    }

    .ncy-consult-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    body.ncy-dual-page .ncy-page-header {
        padding-top: 58px;
        padding-bottom: 30px;
    }

    body.ncy-dual-page .ncy-page-header h1 {
        font-size: 2.7rem;
    }

    .ncy-dual > section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ncy-dual__intro,
    .ncy-dual__fit,
    .ncy-dual__method,
    .ncy-dual__delivery,
    .ncy-dual__boundary,
    .ncy-dual__trust {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .ncy-dual__intro {
        gap: 40px;
    }

    .ncy-dual__intro-copy > p:not(.ncy-eyebrow) {
        font-size: 1rem;
    }

    .ncy-dual__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .ncy-dual__copy {
        width: 100%;
    }

    .ncy-dual__text-link {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }

    .ncy-dual__visual {
        aspect-ratio: 4 / 3;
    }

    .ncy-dual__fit h2,
    .ncy-dual__delivery h2,
    .ncy-dual__boundary h2,
    .ncy-dual__cta h2 {
        font-size: 2.08rem;
    }

    .ncy-dual__fit-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .ncy-dual__fit-grid article,
    .ncy-dual__fit-grid article:first-child,
    .ncy-dual__fit-grid article:last-child {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid #aebcb6;
    }

    .ncy-dual__fit-grid article:last-child {
        border-bottom: 0;
    }

    .ncy-dual__method {
        gap: 42px;
    }

    .ncy-dual__delivery-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .ncy-dual__delivery-grid > div {
        min-height: 0;
        padding: 24px 20px;
    }

    .ncy-dual__delivery-grid span {
        margin-top: 18px;
    }

    .ncy-dual__boundary {
        gap: 38px;
    }

    .ncy-dual__trust {
        gap: 42px;
    }

    .ncy-dual__year strong {
        font-size: 4rem;
    }

    .ncy-dual__cta {
        align-items: stretch;
        flex-direction: column;
        gap: 30px;
        padding-top: 62px;
        padding-bottom: 62px;
    }

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

    .ncy-mobile-action a,
    .ncy-mobile-action button {
        display: inline-flex;
        min-width: 0;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        padding: 10px 6px;
        border: 1px solid var(--ncy-v3-line);
        border-radius: 4px;
        background: transparent;
        color: var(--ncy-v3-pearl);
        font-size: 0.84rem;
        font-weight: 800;
        letter-spacing: 0;
        text-align: center;
        text-decoration: none;
    }

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

    .ncy-mobile-action button.is-success {
        border-color: var(--ncy-v3-gold);
        color: var(--ncy-v3-gold-strong);
    }

    .ncy-toast {
        right: 14px;
        bottom: calc(18px + env(safe-area-inset-bottom));
    }
}

.ncy-about-v2__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 640px) {
    .ncy-about-v2__actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .ncy-about-v2__actions .ncy-v2-button,
    .ncy-about-v2__actions .ncy-dual__text-link {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        text-align: center;
    }
}


@media (max-width: 980px) {
    .woocommerce-cart .ncy-page-header h1,
    .woocommerce-checkout .ncy-page-header h1 {
        font-size: 3.4rem;
    }
}

@media (max-width: 640px) {
    .woocommerce-cart .ncy-page-header h1,
    .woocommerce-checkout .ncy-page-header h1 {
        font-size: 2.4rem;
    }
}


/* v0.14.0: customer decision guides and verifiable sample comparisons */
.ncy-reading-v4__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 44px;
}

.ncy-reading-v4__head h2 {
    max-width: 11em;
    color: var(--ncy-v3-pearl);
    font-size: 3.5rem;
}

.ncy-reading-v4__head > p {
    margin: 0;
    color: rgba(244, 241, 233, 0.76);
    text-align: left;
}

.ncy-reading-v4__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(244, 241, 233, 0.24);
    border-bottom: 1px solid rgba(244, 241, 233, 0.24);
}

.ncy-reading-v4__grid article {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 34px 30px;
    border-right: 1px solid rgba(244, 241, 233, 0.24);
    background: rgba(7, 15, 12, 0.12);
}

.ncy-reading-v4__grid article:nth-child(2) {
    background: rgba(15, 52, 45, 0.2);
}

.ncy-reading-v4__grid article:nth-child(3) {
    border-right: 0;
    background: rgba(16, 18, 15, 0.2);
}

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

.ncy-reading-v4__grid h3 {
    margin: 46px 0 18px;
    color: var(--ncy-v3-pearl);
    font-size: 1.75rem;
    line-height: 1.45;
}

.ncy-reading-v4__grid p {
    margin: 0 0 28px;
    color: rgba(244, 241, 233, 0.72);
    text-align: left;
}

.ncy-reading-v4__grid .ncy-text-link {
    margin-top: auto;
    color: var(--ncy-v3-gold-strong);
}

.ncy-reading-v4__all {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

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

.ncy-sample-compare {
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-sample-verdict {
    display: grid;
    grid-template-columns: 58px 160px minmax(0, 1fr) 64px;
    gap: 24px;
    align-items: center;
    min-height: 132px;
    padding: 26px 42px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

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

.ncy-sample-verdict.is-first {
    box-shadow: inset 4px 0 0 var(--ncy-v3-gold-strong);
    background: rgba(202, 164, 105, 0.08);
}

.ncy-sample-verdict.is-rejected {
    color: rgba(244, 241, 233, 0.72);
}

.ncy-sample-verdict__code {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 50%;
    color: var(--ncy-v3-gold-strong);
    font-family: var(--ncy-font-serif);
    font-size: 1.05rem;
}

.ncy-sample-verdict small {
    display: block;
    color: #9ac2b9;
    font-weight: 800;
}

.ncy-sample-verdict h3 {
    margin: 7px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 1.25rem;
}

.ncy-sample-verdict p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
    text-align: left;
}

.ncy-sample-verdict > strong {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.86rem;
    text-align: right;
}

.ncy-sample-verdict.is-rejected > strong {
    color: #c78373;
}

.ncy-samples-v3__conclusion,
.ncy-samples-v3__boundary {
    margin: 0;
    padding: 26px 42px;
    color: var(--ncy-v3-muted);
    text-align: left;
}

.ncy-samples-v3__conclusion strong {
    color: var(--ncy-v3-pearl);
}

.ncy-samples-v3__boundary {
    padding-top: 0;
    font-size: 0.9rem;
}

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

.ncy-article-checklist {
    display: grid;
    gap: 12px;
    padding: 0;
    counter-reset: ncy-checklist;
    list-style: none;
}

.ncy-article-checklist li {
    position: relative;
    margin: 0;
    padding: 18px 20px 18px 64px;
    border: 1px solid rgba(29, 57, 49, 0.16);
    border-radius: 4px;
    background: rgba(238, 233, 220, 0.52);
    counter-increment: ncy-checklist;
}

.ncy-article-checklist li::before {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #a94a35;
    content: counter(ncy-checklist, decimal-leading-zero);
    font-weight: 800;
}

.ncy-article-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 30px 0;
    border-top: 1px solid rgba(29, 57, 49, 0.18);
    border-left: 1px solid rgba(29, 57, 49, 0.18);
}

.ncy-article-map div {
    padding: 24px;
    border-right: 1px solid rgba(29, 57, 49, 0.18);
    border-bottom: 1px solid rgba(29, 57, 49, 0.18);
}

.ncy-article-map dt {
    color: #15392f;
    font-family: var(--ncy-font-serif);
    font-size: 1.25rem;
    font-weight: 800;
}

.ncy-article-map dd {
    margin: 10px 0 0;
}

.ncy-article-notice {
    margin: 32px 0;
    padding: 20px 24px;
    border-left: 3px solid #a94a35;
    background: rgba(238, 233, 220, 0.62);
}

@media (max-width: 980px) {
    .ncy-reading-v4__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ncy-reading-v4__grid h3 {
        font-size: 1.45rem;
    }

    .ncy-sample-verdict {
        grid-template-columns: 50px 130px minmax(0, 1fr) 56px;
        gap: 18px;
        padding-right: 26px;
        padding-left: 26px;
    }
}

@media (max-width: 720px) {
    .ncy-reading-v4__head {
        margin-bottom: 28px;
    }

    .ncy-reading-v4__head h2 {
        font-size: 2.05rem;
    }

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

    .ncy-reading-v4__grid::-webkit-scrollbar {
        display: none;
    }

    .ncy-reading-v4__grid article,
    .ncy-reading-v4__grid article:nth-child(3) {
        flex: 0 0 86%;
        min-height: 310px;
        border: 1px solid rgba(244, 241, 233, 0.24);
        scroll-snap-align: start;
    }

    .ncy-reading-v4__grid h3 {
        margin-top: 38px;
    }

    .ncy-reading-v4__all,
    .ncy-reading-v4__all .wp-element-button {
        width: 100%;
    }

    .ncy-reading-v4__all .wp-element-button {
        justify-content: center;
        text-align: center;
    }

    .ncy-sample-verdict {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 14px;
        min-height: 0;
        padding: 22px 18px;
    }

    .ncy-sample-verdict__code {
        grid-row: 1 / span 2;
        width: 36px;
        height: 36px;
    }

    .ncy-sample-verdict p {
        grid-column: 2 / 4;
    }

    .ncy-sample-verdict > strong {
        align-self: start;
    }

    .ncy-samples-v3__conclusion,
    .ncy-samples-v3__boundary {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ncy-samples-v3__structure ol,
    .ncy-article-map {
        grid-template-columns: 1fr;
    }
}

/* Keep headings readable when the consulting page switches to light sections. */
body.ncy-dual-page.ncy-editorial-dark .ncy-page-content .ncy-dual__fit h2,
body.ncy-dual-page.ncy-editorial-dark .ncy-page-content .ncy-dual__fit h3,
body.ncy-dual-page.ncy-editorial-dark .ncy-page-content .ncy-dual__delivery h2,
body.ncy-dual-page.ncy-editorial-dark .ncy-page-content .ncy-dual__delivery strong {
    color: #17201c;
}

/* v0.16.0: adult-first service order, minor renaming and dynamic articles */
.ncy-service-track--v3 .ncy-service-card.ncy-service-card--adult {
    border-top-color: var(--ncy-v3-teal);
    background: #121b18;
}

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

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

.ncy-service-card__minor-link {
    display: block;
    margin-top: 8px;
    color: rgba(244, 241, 233, 0.7);
    font-size: 0.78rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ncy-reading-v4__grid h3 a {
    color: inherit;
    text-decoration: none;
}

.ncy-reading-v4__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: auto;
    color: rgba(244, 241, 233, 0.58);
    font-size: 0.75rem;
}

.ncy-reading-v4__grid .ncy-reading-v4__meta + .ncy-text-link {
    margin-top: 18px;
}

.ncy-v2-minor-callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.3fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 96px;
    padding: 34px;
    border: 1px solid var(--ncy-v3-line);
    border-left: 3px solid var(--ncy-v3-teal);
    background: rgba(18, 27, 24, 0.78);
}

.ncy-v2-minor-callout h2 {
    max-width: 22em;
    margin: 10px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 1.65rem;
    line-height: 1.45;
}

@media (max-width: 720px) {
    .ncy-v2-minor-callout {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 68px;
        padding: 26px 22px;
    }

    .ncy-v2-minor-callout h2 {
        font-size: 1.35rem;
    }
}


/* v0.16.0: text-only editorial article list */
.ncy-home-v4-reading .ncy-reading-v4__grid {
    display: block;
    overflow: visible;
    padding: 0;
    border-top: 1px solid #1f1f24;
    border-bottom: 0;
}

.ncy-home-v4-reading .ncy-reading-v4__grid article,
.ncy-home-v4-reading .ncy-reading-v4__grid article:nth-child(2),
.ncy-home-v4-reading .ncy-reading-v4__grid article:nth-child(3) {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 170px;
    gap: 8px 28px;
    min-height: 0;
    padding: 26px 0;
    border: 0;
    border-bottom: 1px solid #1f1f24;
    background: transparent;
}

.ncy-home-v4-reading .ncy-reading-v4__grid article > span {
    grid-column: 1;
    grid-row: 1 / 3;
    color: var(--ncy-v3-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-home-v4-reading .ncy-reading-v4__grid h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

.ncy-home-v4-reading .ncy-reading-v4__grid p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: rgba(244, 241, 233, 0.68);
}

.ncy-home-v4-reading .ncy-reading-v4__meta {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-end;
    margin: 0;
    text-align: right;
}

.ncy-home-v4-reading .ncy-reading-v4__meta span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.ncy-home-v4-reading .ncy-reading-v4__grid .ncy-text-link {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    margin: 0;
}

@media (max-width: 720px) {
    .ncy-home-v4-reading .ncy-reading-v4__grid {
        display: block;
        overflow: visible;
        padding: 0;
    }

    .ncy-home-v4-reading .ncy-reading-v4__grid article,
    .ncy-home-v4-reading .ncy-reading-v4__grid article:nth-child(2),
    .ncy-home-v4-reading .ncy-reading-v4__grid article:nth-child(3) {
        display: block;
        min-height: 0;
        padding: 22px 0;
        border: 0;
        border-bottom: 1px solid #1f1f24;
    }

    .ncy-home-v4-reading .ncy-reading-v4__grid article > span {
        display: block;
        margin-bottom: 8px;
    }

    .ncy-home-v4-reading .ncy-reading-v4__grid h3 {
        margin: 0;
        font-size: 1.125rem;
    }

    .ncy-home-v4-reading .ncy-reading-v4__grid p {
        margin-top: 8px;
    }

    .ncy-home-v4-reading .ncy-reading-v4__meta {
        justify-content: flex-start;
        margin-top: 12px;
        text-align: left;
    }

    .ncy-home-v4-reading .ncy-reading-v4__grid .ncy-text-link {
        display: inline-flex;
        margin-top: 12px;
    }
}

/* v0.17.0: first-impression completion rebuild */
.ncy-home-v5-hero {
    min-height: min(680px, 78svh);
    align-items: center;
    background-image:
        linear-gradient(90deg, rgba(7, 11, 9, 0.97) 0%, rgba(7, 11, 9, 0.86) 48%, rgba(7, 11, 9, 0.25) 78%, rgba(7, 11, 9, 0.44) 100%),
        url("../images/hero-naming-studio.webp");
    background-position: 60% center;
}

.ncy-home-v5-hero > .wp-block-group__inner-container {
    padding-top: 72px;
    padding-bottom: 58px;
}

.ncy-home-v5-hero .ncy-hero-copy {
    max-width: 820px;
    padding-left: 28px;
    border-left: 1px solid rgba(196, 165, 116, 0.76);
}

.ncy-home-v5-hero h1 {
    max-width: 12em;
    font-size: clamp(3.6rem, 5.5vw, 5rem);
    line-height: 1.16;
}

.ncy-home-v5-hero .ncy-hero-lead {
    max-width: 660px;
    margin-top: 22px;
    color: rgba(244, 241, 233, 0.88);
    font-size: 1.08rem;
    line-height: 1.75;
}

.ncy-home-v5-hero .ncy-hero-proof {
    display: grid;
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin-top: 30px;
}

.ncy-home-v5-services,
.ncy-home-v5-proof,
.ncy-home-v5-expert,
.ncy-home-v5-process,
.ncy-home-v5-faq,
.ncy-home-v5-reading,
.ncy-home-v5-cta {
    padding: 92px 0;
}

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

.ncy-home-v5-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 42px;
}

.ncy-home-v5-heading h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.45rem, 4.2vw, 3.4rem);
    line-height: 1.22;
}

.ncy-home-v5-heading > p,
.ncy-home-v5-heading > a {
    margin: 0;
}

.ncy-home-v5-services {
    background: #f0eee7;
    color: #151915;
}

body.ncy-is-front-page .ncy-home-v5-services .ncy-eyebrow,
body.ncy-is-front-page .ncy-home-v5-services .ncy-text-link {
    color: #7a4e39;
}

.ncy-home-v5-services .ncy-home-v5-heading > p {
    color: #565d57;
}

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

.ncy-home-v5-service-track .ncy-service-card {
    min-height: 460px;
    padding: 30px;
    border: 1px solid rgba(21, 25, 21, 0.16);
    border-top-width: 3px;
    border-radius: 3px;
    box-shadow: 0 18px 40px rgba(21, 25, 21, 0.07);
}

.ncy-home-v5-service-track .ncy-service-card--adult {
    border-top-color: #b65e46;
    background: #15201b;
    color: #f4f1e9;
}

.ncy-home-v5-service-track .ncy-service-card--baby {
    border-top-color: #6e9a90;
    background: #dfe9e5;
    color: #151915;
}

.ncy-home-v5-service-track .ncy-service-card--business {
    border-top-color: #b08a57;
    background: #faf6ed;
    color: #151915;
}

.ncy-home-v5-service-track .ncy-service-card h3 {
    margin-top: 24px;
    color: inherit;
    font-size: 2.15rem;
}

.ncy-home-v5-service-track .ncy-service-card__kicker {
    margin-top: 16px;
    color: inherit;
    opacity: 0.72;
}

.ncy-home-v5-service-track .ncy-service-card__promise {
    min-height: 0;
    color: inherit;
    font-family: var(--ncy-font-sans);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.86;
}

.ncy-home-v5-service-track .ncy-service-card__checks {
    margin-top: 24px;
    padding-top: 20px;
    border-top-color: currentColor;
    color: inherit;
    opacity: 0.82;
}

.ncy-home-v5-service-track .ncy-service-card__meta {
    align-items: flex-end;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 20px;
    border-top-color: currentColor;
}

.ncy-home-v5-service-track .ncy-service-card--adult .ncy-text-link,
.ncy-home-v5-service-track .ncy-service-card--adult .ncy-service-card__minor-link {
    color: #d3b680;
}

.ncy-home-v5-service-track .ncy-service-card__minor-link {
    flex-basis: 100%;
    color: #626862;
    font-size: 0.82rem;
    text-decoration: none;
}

.ncy-home-v5-proof {
    background: #dfe8e3;
    color: #17201c;
}

body.ncy-is-front-page .ncy-home-v5-proof .ncy-eyebrow,
body.ncy-is-front-page .ncy-home-v5-proof .ncy-text-link {
    color: #8a4838;
}

.ncy-home-v5-proof-heading > p {
    color: #4d5b54;
}

.ncy-home-sample-choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 34px;
}

.ncy-home-sample-choice {
    display: grid;
    min-height: 190px;
    align-content: start;
    padding: 24px;
    border: 1px solid rgba(23, 32, 28, 0.2);
    border-top: 3px solid #78928a;
    border-radius: 3px;
    background: rgba(251, 250, 246, 0.52);
    box-shadow: 0 14px 34px rgba(23, 32, 28, 0.07);
    color: #17201c;
    text-decoration: none;
    scroll-snap-align: start;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ncy-home-sample-choice:hover,
.ncy-home-sample-choice:focus-visible {
    border-color: rgba(138, 72, 56, 0.66);
    box-shadow: 0 20px 42px rgba(23, 32, 28, 0.12);
    transform: translateY(-2px);
}

.ncy-home-sample-choice:focus-visible {
    outline: 3px solid rgba(138, 72, 56, 0.28);
    outline-offset: 3px;
}

.ncy-home-sample-choice.is-primary {
    border-color: #15201b;
    border-top-color: #b65e46;
    background: #15201b;
    color: #f4f1e9;
}

.ncy-home-sample-choice__meta {
    color: #7a4e39;
    font-size: 0.76rem;
    font-weight: 800;
}

.ncy-home-sample-choice.is-primary .ncy-home-sample-choice__meta,
.ncy-home-sample-choice.is-primary .ncy-home-sample-choice__link {
    color: #d3b680;
}

.ncy-home-sample-choice strong {
    margin-top: 14px;
    font-family: var(--ncy-font-serif);
    font-size: 1.45rem;
    line-height: 1.35;
}

.ncy-home-sample-choice small {
    margin-top: 10px;
    color: inherit;
    font-size: 0.88rem;
    line-height: 1.65;
    opacity: 0.75;
}

.ncy-home-sample-choice__link {
    align-self: end;
    margin-top: 22px;
    color: #8a4838;
    font-size: 0.86rem;
    font-weight: 800;
}

.ncy-home-v5-proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
    gap: 62px;
    align-items: start;
}

.ncy-report-preview {
    overflow: hidden;
    border: 1px solid rgba(23, 32, 28, 0.2);
    border-top: 4px solid #b65e46;
    border-radius: 3px;
    background: #fbfaf6;
    box-shadow: 0 26px 64px rgba(23, 32, 28, 0.14);
    color: #17201c;
}

.ncy-report-preview > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(23, 32, 28, 0.14);
}

.ncy-report-preview > header div {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.ncy-report-preview > header span {
    color: #8a4838;
    font-weight: 800;
}

.ncy-report-preview > header strong {
    font-family: var(--ncy-font-serif);
    font-size: 1.15rem;
}

.ncy-report-preview > header small {
    color: #6d746f;
}

.ncy-report-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0 28px;
    background: #f2efe7;
}

.ncy-report-meta div {
    padding: 18px 0;
}

.ncy-report-meta div + div {
    padding-left: 20px;
    border-left: 1px solid rgba(23, 32, 28, 0.12);
}

.ncy-report-meta dt {
    color: #777d78;
    font-size: 0.72rem;
}

.ncy-report-meta dd {
    margin: 4px 0 0;
    font-weight: 800;
}

.ncy-report-option {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin: 0 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.14);
}

.ncy-report-option > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(23, 32, 28, 0.22);
    color: #8a4838;
    font-family: Georgia, serif;
    font-weight: 700;
}

.ncy-report-option small {
    color: #777d78;
}

.ncy-report-option h3 {
    margin: 4px 0 7px;
    color: #17201c;
    font-size: 1.5rem;
}

.ncy-report-option h3 em {
    margin-left: 8px;
    color: #777d78;
    font-family: var(--ncy-font-sans);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
}

.ncy-report-option p {
    margin: 0;
    color: #505b55;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}

.ncy-report-option > strong {
    align-self: center;
    color: #6e756f;
    font-size: 0.76rem;
    white-space: nowrap;
}

.ncy-report-option.is-primary > span {
    border-color: #b65e46;
    background: #b65e46;
    color: #fff;
}

.ncy-report-preview > footer {
    padding: 20px 28px 24px;
    color: #5f6761;
    font-size: 0.82rem;
    line-height: 1.65;
}

.ncy-proof-notes {
    padding-top: 4px;
}

.ncy-proof-notes h3 {
    margin: 0;
    color: #17201c;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.35;
}

.ncy-proof-notes ol {
    margin: 32px 0 26px;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    list-style: none;
}

.ncy-proof-notes li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
}

.ncy-proof-notes li > span {
    color: #8a4838;
    font-size: 0.74rem;
    font-weight: 800;
}

.ncy-proof-notes li strong {
    display: block;
    margin-bottom: 4px;
}

.ncy-proof-notes li p {
    margin: 0;
    color: #4d5b54;
    font-size: 0.9rem;
    text-align: left;
}

.ncy-home-v5-expert {
    background: #101713;
    color: #f4f1e9;
}

.ncy-expert-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    gap: 74px;
    align-items: center;
}

.ncy-expert-signature {
    display: grid;
    min-height: 330px;
    align-content: center;
    padding-right: 56px;
    border-right: 1px solid rgba(196, 165, 116, 0.28);
}

.ncy-expert-signature small,
.ncy-expert-signature span {
    color: rgba(244, 241, 233, 0.64);
}

.ncy-expert-signature strong {
    margin: 16px 0 22px;
    color: #d3b680;
    font-family: var(--ncy-font-serif);
    font-size: clamp(4.6rem, 8vw, 7.5rem);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.ncy-expert-signature sup {
    margin-left: 4px;
    font-family: var(--ncy-font-sans);
    font-size: 0.14em;
    vertical-align: super;
}

.ncy-expert-copy h2 {
    max-width: 760px;
    margin: 0;
    color: #f4f1e9;
    font-size: clamp(2.35rem, 4vw, 3.45rem);
    line-height: 1.28;
}

.ncy-expert-copy > p:not(.ncy-eyebrow) {
    max-width: 760px;
    margin: 24px 0 12px;
    color: rgba(244, 241, 233, 0.7);
    text-align: left;
}

.ncy-expert-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 62px;
    border-top: 1px solid rgba(196, 165, 116, 0.24);
    border-bottom: 1px solid rgba(196, 165, 116, 0.24);
}

.ncy-expert-facts span {
    padding: 20px 16px;
    color: rgba(244, 241, 233, 0.8);
    font-size: 0.88rem;
    text-align: center;
}

.ncy-expert-facts span + span {
    border-left: 1px solid rgba(196, 165, 116, 0.24);
}

.ncy-home-v5-process {
    background: #f7f5ef;
    color: #17201c;
}

body.ncy-is-front-page .ncy-home-v5-process .ncy-eyebrow,
body.ncy-is-front-page .ncy-home-v5-process .ncy-text-link {
    color: #8a4838;
}

.ncy-home-v5-process .ncy-home-v5-heading > p,
.ncy-home-v5-process .ncy-process-step p {
    color: #58605b;
}

.ncy-home-v5-process .ncy-process-grid,
.ncy-home-v5-process .ncy-process-step {
    border-color: rgba(23, 32, 28, 0.18);
}

.ncy-home-v5-process .ncy-process-step h3 {
    color: #17201c;
}

.ncy-home-v5-process .ncy-process-step__number {
    color: #8a4838;
}

.ncy-home-v5-faq {
    background: #0e1511;
}

.ncy-home-v5-reading {
    background: #18322d;
}

.ncy-home-v5-cta {
    background: #c4a574;
}

@media (max-width: 980px) {
    .ncy-home-v5-heading,
    .ncy-home-v5-proof-layout,
    .ncy-expert-layout {
        grid-template-columns: 1fr;
    }

    .ncy-home-v5-heading {
        gap: 18px;
    }

    .ncy-home-v5-proof-layout {
        gap: 44px;
    }

    .ncy-proof-notes {
        max-width: 760px;
    }

    .ncy-expert-signature {
        min-height: 0;
        padding: 0 0 38px;
        border-right: 0;
        border-bottom: 1px solid rgba(196, 165, 116, 0.28);
    }
}

@media (max-width: 720px) {
    .ncy-home-v5-hero {
        min-height: min(660px, 78svh);
        background-image:
            linear-gradient(180deg, rgba(7, 11, 9, 0.5) 0%, rgba(7, 11, 9, 0.76) 44%, rgba(7, 11, 9, 0.96) 100%),
            url("../images/hero-naming-studio.webp");
        background-position: 62% center;
    }

    .ncy-home-v5-hero > .wp-block-group__inner-container {
        padding-top: 58px;
        padding-bottom: 36px;
    }

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

    .ncy-home-v5-hero h1 {
        max-width: 10.8em;
        font-size: 2.35rem;
        line-height: 1.22;
    }

    .ncy-home-v5-hero .ncy-hero-lead {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .ncy-home-v5-hero .wp-block-buttons {
        gap: 10px;
        margin-top: 22px;
    }

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

    .ncy-home-v5-hero .ncy-hero-proof {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        margin-top: 22px;
        padding-top: 14px;
        font-size: 0.74rem;
    }

    .ncy-home-sample-choices {
        grid-template-columns: repeat(3, minmax(82%, 1fr));
        gap: 12px;
        overflow-x: auto;
        margin-right: -20px;
        padding: 2px 20px 14px 0;
        scroll-padding-inline: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

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

    .ncy-home-sample-choice {
        min-height: 184px;
        padding: 22px;
    }

    .ncy-home-v5-services,
    .ncy-home-v5-proof,
    .ncy-home-v5-expert,
    .ncy-home-v5-process,
    .ncy-home-v5-faq,
    .ncy-home-v5-reading,
    .ncy-home-v5-cta {
        padding: 66px 0;
    }

    .ncy-home-v5-heading {
        margin-bottom: 30px;
    }

    .ncy-home-v5-heading h2,
    .ncy-expert-copy h2 {
        font-size: 2rem;
    }

    .ncy-home-v5-service-track {
        grid-template-columns: repeat(3, minmax(86%, 1fr));
        gap: 12px;
    }

    .ncy-home-v5-service-track .ncy-service-card {
        min-height: 440px;
        padding: 24px;
    }

    .ncy-home-v5-service-track .ncy-service-card h3 {
        font-size: 1.85rem;
    }

    .ncy-report-preview > header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .ncy-report-preview > header div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .ncy-report-meta {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .ncy-report-meta div,
    .ncy-report-meta div + div {
        padding: 13px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(23, 32, 28, 0.12);
    }

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

    .ncy-report-option {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 14px;
        margin: 0 20px;
        padding: 20px 0;
    }

    .ncy-report-option > span {
        width: 34px;
        height: 34px;
    }

    .ncy-report-option > strong {
        grid-column: 2;
        justify-self: start;
    }

    .ncy-report-option h3 {
        font-size: 1.3rem;
    }

    .ncy-report-preview > footer {
        padding: 18px 20px 22px;
    }

    .ncy-proof-notes h3 {
        font-size: 1.75rem;
    }

    .ncy-expert-signature strong {
        font-size: 4.35rem;
    }

    .ncy-expert-facts {
        grid-template-columns: 1fr 1fr;
        margin-top: 42px;
    }

    .ncy-expert-facts span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(196, 165, 116, 0.24);
    }

    .ncy-expert-facts span:nth-child(4) {
        border-top: 1px solid rgba(196, 165, 116, 0.24);
    }

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

@media (max-width: 390px) {
    .ncy-home-v5-hero h1 {
        font-size: 2.12rem;
    }

    .ncy-home-v5-hero .ncy-hero-proof {
        grid-template-columns: 1fr;
    }

    .ncy-expert-signature strong {
        font-size: 3.85rem;
    }
}

/* v0.17.1: contrast and cache correction */
body.ncy-is-front-page .ncy-home-v5-service-track .ncy-service-card.ncy-service-card--adult {
    background-color: #15201b !important;
    background-image: none !important;
    color: #f4f1e9 !important;
}

body.ncy-is-front-page .ncy-home-v5-faq .ncy-home-v5-heading h2 {
    color: #f4f1e9 !important;
}

/* v0.17.2: adult card child contrast */
body.ncy-is-front-page .ncy-home-v5-service-track .ncy-service-card.ncy-service-card--adult li {
    color: rgba(244, 241, 233, 0.82) !important;
}

body.ncy-is-front-page .ncy-home-v5-service-track .ncy-service-card.ncy-service-card--adult .ncy-text-link {
    color: #d3b680 !important;
}

/* Adult renaming service page 0.18.0 */
body.ncy-adult-page .ncy-page {
    width: min(calc(100% - 40px), 1200px);
    padding-top: 66px;
}

body.ncy-adult-page .ncy-page-header {
    margin-bottom: 18px;
}

body.ncy-adult-page .ncy-page-header h1 {
    max-width: 880px;
    font-size: clamp(3.4rem, 7vw, 6.6rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.ncy-adult-v2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
    gap: 72px;
    align-items: end;
    padding: 12px 0 72px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

body.ncy-adult-page .ncy-adult-v2-hero .ncy-page-lead {
    max-width: 760px !important;
    margin: 0;
    color: var(--ncy-v3-pearl);
    font-family: var(--ncy-font-serif);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    line-height: 1.62;
    text-align: left;
}

.ncy-adult-v2-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.ncy-adult-v2-actions .wp-element-button {
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-adult-v2-actions .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
}

.ncy-adult-v2-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 30px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--ncy-v3-line);
    color: var(--ncy-v3-muted);
    font-size: 0.9rem;
    list-style: none;
}

.ncy-adult-v2-facts li {
    position: relative;
    padding-left: 16px;
}

.ncy-adult-v2-facts li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ncy-v3-gold);
    content: "";
}

.ncy-adult-v2-question {
    padding: 30px;
    border-top: 3px solid var(--ncy-v3-teal);
    background: var(--ncy-v3-pearl);
    color: var(--ncy-v3-night);
}

.ncy-adult-v2-question span {
    display: block;
    color: #8a4838;
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-adult-v2-question strong {
    display: block;
    margin-top: 16px;
    font-family: var(--ncy-font-serif);
    font-size: 1.7rem;
    line-height: 1.45;
}

.ncy-adult-v2-question p {
    margin: 18px 0 0;
    color: #59605b;
}

.ncy-adult-v2-heading {
    max-width: 860px;
}

.ncy-adult-v2-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    line-height: 1.16;
    letter-spacing: 0;
}

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

.ncy-adult-v2-use,
.ncy-adult-v2-scenes,
.ncy-adult-v2-sample,
.ncy-adult-v2-pricing-head,
.ncy-product-offer-grid,
.ncy-adult-v2-process,
.ncy-adult-v2-formal,
.ncy-adult-v2-trust,
.ncy-adult-v2-faq,
.ncy-adult-v2-final {
    margin-top: 92px;
}

.ncy-adult-v2-use-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-adult-v2-use-grid article {
    min-width: 0;
    padding: 40px;
}

.ncy-adult-v2-use-grid article:first-child {
    background: #f1ede3;
    color: #171b18;
}

.ncy-adult-v2-use-grid article:last-child {
    border-left: 1px solid var(--ncy-v3-line);
    background: #13201c;
    color: var(--ncy-v3-pearl);
}

.ncy-adult-v2-use-grid article > span {
    color: #9a4f3d;
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-adult-v2-use-grid article:last-child > span,
.ncy-adult-v2-use-grid article:last-child .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
}

.ncy-adult-v2-use-grid h3 {
    margin: 14px 0 16px;
    color: inherit !important;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.ncy-adult-v2-use-grid p {
    margin: 0;
    color: inherit;
    opacity: 0.78;
}

.ncy-adult-v2-use-grid ul {
    margin: 24px 0 26px;
    padding: 20px 0 0;
    border-top: 1px solid currentColor;
    list-style: none;
    opacity: 0.82;
}

.ncy-adult-v2-use-grid li + li {
    margin-top: 10px;
}

.ncy-adult-v2-use-grid .ncy-text-link {
    color: #6f392d;
}

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

.ncy-adult-v2-scene-grid article {
    padding: 30px 26px 34px;
}

.ncy-adult-v2-scene-grid article + article {
    border-left: 1px solid var(--ncy-v3-line);
}

.ncy-adult-v2-scene-grid span {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-adult-v2-scene-grid h3 {
    margin: 18px 0 12px;
    font-size: 1.4rem;
}

.ncy-adult-v2-scene-grid p {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.ncy-adult-v2-sample {
    padding: 64px;
    background: #dfe8e3;
    color: #17201c;
}

body.ncy-adult-page .ncy-adult-v2-sample h2,
body.ncy-adult-page .ncy-adult-v2-sample h3 {
    color: #17201c;
}

body.ncy-adult-page .ncy-adult-v2-sample .ncy-eyebrow,
body.ncy-adult-page .ncy-adult-v2-sample .ncy-text-link {
    color: #8a4838;
}

.ncy-adult-v2-heading--dark > p:last-child:not(.ncy-eyebrow) {
    color: #4d5b54;
}

.ncy-adult-v2-sample-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(290px, 0.68fr);
    gap: 54px;
    align-items: start;
    margin-top: 38px;
}

.ncy-adult-v2-sample-notes {
    padding-top: 6px;
}

.ncy-adult-v2-sample-notes h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.ncy-adult-v2-sample-notes ol {
    margin: 28px 0 24px;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    list-style: none;
}

.ncy-adult-v2-sample-notes li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
}

.ncy-adult-v2-sample-notes li > span {
    color: #8a4838;
    font-weight: 800;
}

.ncy-adult-v2-sample-notes strong {
    display: block;
}

.ncy-adult-v2-sample-notes p {
    margin: 5px 0 0;
    color: #536058;
    font-size: 0.9rem;
}

.ncy-product-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ncy-adult-v2-pricing-head + .ncy-product-offer-grid {
    margin-top: 36px;
}

.ncy-product-offer {
    display: flex;
    min-width: 0;
    padding: 38px;
    border: 1px solid var(--ncy-v3-line);
    border-top: 3px solid var(--ncy-v3-gold);
    border-radius: 3px;
    background: var(--ncy-v3-night-raised);
    color: var(--ncy-v3-pearl);
    flex-direction: column;
}

.ncy-product-offer.is-featured {
    border-color: var(--ncy-v3-teal);
    border-top-color: var(--ncy-v3-teal);
    background: #13201c;
}

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

.ncy-product-offer h3 {
    margin: 12px 0 0;
    font-size: 2rem;
}

.ncy-product-offer__price {
    margin-top: 24px;
    color: var(--ncy-v3-gold-strong);
    font-family: var(--ncy-font-serif);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}

.ncy-product-offer__summary {
    min-height: 76px;
    margin-top: 20px;
    color: var(--ncy-v3-muted);
}

.ncy-product-offer__summary p {
    margin: 0;
}

.ncy-offer-summary {
    margin: 0;
}

.ncy-offer-summary > div {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-offer-summary > div:first-child {
    padding-top: 0;
    border-top: 0;
}

.ncy-offer-summary dt {
    color: var(--ncy-v3-gold-strong);
    font-size: 0.82rem;
    font-weight: 800;
}

.ncy-offer-summary dd {
    min-width: 0;
    margin: 0;
    color: var(--ncy-v3-pearl);
    line-height: 1.7;
}

.ncy-product-offer.is-compact .ncy-product-offer__summary {
    min-height: 0;
    margin-bottom: 6px;
    flex: 1;
}

.ncy-product-offer.is-compact .ncy-product-offer__actions {
    margin-top: 24px;
}

.ncy-product-offer__details {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--ncy-v3-line);
    flex: 1;
}

.ncy-product-offer__details .ncy-product-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ncy-product-offer__details .ncy-product-facts span {
    padding: 7px 9px;
    border: 1px solid var(--ncy-v3-line);
    color: var(--ncy-v3-gold-strong);
    font-size: 0.76rem;
}

.ncy-product-offer__details h2 {
    margin: 24px 0 10px;
    color: var(--ncy-v3-pearl);
    font-family: var(--ncy-font-sans);
    font-size: 0.9rem;
    font-weight: 800;
}

.ncy-product-offer__details ul {
    margin: 0;
    padding: 0;
    color: var(--ncy-v3-muted);
    list-style: none;
}

.ncy-product-offer__details li {
    position: relative;
    padding-left: 18px;
}

.ncy-product-offer__details li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ncy-v3-gold);
    content: "";
}

.ncy-product-offer__details li + li {
    margin-top: 9px;
}

.ncy-product-offer__details p {
    margin: 0;
    color: var(--ncy-v3-muted);
}

.ncy-product-offer__actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.ncy-product-offer__actions .wp-element-button {
    width: 100%;
    margin-top: 0;
    border-color: var(--ncy-v3-gold);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
    text-align: center;
}

.ncy-product-offer__actions .ncy-text-link {
    justify-self: center;
    color: var(--ncy-v3-gold-strong);
    font-size: 0.88rem;
}

.ncy-adult-v2-process {
    padding: 60px;
    background: #f1ede3;
    color: #171b18;
}

body.ncy-adult-page .ncy-adult-v2-process h2,
body.ncy-adult-page .ncy-adult-v2-process h3 {
    color: #171b18;
}

body.ncy-adult-page .ncy-adult-v2-process .ncy-eyebrow {
    color: #8a4838;
}

.ncy-adult-v2-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 38px 0 0;
    padding: 0;
    border-top: 1px solid rgba(23, 27, 24, 0.18);
    border-bottom: 1px solid rgba(23, 27, 24, 0.18);
    list-style: none;
}

.ncy-adult-v2-process-grid li {
    padding: 26px 22px;
}

.ncy-adult-v2-process-grid li + li {
    border-left: 1px solid rgba(23, 27, 24, 0.18);
}

.ncy-adult-v2-process-grid li > span {
    color: #8a4838;
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-adult-v2-process-grid h3 {
    margin: 16px 0 10px;
    font-size: 1.25rem;
}

.ncy-adult-v2-process-grid p {
    margin: 0;
    color: #59605b;
    font-size: 0.92rem;
    line-height: 1.72;
}

.ncy-adult-v2-formal {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 72px;
    padding: 52px 0;
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-adult-v2-formal h2 {
    margin: 12px 0 18px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.ncy-adult-v2-formal > div > p:last-child {
    color: var(--ncy-v3-muted);
}

.ncy-adult-v2-formal ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ncy-v3-line);
    list-style: none;
}

.ncy-adult-v2-formal li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-adult-v2-formal li span {
    color: var(--ncy-v3-gold-strong);
    font-weight: 800;
}

.ncy-adult-v2-formal li p {
    margin: 0;
    color: var(--ncy-v3-muted);
}

.ncy-adult-v2-trust {
    display: grid;
    grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
    gap: 52px;
    align-items: stretch;
    padding: 52px;
    border-top: 3px solid var(--ncy-v3-gold);
    background: #151b17;
}

.ncy-adult-v2-trust__portrait {
    min-height: 430px;
    aspect-ratio: 4 / 5;
}

.ncy-adult-v2-trust__portrait .ncy-managed-portrait__image {
    object-position: 66% 52%;
    filter: saturate(0.82) contrast(1.05);
}

.ncy-adult-v2-trust__body {
    min-width: 0;
    align-self: center;
}

.ncy-adult-v2-trust h2 {
    max-width: 860px;
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.ncy-adult-v2-trust ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 34px 0 24px;
    padding: 0;
    border-top: 1px solid var(--ncy-v3-line);
    border-bottom: 1px solid var(--ncy-v3-line);
    list-style: none;
}

.ncy-adult-v2-trust li {
    padding: 20px 18px;
    color: var(--ncy-v3-muted);
}

.ncy-adult-v2-trust li + li {
    border-left: 1px solid var(--ncy-v3-line);
}

.ncy-adult-v2-trust .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
}

.ncy-adult-v2-trust__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 30px;
}



.ncy-adult-v2-reading {
    margin-top: 96px;
    padding-top: 64px;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-topic-reading-list {
    margin-top: 36px;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-topic-reading-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-topic-reading-item > span {
    color: var(--ncy-v3-gold);
    font-family: var(--ncy-font-sans);
    font-size: 0.82rem;
    font-weight: 800;
}

.ncy-topic-reading-item h3 {
    margin: 0;
    color: var(--ncy-v3-pearl);
    font-size: 1.34rem;
    line-height: 1.45;
}

.ncy-topic-reading-item h3 a {
    color: inherit;
    text-decoration: none;
}

.ncy-topic-reading-item p {
    max-width: 760px;
    margin: 9px 0 0;
    color: var(--ncy-v3-muted);
    line-height: 1.72;
}

.ncy-topic-reading-item > .ncy-text-link {
    align-self: center;
    color: var(--ncy-v3-gold-strong);
    white-space: nowrap;
}

.ncy-adult-v2-faq .ncy-faq-list {
    margin-top: 34px;
}

.ncy-adult-v2-final {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .ncy-adult-v2-hero,
    .ncy-adult-v2-sample-layout,
    .ncy-adult-v2-formal,
    .ncy-adult-v2-trust {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .ncy-adult-v2-trust__portrait {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

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

    .ncy-adult-v2-scene-grid article:nth-child(3),
    .ncy-adult-v2-process-grid li:nth-child(3),
    .ncy-adult-v2-trust li:nth-child(3) {
        border-left: 0;
    }

    .ncy-adult-v2-scene-grid article:nth-child(n + 3),
    .ncy-adult-v2-process-grid li:nth-child(n + 3),
    .ncy-adult-v2-trust li:nth-child(n + 3) {
        border-top: 1px solid var(--ncy-v3-line);
    }
}

@media (max-width: 640px) {
    body.ncy-adult-page .ncy-page {
        width: min(calc(100% - 28px), 1200px);
        padding-top: 42px;
        padding-bottom: 92px;
    }

    body.ncy-adult-page .ncy-page-header {
        margin-bottom: 12px;
    }

    body.ncy-adult-page .ncy-page-header h1 {
        font-size: 3.15rem;
    }

    .ncy-adult-v2-hero {
        gap: 30px;
        padding-bottom: 46px;
    }

    body.ncy-adult-page .ncy-adult-v2-hero .ncy-page-lead {
        font-size: 1.28rem;
        line-height: 1.68;
    }

    .ncy-adult-v2-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .ncy-adult-v2-actions .wp-element-button {
        width: 100%;
        text-align: center;
    }

    .ncy-adult-v2-facts {
        gap: 10px;
        flex-direction: column;
    }

    .ncy-adult-v2-question {
        padding: 24px;
    }

    .ncy-adult-v2-question strong {
        font-size: 1.45rem;
    }

    .ncy-adult-v2-use,
    .ncy-adult-v2-scenes,
    .ncy-adult-v2-sample,
    .ncy-adult-v2-pricing-head,
    .ncy-product-offer-grid,
    .ncy-adult-v2-process,
    .ncy-adult-v2-formal,
    .ncy-adult-v2-trust,
    .ncy-adult-v2-reading,
    .ncy-adult-v2-faq,
    .ncy-adult-v2-final {
        margin-top: 64px;
    }

    .ncy-adult-v2-heading h2 {
        font-size: 2.1rem;
    }

    .ncy-adult-v2-use-grid,
    .ncy-product-offer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ncy-adult-v2-use-grid article {
        padding: 28px 24px;
    }

    .ncy-adult-v2-use-grid article:last-child {
        border-top: 1px solid var(--ncy-v3-line);
        border-left: 0;
    }

    .ncy-adult-v2-scene-grid,
    .ncy-adult-v2-process-grid,
    .ncy-adult-v2-trust ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .ncy-adult-v2-scene-grid article + article,
    .ncy-adult-v2-process-grid li + li,
    .ncy-adult-v2-trust li + li {
        border-top: 1px solid var(--ncy-v3-line);
        border-left: 0;
    }

    .ncy-adult-v2-sample,
    .ncy-adult-v2-process,
    .ncy-adult-v2-trust {
        padding: 30px 22px;
    }

    .ncy-adult-v2-trust {
        gap: 28px;
    }

    .ncy-adult-v2-trust__portrait {
        aspect-ratio: 4 / 3;
    }

    .ncy-adult-v2-sample-layout {
        margin-top: 28px;
    }

    .ncy-product-offer {
        padding: 28px 24px;
    }

    .ncy-product-offer__summary {
        min-height: 0;
    }

    .ncy-product-offer__price {
        font-size: 2.8rem;
    }

    .ncy-adult-v2-formal {
        padding: 38px 0;
    }

    .ncy-adult-v2-reading {
        padding-top: 38px;
    }

    .ncy-topic-reading-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 14px;
        padding: 24px 0;
    }

    .ncy-topic-reading-item h3 {
        font-size: 1.2rem;
    }

    .ncy-topic-reading-item > .ncy-text-link {
        grid-column: 2;
        justify-self: start;
    }
}

/* v0.19.0: real-person trust media */
.ncy-managed-portrait {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(196, 165, 116, 0.32);
    background: #0a0f0c;
}

.ncy-managed-portrait__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncy-expert-layout {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: 68px;
}

.ncy-expert-portrait {
    min-height: 500px;
    aspect-ratio: 5 / 6;
}

.ncy-expert-portrait::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(7, 11, 9, 0.45));
    content: "";
    pointer-events: none;
}

.ncy-expert-portrait .ncy-managed-portrait__image {
    object-position: 66% 52%;
    filter: saturate(0.82) contrast(1.05);
}

.ncy-expert-identity {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin: 14px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(196, 165, 116, 0.28);
}

.ncy-expert-identity strong {
    color: #d3b680;
    font-family: var(--ncy-font-serif);
    font-size: clamp(2.45rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.ncy-expert-identity sup {
    margin-left: 3px;
    font-family: var(--ncy-font-sans);
    font-size: 0.22em;
    vertical-align: super;
}

.ncy-expert-identity span {
    color: rgba(244, 241, 233, 0.64);
    font-size: 0.86rem;
}

.ncy-about-v2__portrait-stage {
    position: relative;
    min-height: 520px;
    margin-top: 40px;
}

.ncy-about-portrait {
    width: 100%;
    height: clamp(480px, 48vw, 660px);
    border-color: var(--ncy-v3-line);
}

.ncy-about-portrait::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.5) 32%, transparent 67%);
    content: "";
    pointer-events: none;
}

.ncy-about-portrait .ncy-managed-portrait__image {
    object-position: 62% 72%;
    filter: saturate(0.8) contrast(1.04);
}

.ncy-about-v2__portrait-caption {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: clamp(28px, 6vw, 88px);
    display: grid;
    max-width: 360px;
    transform: translateY(-50%);
}

.ncy-about-v2__portrait-caption small,
.ncy-about-v2__portrait-caption span {
    color: rgba(244, 241, 233, 0.7);
}

.ncy-about-v2__portrait-caption strong {
    margin: 14px 0 18px;
    color: var(--ncy-v3-gold-strong);
    font-family: var(--ncy-font-serif);
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 500;
    line-height: 1;
}

.ncy-about-v2__portrait-caption sup {
    margin-left: 4px;
    font-family: var(--ncy-font-sans);
    font-size: 0.16em;
    vertical-align: super;
}

@media (max-width: 980px) {
    .ncy-expert-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 42px;
    }

    .ncy-expert-portrait {
        min-height: 440px;
    }
}

@media (max-width: 720px) {
    .ncy-expert-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ncy-expert-portrait {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .ncy-expert-identity {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
    }

    .ncy-expert-identity strong {
        font-size: 3rem;
    }

    .ncy-about-v2__portrait-stage {
        min-height: 0;
        margin-top: 18px;
    }

    .ncy-about-portrait {
        height: min(620px, 118vw);
    }

    .ncy-about-portrait::after {
        background: linear-gradient(180deg, rgba(8, 8, 10, 0.08) 24%, rgba(8, 8, 10, 0.86) 100%);
    }

    .ncy-about-portrait .ncy-managed-portrait__image {
        object-position: 64% 72%;
    }

    .ncy-about-v2__portrait-caption {
        top: auto;
        right: 24px;
        bottom: 26px;
        left: 24px;
        transform: none;
    }

    .ncy-about-v2__portrait-caption strong {
        font-size: 3.6rem;
    }
}


/* v0.19.3: complete inner-page visual trust */
body.ncy-editorial-dark .ncy-page-header {
    padding: 68px 0 40px;
}

body.ncy-editorial-dark .ncy-page-header h1 {
    font-size: 5.2rem;
}

.ncy-v2-opening {
    padding: 56px 0;
}

.ncy-samples-v4__preview {
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: 56px;
    align-items: start;
    margin-bottom: 34px;
    padding: 54px;
    border-radius: 4px;
    background: #dfe8e3;
    color: #17201c;
}

.ncy-samples-v4__preview-copy {
    padding-top: 4px;
}

/* v0.32.22: keep light sample panels readable on dark service pages */
body.ncy-editorial-dark .ncy-page-content .ncy-samples-v4__preview .ncy-eyebrow {
    color: #8a4838;
}

body.ncy-editorial-dark .ncy-page-content .ncy-samples-v4__preview h2,
body.ncy-service-page .ncy-page-content .ncy-samples-v4__preview h2,
body.ncy-service-page .ncy-page-content .ncy-samples-v4__preview .ncy-report-preview h3,
body.ncy-editorial-dark .ncy-page-content .ncy-samples-v4__preview .ncy-report-preview h3 {
    color: #17201c;
}

.ncy-samples-v4__preview-copy h2 {
    margin: 12px 0 22px;
    font-size: 2.75rem;
    line-height: 1.25;
}

.ncy-samples-v4__preview-copy > p:not(.ncy-eyebrow) {
    margin: 0;
    color: #4d5b54;
    line-height: 1.75;
}

.ncy-samples-v4__preview-copy ul {
    margin: 32px 0 0;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    list-style: none;
}

.ncy-samples-v4__preview-copy li {
    position: relative;
    padding: 15px 0 15px 24px;
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
    color: #34413a;
}

.ncy-samples-v4__preview-copy li::before {
    position: absolute;
    top: 21px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a94a35;
    content: "";
}

.ncy-samples-v4__preview .ncy-report-preview {
    width: 100%;
    max-width: 760px;
    justify-self: end;
}

.ncy-about-v2__actions {
    flex-wrap: wrap;
}

.ncy-about-v2__actions .ncy-dual__text-link {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .ncy-samples-v4__preview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ncy-samples-v4__preview .ncy-report-preview {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    body.ncy-editorial-dark .ncy-page-header {
        padding: 42px 0 28px;
    }

    body.ncy-editorial-dark .ncy-page-header h1 {
        font-size: 2.65rem;
    }

    .ncy-v2-opening {
        padding: 38px 0;
    }

    .ncy-samples-v4__preview {
        width: 100%;
        gap: 30px;
        padding: 40px 14px;
        border-radius: 0;
    }

    .ncy-samples-v4__preview-copy h2 {
        font-size: 2rem;
    }

    .ncy-sample-verdict {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .ncy-sample-verdict__code {
        grid-row: 1 / span 3;
    }

    .ncy-sample-verdict p {
        grid-column: 2;
    }

    .ncy-sample-verdict > strong {
        grid-column: 2;
        justify-self: start;
        text-align: left;
    }
}

/* v0.20.1: complete the first viewport with a full-bleed real-person scene */
.ncy-home-v6-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #071109;
    background-image: none;
}

.ncy-home-v6-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 10, 7, 0.98) 0%, rgba(5, 10, 7, 0.92) 39%, rgba(5, 10, 7, 0.58) 66%, rgba(5, 10, 7, 0.28) 100%),
        linear-gradient(180deg, rgba(5, 10, 7, 0.3), rgba(5, 10, 7, 0.58));
    content: "";
}

.ncy-home-v6-hero > .wp-block-group__inner-container {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
}

.ncy-home-v6-hero > .wp-block-group__inner-container > .ncy-home-v6-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.ncy-home-v6-hero .ncy-home-v6-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
    filter: saturate(0.72) contrast(1.05);
}

.ncy-home-v6-hero > .wp-block-group__inner-container > .wp-block-group__inner-container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

@media (max-width: 720px) {
    .ncy-home-v6-hero {
        background-image: none;
    }

    .ncy-home-v6-hero::before {
        background: linear-gradient(180deg, rgba(5, 10, 7, 0.28) 0%, rgba(5, 10, 7, 0.62) 37%, rgba(5, 10, 7, 0.98) 76%);
    }

    .ncy-home-v6-hero .ncy-home-v6-hero-media img {
        object-position: 58% center;
    }
}

/* v0.20.2: complete the public contact path */
.ncy-contact-v1-header {
    padding: 96px 0 84px;
    background: #071109;
    color: #f4f1e9;
}

.ncy-contact-v1-header > .wp-block-group__inner-container,
.ncy-contact-v1-channels > .wp-block-group__inner-container,
.ncy-contact-v1-prepare > .wp-block-group__inner-container,
.ncy-contact-v1-next > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-contact-v1-header h1 {
    max-width: 12em;
    margin: 20px 0 24px;
    color: #f8f6ef;
    font-size: clamp(3.4rem, 5vw, 4.8rem);
    line-height: 1.16;
}

.ncy-contact-v1-header > .wp-block-group__inner-container > p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(244, 241, 233, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.ncy-contact-v1-channels {
    padding: 88px 0;
    background: #f4f1e9;
}

.ncy-contact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ncy-contact-card {
    min-height: 286px;
    padding: 38px;
    border: 1px solid rgba(23, 32, 28, 0.18);
    border-top: 3px solid #b85a42;
    border-radius: 4px;
    background: #fffdfa;
}

.ncy-contact-card--primary {
    border-top-color: #c5a474;
    background: #10251d;
    color: #f4f1e9;
}

.ncy-contact-card > span {
    color: #9a412e;
    font-size: 0.78rem;
    font-weight: 700;
}

.ncy-contact-card--primary > span {
    color: #d6b77d;
}

.ncy-contact-card h2 {
    margin: 24px 0 16px;
    color: inherit;
    font-size: 1.55rem;
}

.ncy-contact-card p,
.ncy-contact-card address {
    margin: 0;
    color: #556159;
    font-style: normal;
    line-height: 1.7;
}

.ncy-contact-card--primary p {
    color: rgba(244, 241, 233, 0.76);
}

.ncy-contact-card__action {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    margin-top: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8c3827;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.ncy-contact-card--primary .ncy-contact-card__action {
    color: #e3c48b;
}

.ncy-contact-v1-prepare {
    padding: 92px 0;
    background: #dfe9e4;
}

.ncy-contact-v1-prepare > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 72px;
}

.ncy-contact-v1-prepare__intro h2,
.ncy-contact-v1-next h2 {
    margin: 18px 0 22px;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1.2;
}

.ncy-contact-v1-prepare__intro > p:last-child {
    color: #526159;
    line-height: 1.75;
}

.ncy-contact-v1-checklist {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    list-style: none;
}

.ncy-contact-v1-checklist li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
}

.ncy-contact-v1-checklist li > span {
    color: #a94a35;
    font-size: 0.8rem;
    font-weight: 700;
}

.ncy-contact-v1-checklist strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.ncy-contact-v1-checklist p {
    margin: 0;
    color: #56655d;
    line-height: 1.65;
}

.ncy-contact-v1-next {
    padding: 78px 0;
    background: #c8a875;
}

.ncy-contact-v1-next > .wp-block-group__inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ncy-contact-v1-next h2 {
    max-width: 12em;
    margin-bottom: 0;
    color: #fff;
}

.ncy-about-v2__credential-brand {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(23, 32, 28, 0.2);
    border-bottom: 1px solid rgba(23, 32, 28, 0.2);
}

.ncy-about-v2__credential-brand span {
    color: #5b675f;
}

@media (max-width: 720px) {
    .ncy-contact-v1-header {
        padding: 56px 0 50px;
    }

    .ncy-contact-v1-header h1 {
        font-size: 2.55rem;
    }

    .ncy-contact-v1-channels,
    .ncy-contact-v1-prepare {
        padding: 66px 0;
    }

    .ncy-contact-panel,
    .ncy-contact-v1-prepare > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
    }

    .ncy-contact-card {
        min-height: 0;
        padding: 30px 24px;
    }

    .ncy-contact-v1-prepare > .wp-block-group__inner-container {
        gap: 34px;
    }

    .ncy-contact-v1-prepare__intro h2,
    .ncy-contact-v1-next h2 {
        font-size: 2.25rem;
    }

    .ncy-contact-v1-next {
        padding: 58px 0;
    }

    .ncy-contact-v1-next > .wp-block-group__inner-container,
    .ncy-about-v2__credential-brand {
        align-items: stretch;
        flex-direction: column;
    }
}

/* v0.20.3: keep one page title and surface contact actions sooner */
.ncy-page--contact {
    padding-top: 56px;
}

.ncy-page--contact > .ncy-page-header {
    margin-bottom: 24px;
}

.ncy-page--contact .ncy-page-content > * + * {
    margin-top: 0;
}

.ncy-page--contact .ncy-contact-v1-channels {
    padding-top: 8px;
}

.ncy-contact-v1-intro {
    max-width: 760px !important;
    margin: 0 0 38px;
    color: #526159;
    font-size: 1.1rem;
    line-height: 1.75;
}

@media (max-width: 720px) {
    .ncy-page--contact {
        padding-top: 42px;
    }

    .ncy-page--contact > .ncy-page-header {
        margin-bottom: 18px;
    }

    .ncy-page--contact .ncy-contact-v1-channels {
        padding-top: 0;
    }

    .ncy-contact-v1-intro {
        margin-bottom: 28px;
        font-size: 1rem;
    }
}

/* v0.20.4: finish service choice and purchase entry */
@media (min-width: 981px) {
    .ncy-services-v2 .ncy-v2-opening {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.54fr);
        gap: 56px;
    }

    .ncy-services-v2 .ncy-v2-opening h2 {
        max-width: 12em;
        font-size: clamp(3.15rem, 4.2vw, 4rem);
        line-height: 1.18;
    }
}

.single-product div.product form.cart {
    max-width: 460px;
    margin: 26px 0 0;
    padding: 18px;
    border: 1px solid var(--ncy-line);
    background: #f4f0e7;
}

.single-product div.product form.cart .single_add_to_cart_button {
    min-height: 58px;
}

@media (max-width: 720px) {
    .ncy-services-v2 .ncy-v2-opening h2 {
        font-size: 2.25rem;
        line-height: 1.24;
    }

    .single-product div.product form.cart {
        max-width: none;
        margin-top: 22px;
        padding: 14px;
    }

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

    .ncy-product-facts span,
    .ncy-product-facts span:last-child {
        padding: 14px 6px;
        border-right: 1px solid var(--ncy-line);
        border-bottom: 0;
        font-size: 0.88rem;
    }

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

/* Shared service-page first-screen actions 0.20.5 */
.ncy-service-hero-actions {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
    margin: 8px 0 0;
    padding: 24px 0 44px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-service-hero-actions__buttons {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.ncy-service-hero-actions__buttons .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
    white-space: nowrap;
}

.ncy-service-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    color: var(--ncy-v3-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    list-style: none;
}

.ncy-service-hero-facts li {
    position: relative;
    min-height: 42px;
    padding: 4px 22px 4px 28px;
    border-left: 1px solid var(--ncy-v3-line);
}

.ncy-service-hero-facts li::before {
    position: absolute;
    top: 0.78em;
    left: 14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ncy-v3-gold);
    content: "";
}

@media (max-width: 900px) {
    .ncy-service-hero-actions {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .ncy-service-hero-actions {
        gap: 22px;
        margin-top: 0;
        padding: 14px 0 30px;
    }

    .ncy-service-hero-actions__buttons {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .ncy-service-hero-actions__buttons .wp-element-button {
        width: 100%;
        text-align: center;
    }

    .ncy-service-hero-actions__buttons .ncy-text-link {
        text-align: center;
    }

    .ncy-service-hero-facts {
        font-size: 0.76rem;
    }

    .ncy-service-hero-facts li {
        min-height: 54px;
        padding: 12px 8px 0;
        border-top: 1px solid var(--ncy-v3-line);
        border-left: 0;
        text-align: center;
    }

    .ncy-service-hero-facts li::before {
        top: -3px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Branded empty cart and customer account 0.20.8 */
.woocommerce-cart .cart-empty.woocommerce-info {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px 30px 28px 58px;
    border: 1px solid var(--ncy-line);
    border-top: 1px solid var(--ncy-line);
    border-left: 3px solid var(--ncy-gold);
    background: var(--ncy-white);
    color: var(--ncy-ink);
    font-size: 1rem;
}

.woocommerce-cart .cart-empty.woocommerce-info::before {
    top: 29px;
    left: 28px;
    color: var(--ncy-jade-dark);
}

.woocommerce-cart .return-to-shop {
    grid-column: 1 / -1;
    margin: 0;
}

.woocommerce-cart .return-to-shop .button {
    min-height: 52px;
    padding-right: 24px;
    padding-left: 24px;
}

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

.woocommerce-account .ncy-page-header {
    margin-bottom: 32px;
}

.woocommerce-account .ncy-page-header h1 {
    font-size: clamp(3.2rem, 6vw, 5rem);
}

.woocommerce-account:not(.logged-in) .woocommerce {
    max-width: 620px;
}

.ncy-account-intro {
    max-width: 620px;
    margin: 0 0 20px;
    color: var(--ncy-muted);
    text-align: left;
}

.ncy-account-intro p {
    margin: 0;
}

.woocommerce-account:not(.logged-in) .woocommerce h2 {
    margin: 0 0 22px;
    font-size: 2rem;
}

.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register {
    margin: 0;
    padding: 30px;
    border: 1px solid var(--ncy-line);
    border-radius: 4px;
    background: var(--ncy-white);
}

.woocommerce-account .woocommerce form .form-row {
    margin: 0 0 18px;
    padding: 0;
}

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

.woocommerce-account .woocommerce form .form-row input.input-text {
    min-height: 52px;
    border: 1px solid var(--ncy-line);
    border-radius: 3px;
    background: #fff;
}

.woocommerce-account .woocommerce form .form-row input.input-text:focus {
    border-color: var(--ncy-jade-dark);
    box-shadow: 0 0 0 2px rgba(23, 92, 79, 0.1);
    outline: 0;
}

.woocommerce-account .woocommerce .woocommerce-form-login__submit {
    min-height: 48px;
    margin-right: 18px;
}

.woocommerce-account .woocommerce .lost_password {
    margin: 10px 0 0;
}

.woocommerce-account .woocommerce .lost_password a {
    color: var(--ncy-jade-dark);
    font-weight: 700;
}

@media (max-width: 640px) {
    .woocommerce-cart .cart-empty.woocommerce-info {
        padding: 22px 20px 22px 48px;
    }

    .woocommerce-cart .cart-empty.woocommerce-info::before {
        top: 23px;
        left: 20px;
    }

    .woocommerce-cart .return-to-shop .button {
        width: 100%;
        text-align: center;
    }

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

    .woocommerce-account .ncy-page-header h1 {
        font-size: 3rem;
    }

    .woocommerce-account .woocommerce form.login,
    .woocommerce-account .woocommerce form.register {
        padding: 22px;
    }
}
.ncy-proof-download {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
}

.ncy-proof-download .wp-element-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.ncy-proof-download .ncy-text-link {
    margin: 0;
}

@media (max-width: 640px) {
    .ncy-proof-download {
        align-items: stretch;
    }

    .ncy-proof-download .wp-element-button {
        width: 100%;
    }
}


/* v0.22.1: complete editorial archive and readable source links */
body.blog .ncy-archive-v3 {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
    padding: 96px 0 120px;
}

.ncy-archive-v3__header {
    max-width: 880px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-archive-v3__header h1 {
    margin: 14px 0 0;
    font-size: 5.2rem;
    line-height: 1.06;
}

.ncy-archive-v3__header > p:last-child {
    max-width: 700px;
    margin: 28px 0 0;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ncy-archive-v3__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 24px 0 72px;
    scrollbar-width: none;
}

.ncy-archive-v3__nav::-webkit-scrollbar {
    display: none;
}

.ncy-archive-v3__nav a {
    flex: 0 0 auto;
    padding: 12px 18px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    color: var(--ncy-v3-pearl);
    font-weight: 700;
    text-decoration: none;
}

.ncy-archive-v3__nav a:hover,
.ncy-archive-v3__nav a:focus-visible {
    border-color: var(--ncy-v3-gold-strong);
    color: var(--ncy-v3-gold-strong);
}

.ncy-archive-v3__sections {
    display: grid;
    gap: 96px;
}

.ncy-archive-section {
    scroll-margin-top: calc(var(--ncy-header-height) + 24px);
}

.ncy-archive-section__header {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
    gap: 52px;
    align-items: end;
    margin-bottom: 28px;
    padding-top: 28px;
    border-top: 2px solid var(--ncy-v3-gold-strong);
}

.ncy-archive-section__header h2 {
    margin: 10px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 3.2rem;
    line-height: 1.12;
}

.ncy-archive-section__header > p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

.ncy-archive-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ncy-archive-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid rgba(244, 241, 233, 0.18);
    border-radius: 4px;
    background: #f4f1e9;
    color: var(--ncy-v3-night);
}

.ncy-archive-section:first-child .ncy-archive-card:first-child {
    grid-column: 1 / -1;
    min-height: 300px;
    background: #dfe9e5;
}

.ncy-archive-card__meta,
.ncy-archive-card footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #6e706b;
    font-size: 0.82rem;
}

.ncy-archive-card__meta span {
    color: #a94a35;
    font-weight: 800;
}

.ncy-archive-card h3 {
    margin: 54px 0 0;
    font-size: 2.15rem;
    line-height: 1.28;
}

.ncy-archive-card h3 a {
    color: var(--ncy-v3-night);
    text-decoration: none;
}

.ncy-archive-card > p {
    margin: 18px 0 30px;
    color: #4f5551;
    line-height: 1.75;
}

.ncy-archive-card footer {
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 20, 17, 0.16);
}

.ncy-archive-card .ncy-text-link {
    color: #7b3c2e;
    white-space: nowrap;
}

.ncy-prose .ncy-article-sources {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.ncy-prose .ncy-article-sources li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(29, 57, 49, 0.16);
}

.ncy-prose .ncy-article-sources a {
    color: var(--ncy-v3-gold-strong);
    font-weight: 700;
    text-underline-offset: 0.18em;
}

@media (max-width: 900px) {
    .ncy-archive-section__header {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 720px) {
    body.blog .ncy-archive-v3 {
        width: min(calc(100% - 28px), var(--ncy-content));
        padding: 58px 0 82px;
    }

    .ncy-archive-v3__header h1 {
        font-size: 3.15rem;
    }

    .ncy-archive-v3__header > p:last-child {
        margin-top: 22px;
        font-size: 1rem;
    }

    .ncy-archive-v3__nav {
        padding-bottom: 54px;
    }

    .ncy-archive-v3__sections {
        gap: 68px;
    }

    .ncy-archive-section__header h2 {
        font-size: 2.35rem;
    }

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

    .ncy-archive-section:first-child .ncy-archive-card:first-child {
        grid-column: 1;
    }

    .ncy-archive-card {
        min-height: 300px;
        padding: 24px;
    }

    .ncy-archive-card h3 {
        margin-top: 38px;
        font-size: 1.7rem;
    }

    .ncy-archive-card footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

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

/* v0.22.2: high-contrast article components */
body.single-post .ncy-prose a {
    color: var(--ncy-v3-gold-strong);
    text-underline-offset: 0.18em;
}

body.single-post .ncy-article-map,
body.single-post .ncy-article-map div {
    border-color: var(--ncy-v3-line);
}

body.single-post .ncy-article-map dt {
    color: var(--ncy-v3-gold-strong);
}

body.single-post .ncy-article-checklist li,
body.single-post .ncy-article-notice {
    border-color: rgba(17, 27, 23, 0.18);
    background: #e9e5dc;
    color: #17201c;
}

body.single-post .ncy-article-checklist li,
body.single-post .ncy-article-checklist li strong,
body.single-post .ncy-article-notice,
body.single-post .ncy-article-notice p {
    color: #17201c;
}


/* v0.23.0: complete service decision page */
body.ncy-services-page .ncy-site-main {
    background: #080b09;
}

body.ncy-services-page .ncy-page--services,
body.ncy-services-page .ncy-page--services .ncy-page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.ncy-services-v3 {
    --ncy-services-paper: #f3efe6;
    --ncy-services-paper-soft: #e7e0d2;
    --ncy-services-ink: #111713;
    --ncy-services-muted: #5e675f;
    --ncy-services-green: #133229;
    --ncy-services-rust: #a54f3a;
    --ncy-services-gold: #d3b680;
    color: #f4f1e9;
}

.ncy-services-v3 > * {
    width: min(calc(100% - 40px), 1180px);
    margin-right: auto;
    margin-left: auto;
}

.ncy-services-v3 h1,
.ncy-services-v3 h2,
.ncy-services-v3 h3 {
    letter-spacing: 0;
}

.ncy-services-v3-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
    gap: 72px;
    align-items: center;
    padding: 82px 0 72px;
}

.ncy-services-v3-hero h1 {
    max-width: 9.8em;
    margin: 14px 0 22px;
    color: #f4f1e9;
    font-size: 4.45rem;
    line-height: 1.12;
}

.ncy-services-v3-lead {
    max-width: 680px;
    margin: 0;
    color: rgba(244, 241, 233, 0.74);
    font-size: 1.12rem;
    line-height: 1.8;
}

.ncy-services-v3-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
}

.ncy-services-v3-actions .wp-element-button {
    background: var(--ncy-services-gold);
    color: var(--ncy-services-ink);
}

.ncy-services-v3-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin: 30px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(211, 182, 128, 0.28);
    color: rgba(244, 241, 233, 0.72);
    list-style: none;
}

.ncy-services-v3-hero__facts li::before {
    margin-right: 9px;
    color: var(--ncy-services-gold);
    content: "·";
}

.ncy-services-v3-hero__media {
    position: relative;
}

.ncy-services-v3-hero__media .ncy-managed-portrait,
.ncy-services-v3-hero__media .ncy-services-v3-portrait {
    display: block;
    margin: 0;
}

.ncy-services-v3-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.82) contrast(1.04);
}

.ncy-services-v3-hero__media > p {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 18px 0 0;
    border-top: 3px solid var(--ncy-services-gold);
}

.ncy-services-v3-hero__media strong,
.ncy-services-v3-hero__media span {
    display: block;
}

.ncy-services-v3-hero__media span {
    color: rgba(244, 241, 233, 0.62);
    font-size: 0.82rem;
}

.ncy-services-v3-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(211, 182, 128, 0.28);
    border-bottom: 1px solid rgba(211, 182, 128, 0.28);
}

.ncy-services-v3-nav a {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(211, 182, 128, 0.22);
    color: #f4f1e9;
    font-weight: 800;
}

.ncy-services-v3-nav a:last-child {
    border-right: 0;
}

.ncy-services-v3-nav span {
    color: var(--ncy-services-gold);
    font-size: 0.74rem;
}

.ncy-services-v3-feature {
    margin-top: 84px;
    padding: 56px;
    border-radius: 4px;
}

.ncy-services-v3-feature > header {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: 64px;
    align-items: end;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(17, 23, 19, 0.18);
}

.ncy-services-v3-feature > header h2 {
    margin: 10px 0 0;
    color: inherit;
    font-size: 4rem;
    line-height: 1.05;
}

.ncy-services-v3-feature > header > p {
    margin: 0;
    color: inherit;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.74;
}

.ncy-services-v3-feature--adult {
    background: var(--ncy-services-paper);
    color: var(--ncy-services-ink);
}

.ncy-services-v3-feature--adult .ncy-eyebrow {
    color: #2a6658;
}

.ncy-services-v3-feature__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 64px;
    padding-top: 42px;
}

.ncy-services-v3-use-list article {
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(17, 23, 19, 0.16);
}

.ncy-services-v3-use-list article + article {
    padding-top: 30px;
}

.ncy-services-v3-use-list span {
    color: #2a6658;
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-services-v3-use-list h3 {
    margin: 10px 0 8px;
    color: var(--ncy-services-ink);
    font-size: 1.65rem;
}

.ncy-services-v3-use-list p {
    margin: 0;
    color: var(--ncy-services-muted);
    line-height: 1.75;
}

.ncy-services-v3-offer {
    align-self: start;
    padding: 30px;
    border: 1px solid rgba(17, 23, 19, 0.18);
    background: #e5ded0;
}

.ncy-services-v3-offer dl {
    display: grid;
    gap: 0;
    margin: 0 0 26px;
}

.ncy-services-v3-offer dl > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(17, 23, 19, 0.14);
}

.ncy-services-v3-offer dt {
    color: var(--ncy-services-muted);
}

.ncy-services-v3-offer dd {
    margin: 0;
    color: var(--ncy-services-ink);
    font-weight: 800;
}

.ncy-services-v3-offer .wp-element-button {
    width: 100%;
    background: var(--ncy-services-ink);
    color: var(--ncy-services-paper);
}

.ncy-services-v3-offer .ncy-text-link {
    display: inline-flex;
    margin-top: 20px;
    color: #1e5548;
}

.ncy-services-v3-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.ncy-services-v3-card {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: 44px;
    border-radius: 4px;
    color: var(--ncy-services-ink);
}

.ncy-services-v3-card--baby {
    background: #e5d8c6;
}

.ncy-services-v3-card--child {
    background: #cbdcd4;
}

.ncy-services-v3-card > header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #695842;
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-services-v3-card > header p {
    margin: 0;
}

.ncy-services-v3-card h2 {
    margin: 68px 0 18px;
    color: var(--ncy-services-ink);
    font-size: 3.1rem;
}

.ncy-services-v3-card > p {
    margin: 0;
    color: #505950;
    line-height: 1.8;
}

.ncy-services-v3-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: auto 0 26px;
    border-top: 1px solid rgba(17, 23, 19, 0.17);
    border-bottom: 1px solid rgba(17, 23, 19, 0.17);
}

.ncy-services-v3-card dl > div {
    padding: 18px 10px;
    border-right: 1px solid rgba(17, 23, 19, 0.14);
}

.ncy-services-v3-card dl > div:last-child {
    border-right: 0;
}

.ncy-services-v3-card dt,
.ncy-services-v3-card dd {
    display: block;
}

.ncy-services-v3-card dt {
    color: #697168;
    font-size: 0.76rem;
}

.ncy-services-v3-card dd {
    margin: 6px 0 0;
    font-weight: 800;
}

.ncy-services-v3-card__link {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    color: var(--ncy-services-ink);
    font-weight: 800;
}

.ncy-services-v3-card__link::after {
    content: "→";
}

.ncy-services-v3-feature--business {
    background: #211912;
    color: #f4f1e9;
}

.ncy-services-v3-feature--business > header {
    border-bottom-color: rgba(244, 241, 233, 0.18);
}

.ncy-services-v3-feature--business .ncy-eyebrow {
    color: var(--ncy-services-gold);
}

.ncy-services-v3-business-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid rgba(244, 241, 233, 0.16);
    border-bottom: 1px solid rgba(244, 241, 233, 0.16);
}

.ncy-services-v3-business-grid article {
    min-height: 260px;
    padding: 30px;
    border-right: 1px solid rgba(244, 241, 233, 0.14);
}

.ncy-services-v3-business-grid article:last-child {
    border-right: 0;
}

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

.ncy-services-v3-business-grid h3 {
    margin: 44px 0 12px;
    color: #f4f1e9;
    font-size: 1.5rem;
}

.ncy-services-v3-business-grid p {
    margin: 0;
    color: rgba(244, 241, 233, 0.66);
    line-height: 1.75;
}

.ncy-services-v3-business-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 34px;
}

.ncy-services-v3-business-foot p,
.ncy-services-v3-business-foot strong,
.ncy-services-v3-business-foot span {
    display: block;
    margin: 0;
}

.ncy-services-v3-business-foot strong {
    color: var(--ncy-services-gold);
    font-size: 1.7rem;
}

.ncy-services-v3-business-foot span {
    margin-top: 5px;
    color: rgba(244, 241, 233, 0.62);
}

.ncy-services-v3-business-foot .wp-element-button {
    background: var(--ncy-services-gold);
    color: var(--ncy-services-ink);
}

.ncy-services-v3-sample {
    margin-top: 84px;
    padding: 64px 56px;
    background: var(--ncy-services-paper);
    color: var(--ncy-services-ink);
}

.ncy-services-v3-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 42px;
}

.ncy-services-v3-section-heading h2 {
    margin: 10px 0 0;
    color: inherit;
    font-size: 3.4rem;
    line-height: 1.14;
}

.ncy-services-v3-section-heading > p {
    margin: 0;
    color: var(--ncy-services-muted);
    line-height: 1.8;
}

.ncy-services-v3-sample .ncy-eyebrow {
    color: #85523c;
}

.ncy-services-v3-sample__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
    gap: 28px;
    align-items: start;
}

.ncy-services-v3-sample__notes {
    padding: 30px;
    border: 1px solid rgba(17, 23, 19, 0.18);
}

.ncy-services-v3-sample__notes h3 {
    margin: 10px 0 24px;
    color: var(--ncy-services-ink);
    font-size: 1.75rem;
    line-height: 1.35;
}

.ncy-services-v3-sample__notes ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ncy-services-v3-sample__notes li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(17, 23, 19, 0.14);
}

.ncy-services-v3-sample__notes li > span {
    color: #a05c42;
    font-size: 0.75rem;
    font-weight: 800;
}

.ncy-services-v3-sample__notes strong {
    display: block;
}

.ncy-services-v3-sample__notes li p {
    margin: 4px 0 0;
    color: var(--ncy-services-muted);
    line-height: 1.6;
}

.ncy-services-v3-sample__actions {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.ncy-services-v3-sample__actions .wp-element-button {
    width: 100%;
    background: var(--ncy-services-ink);
    color: var(--ncy-services-paper);
}

.ncy-services-v3-sample__actions .ncy-text-link {
    color: #1f584b;
}

.ncy-services-v3-process {
    padding: 88px 0;
}

.ncy-services-v3-process .ncy-services-v3-section-heading > p {
    color: rgba(244, 241, 233, 0.64);
}

.ncy-services-v3-process ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(211, 182, 128, 0.26);
    border-bottom: 1px solid rgba(211, 182, 128, 0.26);
    list-style: none;
}

.ncy-services-v3-process li {
    min-height: 220px;
    padding: 28px;
    border-right: 1px solid rgba(211, 182, 128, 0.2);
}

.ncy-services-v3-process li:last-child {
    border-right: 0;
}

.ncy-services-v3-process li > span {
    color: var(--ncy-services-gold);
    font-size: 0.75rem;
    font-weight: 800;
}

.ncy-services-v3-process h3 {
    margin: 54px 0 10px;
    color: #f4f1e9;
    font-size: 1.5rem;
}

.ncy-services-v3-process li p {
    margin: 0;
    color: rgba(244, 241, 233, 0.64);
    line-height: 1.7;
}

.ncy-services-v3-final {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 48px 54px;
    background: var(--ncy-services-gold);
    color: var(--ncy-services-ink);
}

.ncy-services-v3-final .ncy-eyebrow,
.ncy-services-v3-final h2 {
    color: var(--ncy-services-ink) !important;
}

.ncy-services-v3-final h2 {
    margin: 8px 0 0;
    font-size: 2.65rem;
}

.ncy-services-v3-final__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ncy-services-v3-final__links a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid rgba(17, 23, 19, 0.42);
    color: var(--ncy-services-ink);
    font-weight: 800;
}

.ncy-services-v3-final__links a::after {
    content: "→";
}

@media (max-width: 980px) {
    .ncy-services-v3-hero,
    .ncy-services-v3-feature > header,
    .ncy-services-v3-feature__body,
    .ncy-services-v3-section-heading,
    .ncy-services-v3-sample__layout,
    .ncy-services-v3-final {
        grid-template-columns: 1fr;
    }

    .ncy-services-v3-hero__media {
        max-width: 520px;
    }

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

    .ncy-services-v3-business-grid article:nth-child(2),
    .ncy-services-v3-process li:nth-child(2) {
        border-right: 0;
    }

    .ncy-services-v3-business-grid article:nth-child(-n + 2),
    .ncy-services-v3-process li:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(244, 241, 233, 0.14);
    }
}

@media (max-width: 720px) {
    /* 0.32.7: keep the service chooser in the first mobile viewport. */
    .ncy-services-v3 > * {
        width: min(calc(100% - 28px), 1180px);
    }

    .ncy-services-v3-hero {
        gap: 0;
        padding: 40px 0 28px;
    }

    .ncy-services-v3-hero h1 {
        font-size: 2.65rem;
        line-height: 1.15;
    }

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

    .ncy-services-v3-actions,
    .ncy-services-v3-actions .wp-element-button {
        width: 100%;
    }

    .ncy-services-v3-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ncy-services-v3-actions .ncy-text-link {
        min-height: 48px;
        justify-content: center;
    }

    .ncy-services-v3-hero__facts {
        display: grid;
        gap: 8px;
    }

    .ncy-services-v3-hero__media {
        display: none;
    }

    .ncy-services-v3-nav {
        width: calc(100% - 14px);
        grid-auto-columns: 47%;
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        margin-left: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ncy-services-v3-nav::-webkit-scrollbar {
        display: none;
    }

    .ncy-services-v3-nav a {
        min-height: 66px;
        padding: 0 16px;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .ncy-services-v3-feature {
        margin-top: 52px;
        padding: 32px 22px;
    }

    .ncy-services-v3-feature > header {
        gap: 18px;
        padding-bottom: 28px;
    }

    .ncy-services-v3-feature > header h2 {
        font-size: 2.55rem;
    }

    .ncy-services-v3-feature__body {
        gap: 30px;
        padding-top: 30px;
    }

    .ncy-services-v3-offer {
        padding: 22px;
    }

    .ncy-services-v3-pair {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .ncy-services-v3-card {
        min-height: 460px;
        padding: 30px 22px;
    }

    .ncy-services-v3-card h2 {
        margin-top: 48px;
        font-size: 2.4rem;
    }

    .ncy-services-v3-card dl {
        grid-template-columns: 1fr;
    }

    .ncy-services-v3-card dl > div {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 23, 19, 0.13);
    }

    .ncy-services-v3-card dl > div:last-child {
        border-bottom: 0;
    }

    .ncy-services-v3-card dd {
        margin: 0;
    }

    .ncy-services-v3-business-grid,
    .ncy-services-v3-process ol {
        grid-template-columns: 1fr;
    }

    .ncy-services-v3-business-grid article,
    .ncy-services-v3-business-grid article:nth-child(2),
    .ncy-services-v3-process li,
    .ncy-services-v3-process li:nth-child(2) {
        min-height: 0;
        padding: 26px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(244, 241, 233, 0.14);
    }

    .ncy-services-v3-business-grid article:last-child,
    .ncy-services-v3-process li:last-child {
        border-bottom: 0;
    }

    .ncy-services-v3-business-grid h3,
    .ncy-services-v3-process h3 {
        margin-top: 24px;
    }

    .ncy-services-v3-business-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .ncy-services-v3-business-foot .wp-element-button {
        width: 100%;
    }

    .ncy-services-v3-sample {
        width: 100%;
        margin-top: 52px;
        padding: 44px 14px;
    }

    .ncy-services-v3-section-heading {
        gap: 18px;
        margin-bottom: 30px;
    }

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

    .ncy-services-v3-sample__notes {
        padding: 24px 20px;
    }

    .ncy-services-v3-process {
        padding: 60px 0;
    }

    .ncy-services-v3-process li {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .ncy-services-v3-process h3 {
        margin: 0 0 8px;
    }

    .ncy-services-v3-final {
        width: 100%;
        gap: 28px;
        margin-bottom: 64px;
        padding: 40px 20px;
    }

    .ncy-services-v3-final h2 {
        font-size: 2.2rem;
    }

    .ncy-services-v3-final__links {
        grid-template-columns: 1fr;
    }
}


/* v0.23.3: finished adult-renaming purchase pages */
.woocommerce.single-product .ncy-commerce-shell {
    width: min(calc(100% - 40px), 860px);
    padding-top: 76px;
    padding-bottom: 112px;
}

.single-product div.product .summary {
    padding: 0;
    border: 0;
    background: transparent;
}

.single-product div.product .product_title {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2.75rem, 5vw, 4.45rem);
    line-height: 1.08;
}

.single-product div.product p.price {
    margin: 22px 0 26px;
}

.single-product .woocommerce-product-details__short-description {
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.8;
}

.single-product div.product form.cart {
    max-width: 520px;
    margin: 30px 0 46px;
    padding: 18px;
    border-color: #cfc8ba;
    background: #ece7dc;
}

.ncy-product-details {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.ncy-product-details > section {
    padding: 46px 0;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-product-details > section:first-of-type {
    padding-top: 38px;
}

.ncy-product-details h2,
.ncy-product-details h2:first-of-type {
    max-width: 19em;
    margin: 8px 0 16px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.32;
}

.ncy-product-details section > p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--ncy-ink-soft);
    font-size: 1rem;
    line-height: 1.8;
}

.ncy-product-details .ncy-eyebrow {
    margin: 0;
    color: var(--ncy-jade-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.ncy-product-delivery ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
    margin-top: 26px;
}

.ncy-product-delivery li {
    min-height: 76px;
    padding: 16px 0 16px 20px;
}

.ncy-product-process ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ncy-product-process li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 126px;
    padding: 20px 0;
    border-top: 1px solid var(--ncy-line);
    border-bottom: 0;
}

.ncy-product-process li::before {
    display: none;
}

.ncy-product-process li > span {
    color: var(--ncy-cinnabar);
    font-family: "Songti SC", "STSong", serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.ncy-product-process strong {
    display: block;
    margin-bottom: 7px;
    font-size: 1.02rem;
}

.ncy-product-process li p {
    margin: 0;
    color: var(--ncy-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.ncy-product-switch {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-top: 46px;
    padding: 38px;
    border-bottom: 0 !important;
    background: var(--ncy-ink);
    color: var(--ncy-white);
}

.ncy-product-details .ncy-product-switch .ncy-eyebrow {
    color: #d4b675;
}

.ncy-product-details .ncy-product-switch h2 {
    color: var(--ncy-white);
}

.ncy-product-details .ncy-product-switch p {
    color: rgba(255, 255, 255, 0.72);
}

.ncy-product-switch a {
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--ncy-white);
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.ncy-product-switch a:hover {
    border-color: var(--ncy-white);
    background: var(--ncy-white);
    color: var(--ncy-ink);
}

.single-product .ncy-product-sample-link {
    margin-top: 50px;
}

@media (max-width: 720px) {
    .woocommerce.single-product .ncy-commerce-shell {
        width: min(calc(100% - 40px), 860px);
        padding-top: 50px;
        padding-bottom: 76px;
    }

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

    .single-product .woocommerce-product-details__short-description {
        font-size: 1rem;
        line-height: 1.75;
    }

    .single-product div.product form.cart {
        margin-bottom: 34px;
        padding: 14px;
    }

    .ncy-product-details > section {
        padding: 38px 0;
    }

    .ncy-product-details h2,
    .ncy-product-details h2:first-of-type {
        font-size: 1.85rem;
    }

    .ncy-product-delivery ul,
    .ncy-product-process ol {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ncy-product-delivery li {
        min-height: 0;
    }

    .ncy-product-process li {
        min-height: 0;
    }

    .ncy-product-switch {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 38px;
        padding: 30px 24px;
    }

    .ncy-product-switch a {
        width: 100%;
        white-space: normal;
    }

    .single-product .ncy-product-sample-link {
        margin-top: 40px;
    }
}

/* v0.23.9: formal seal lockup for a complete, recognizable brand */
.ncy-brand--wordmark {
    gap: 12px;
}

.ncy-brand-seal,
.ncy-footer-seal {
    display: block;
    height: auto;
    object-fit: contain;
}

.ncy-brand-seal {
    width: 40px;
    flex: 0 0 40px;
}

.ncy-footer-brand-lockup {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.ncy-footer-brand-lockup .ncy-footer-title {
    margin: 0;
}

.ncy-footer-seal {
    width: 52px;
    flex: 0 0 52px;
}

@media (max-width: 640px) {
    .ncy-brand--wordmark {
        gap: 9px;
    }

    .ncy-brand-seal {
        width: 34px;
        flex-basis: 34px;
    }

    .ncy-footer-seal {
        width: 44px;
        flex-basis: 44px;
    }
}

/* v0.25.0: complete customer-facing trust opening for the about page */
.ncy-about-v3-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 72px;
    align-items: center;
    padding: 72px 0 84px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-about-v3-hero__copy {
    min-width: 0;
}

.ncy-about-v3-hero__copy h1 {
    max-width: 9em;
    margin: 16px 0 24px;
    color: var(--ncy-v3-pearl);
    font-size: 4.8rem;
    line-height: 1.12;
}

.ncy-about-v3-hero__lead {
    max-width: 42em;
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.ncy-about-v3-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ncy-about-v3-hero__primary,
.ncy-about-v3-hero__secondary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--ncy-v3-gold);
    border-radius: 3px;
    font-weight: 800;
    text-decoration: none;
}

.ncy-about-v3-hero__primary {
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
}

.ncy-about-v3-hero__secondary {
    background: transparent;
    color: var(--ncy-v3-pearl);
}

.ncy-about-v3-hero__primary:hover,
.ncy-about-v3-hero__primary:focus-visible {
    border-color: var(--ncy-v3-pearl);
    background: var(--ncy-v3-pearl);
    color: var(--ncy-v3-night);
}

.ncy-about-v3-hero__secondary:hover,
.ncy-about-v3-hero__secondary:focus-visible {
    border-color: var(--ncy-v3-pearl);
    color: var(--ncy-v3-gold-strong);
}

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

.ncy-about-v3-hero__facts > div {
    min-width: 0;
    padding: 20px 18px;
    border-right: 1px solid var(--ncy-v3-line);
}

.ncy-about-v3-hero__facts > div:first-child {
    padding-left: 0;
}

.ncy-about-v3-hero__facts > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.ncy-about-v3-hero__facts dt,
.ncy-about-v3-hero__facts dd {
    margin: 0;
}

.ncy-about-v3-hero__facts dt {
    color: var(--ncy-v3-pearl);
    font-size: 0.9rem;
    font-weight: 800;
}

.ncy-about-v3-hero__facts dd {
    margin-top: 8px;
    color: var(--ncy-v3-muted);
    font-size: 0.8rem;
    line-height: 1.65;
}

.ncy-about-v3-hero__media {
    position: relative;
    min-width: 0;
}

.ncy-about-v3-portrait {
    width: 100%;
    min-height: 560px;
    aspect-ratio: 4 / 5;
    border-color: var(--ncy-v3-line);
}

.ncy-about-v3-portrait::after {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(180deg, transparent, rgba(8, 8, 10, 0.88));
    content: "";
    pointer-events: none;
}

.ncy-about-v3-portrait .ncy-managed-portrait__image {
    object-position: 64% 70%;
    filter: saturate(0.82) contrast(1.04);
}

.ncy-about-v3-hero__caption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 26px;
    left: 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.ncy-about-v3-hero__caption strong {
    color: var(--ncy-v3-gold-strong);
    font-family: var(--ncy-font-serif);
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1;
}

.ncy-about-v3-hero__caption sup {
    margin-left: 3px;
    font-family: var(--ncy-font-sans);
    font-size: 0.2em;
    vertical-align: super;
}

.ncy-about-v3-hero__caption span {
    color: rgba(244, 241, 233, 0.72);
    font-size: 0.82rem;
}

@media (max-width: 980px) {
    .ncy-about-v3-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
        gap: 42px;
    }

    .ncy-about-v3-hero__copy h1 {
        font-size: 3.9rem;
    }

    .ncy-about-v3-hero__facts {
        grid-template-columns: 1fr;
    }

    .ncy-about-v3-hero__facts > div,
    .ncy-about-v3-hero__facts > div:first-child,
    .ncy-about-v3-hero__facts > div:last-child {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--ncy-v3-line);
    }

    .ncy-about-v3-hero__facts > div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 720px) {
    .ncy-about-v3-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 38px 0 60px;
    }

    .ncy-about-v3-hero__copy h1 {
        max-width: none;
        margin-top: 12px;
        font-size: 2.65rem;
        line-height: 1.2;
    }

    .ncy-about-v3-hero__lead {
        font-size: 1rem;
        line-height: 1.78;
    }

    .ncy-about-v3-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .ncy-about-v3-hero__primary,
    .ncy-about-v3-hero__secondary {
        width: 100%;
        min-height: 50px;
    }

    .ncy-about-v3-hero__facts {
        margin-top: 32px;
    }

    .ncy-about-v3-portrait {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .ncy-about-v3-portrait .ncy-managed-portrait__image {
        object-position: 64% 72%;
    }

    .ncy-about-v3-hero__caption {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .ncy-about-v3-hero__caption strong {
        font-size: 2.35rem;
    }
}


/* v0.25.1: preserve complete Chinese phrases and show the person earlier on mobile */
.ncy-about-v3-hero {
    grid-template-areas:
        "copy media"
        "facts media";
    grid-template-rows: auto auto;
}

.ncy-about-v3-hero__copy {
    grid-area: copy;
    align-self: end;
}

.ncy-about-v3-hero__copy h1 {
    max-width: none;
    font-size: 3rem;
    line-height: 1.22;
}

.ncy-about-v3-hero__copy h1 span {
    display: block;
    white-space: nowrap;
}

.ncy-about-v3-hero__media {
    grid-area: media;
    align-self: stretch;
    height: 100%;
}

.ncy-about-v3-portrait {
    height: 100%;
    aspect-ratio: auto;
}

.ncy-about-v3-hero__facts {
    grid-area: facts;
    align-self: end;
    margin-top: 34px;
}

@media (max-width: 980px) {
    .ncy-about-v3-hero__copy h1 {
        font-size: 2.65rem;
    }

    .ncy-about-v3-hero__copy h1 span {
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .ncy-about-v3-hero {
        grid-template-areas:
            "copy"
            "media"
            "facts";
        grid-template-rows: auto auto auto;
    }

    .ncy-about-v3-hero__copy h1 {
        font-size: 1.9rem;
        line-height: 1.28;
    }

.ncy-about-v3-hero__copy h1 span {
    white-space: normal;
    text-wrap: balance;
}

}

/* v0.32.30: searchable knowledge hub and focused topic archives */
body.category,
body.search,
body.category .ncy-site-main,
body.search .ncy-site-main {
    background: var(--ncy-v3-night);
    color: var(--ncy-v3-pearl);
}

.ncy-knowledge-hub,
.ncy-knowledge-archive {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
    padding: 88px 0 120px;
}

.ncy-knowledge-hero,
.ncy-knowledge-archive__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    column-gap: 72px;
    align-items: end;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-knowledge-hero > .ncy-eyebrow,
.ncy-knowledge-archive__hero > .ncy-eyebrow,
.ncy-knowledge-archive__hero > .ncy-knowledge-back {
    grid-column: 1 / -1;
}

.ncy-knowledge-hero h1,
.ncy-knowledge-archive__hero h1 {
    margin: 14px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 4.8rem;
    line-height: 1.06;
    letter-spacing: 0;
}

.ncy-knowledge-hero > p:last-of-type,
.ncy-knowledge-archive__hero > p:last-of-type {
    margin: 0;
    color: var(--ncy-v3-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.ncy-knowledge-search {
    grid-column: 1 / -1;
    margin-top: 42px;
}

.ncy-knowledge-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--ncy-v3-pearl);
    font-size: 0.9rem;
    font-weight: 700;
}

.ncy-knowledge-search > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    min-height: 58px;
    border: 1px solid rgba(244, 241, 233, 0.28);
    border-radius: 4px;
    background: rgba(244, 241, 233, 0.05);
}

.ncy-knowledge-search input {
    min-width: 0;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: var(--ncy-v3-pearl);
    font: inherit;
    outline: 0;
}

.ncy-knowledge-search input::placeholder {
    color: rgba(244, 241, 233, 0.48);
}

.ncy-knowledge-search button {
    min-height: 56px;
    border: 0;
    border-left: 1px solid rgba(244, 241, 233, 0.18);
    background: var(--ncy-v3-gold);
    color: var(--ncy-v3-night);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.ncy-knowledge-search button:hover,
.ncy-knowledge-search button:focus-visible {
    background: var(--ncy-v3-gold-strong);
}

.ncy-knowledge-questions {
    display: grid;
    grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
    gap: 64px;
    padding: 68px 0;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-knowledge-section-label h2 {
    margin: 10px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.ncy-knowledge-questions__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: knowledge-question;
}

.ncy-knowledge-questions__list li {
    min-width: 0;
    border-top: 1px solid rgba(244, 241, 233, 0.16);
    counter-increment: knowledge-question;
}

.ncy-knowledge-questions__list li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 241, 233, 0.16);
}

.ncy-knowledge-questions__list li:nth-child(odd) {
    padding-right: 26px;
}

.ncy-knowledge-questions__list li:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid rgba(244, 241, 233, 0.16);
}

.ncy-knowledge-questions__list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 72px;
    padding: 20px 0;
    color: var(--ncy-v3-pearl);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
    text-decoration: none;
}

.ncy-knowledge-questions__list a::before {
    content: counter(knowledge-question, decimal-leading-zero);
    color: var(--ncy-v3-rust);
    font-size: 0.78rem;
}

.ncy-knowledge-questions__list a:hover,
.ncy-knowledge-questions__list a:focus-visible {
    color: var(--ncy-v3-gold-strong);
}

.ncy-knowledge-topics {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 28px 0 72px;
    scrollbar-width: none;
}

.ncy-knowledge-topics::-webkit-scrollbar {
    display: none;
}

.ncy-knowledge-topics a {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 9px;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    color: var(--ncy-v3-pearl);
    text-decoration: none;
}

.ncy-knowledge-topics a span {
    color: var(--ncy-v3-rust);
    font-size: 0.72rem;
}

.ncy-knowledge-topics a strong {
    font-size: 0.9rem;
}

.ncy-knowledge-topics a:hover,
.ncy-knowledge-topics a:focus-visible,
.ncy-knowledge-topics a[aria-current="page"] {
    border-color: var(--ncy-v3-gold-strong);
    color: var(--ncy-v3-gold-strong);
}

.ncy-knowledge-sections {
    display: grid;
    gap: 92px;
}

.ncy-knowledge-topic {
    scroll-margin-top: calc(var(--ncy-header-height) + 24px);
}

.ncy-knowledge-topic__header {
    display: grid;
    grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.34fr);
    gap: 64px;
    align-items: end;
    padding: 30px 0 28px;
    border-top: 2px solid var(--ncy-v3-gold-strong);
}

.ncy-knowledge-topic__header h2 {
    margin: 10px 0 0;
    color: var(--ncy-v3-pearl);
    font-size: 2.65rem;
    line-height: 1.16;
    letter-spacing: 0;
}

.ncy-knowledge-topic__header > div:last-child {
    display: grid;
    gap: 16px;
}

.ncy-knowledge-topic__header > div:last-child > p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

.ncy-knowledge-topic__header .ncy-text-link {
    justify-self: start;
}

.ncy-knowledge-list {
    border-bottom: 1px solid rgba(244, 241, 233, 0.18);
}

.ncy-knowledge-list__item {
    margin: 0;
    border-top: 1px solid rgba(244, 241, 233, 0.18);
}

.ncy-knowledge-list__item > a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 28px;
    gap: 22px;
    align-items: center;
    min-height: 190px;
    padding: 28px 8px;
    color: var(--ncy-v3-pearl);
    text-decoration: none;
    transition: background-color 160ms ease, padding 160ms ease;
}

.ncy-knowledge-list__item > a:hover,
.ncy-knowledge-list__item > a:focus-visible {
    padding-right: 16px;
    padding-left: 16px;
    background: rgba(244, 241, 233, 0.05);
}

.ncy-knowledge-list__number {
    align-self: start;
    padding-top: 3px;
    color: var(--ncy-v3-rust);
    font-size: 0.8rem;
    font-weight: 800;
}

.ncy-knowledge-list__meta {
    display: flex;
    gap: 18px;
    margin: 0 0 12px;
    color: var(--ncy-v3-muted);
    font-size: 0.78rem;
}

.ncy-knowledge-list h2,
.ncy-knowledge-list h3 {
    margin: 0;
    color: var(--ncy-v3-pearl);
    font-size: 1.7rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.ncy-knowledge-list__item > a > div > p:last-child {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--ncy-v3-muted);
    line-height: 1.7;
}

.ncy-knowledge-list__arrow {
    color: var(--ncy-v3-gold-strong);
    font-size: 1.35rem;
    text-align: right;
}

.ncy-knowledge-back {
    justify-self: start;
    margin-bottom: 34px;
    color: var(--ncy-v3-gold-strong);
    font-weight: 700;
    text-decoration: none;
}

.ncy-knowledge-back:hover,
.ncy-knowledge-back:focus-visible {
    color: var(--ncy-v3-pearl);
}

.ncy-knowledge-archive__hero {
    padding-bottom: 54px;
}

.ncy-knowledge-topics--archive {
    padding-bottom: 54px;
}

.ncy-knowledge-list--archive .ncy-knowledge-list__item > a {
    min-height: 200px;
}

.ncy-knowledge-result-count {
    margin: 0 0 20px;
    color: var(--ncy-v3-muted);
}

.ncy-knowledge-empty {
    padding: 64px 0;
    border-top: 1px solid var(--ncy-v3-line);
}

.ncy-knowledge-empty h2 {
    margin: 0;
    color: var(--ncy-v3-pearl);
    font-size: 2rem;
    letter-spacing: 0;
}

.ncy-knowledge-empty p {
    margin: 14px 0 28px;
    color: var(--ncy-v3-muted);
}

.ncy-knowledge-archive .navigation.pagination {
    margin-top: 44px;
}

.ncy-knowledge-archive .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ncy-knowledge-archive .page-numbers {
    display: inline-grid;
    min-width: 48px;
    min-height: 48px;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--ncy-v3-line);
    border-radius: 4px;
    color: var(--ncy-v3-pearl);
    text-decoration: none;
}

.ncy-knowledge-archive .page-numbers.current,
.ncy-knowledge-archive .page-numbers:hover,
.ncy-knowledge-archive .page-numbers:focus-visible {
    border-color: var(--ncy-v3-gold-strong);
    color: var(--ncy-v3-gold-strong);
}

@media (max-width: 900px) {
    .ncy-knowledge-hero,
    .ncy-knowledge-archive__hero,
    .ncy-knowledge-questions,
    .ncy-knowledge-topic__header {
        grid-template-columns: 1fr;
    }

    .ncy-knowledge-hero,
    .ncy-knowledge-archive__hero {
        row-gap: 22px;
    }

    .ncy-knowledge-questions,
    .ncy-knowledge-topic__header {
        gap: 24px;
    }
}

@media (max-width: 720px) {
    .ncy-knowledge-hub,
    .ncy-knowledge-archive {
        width: min(calc(100% - 28px), 1180px);
        padding: 54px 0 84px;
    }

    .ncy-knowledge-hero,
    .ncy-knowledge-archive__hero {
        padding-bottom: 46px;
    }

    .ncy-knowledge-hero h1,
    .ncy-knowledge-archive__hero h1 {
        font-size: 3rem;
        line-height: 1.12;
    }

    .ncy-knowledge-hero > p:last-of-type,
    .ncy-knowledge-archive__hero > p:last-of-type {
        font-size: 1rem;
        line-height: 1.75;
    }

    .ncy-knowledge-search {
        margin-top: 26px;
    }

    .ncy-knowledge-search > div {
        grid-template-columns: minmax(0, 1fr) 82px;
    }

    .ncy-knowledge-search input {
        padding: 0 14px;
        font-size: 0.94rem;
    }

    .ncy-knowledge-questions {
        padding: 50px 0;
    }

    .ncy-knowledge-section-label h2 {
        font-size: 1.85rem;
    }

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

    .ncy-knowledge-questions__list li,
    .ncy-knowledge-questions__list li:nth-child(odd),
    .ncy-knowledge-questions__list li:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .ncy-knowledge-questions__list li:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .ncy-knowledge-questions__list li:last-child {
        border-bottom: 1px solid rgba(244, 241, 233, 0.16);
    }

    .ncy-knowledge-topics {
        margin-right: -14px;
        padding: 22px 14px 52px 0;
    }

    .ncy-knowledge-sections {
        gap: 68px;
    }

    .ncy-knowledge-topic__header {
        padding-top: 24px;
    }

    .ncy-knowledge-topic__header h2 {
        font-size: 2.15rem;
    }

    .ncy-knowledge-list__item > a,
    .ncy-knowledge-list--archive .ncy-knowledge-list__item > a {
        grid-template-columns: 34px minmax(0, 1fr) 20px;
        gap: 12px;
        min-height: 0;
        padding: 24px 2px;
    }

    .ncy-knowledge-list__item > a:hover,
    .ncy-knowledge-list__item > a:focus-visible {
        padding-right: 6px;
        padding-left: 6px;
    }

    .ncy-knowledge-list h2,
    .ncy-knowledge-list h3 {
        font-size: 1.32rem;
        line-height: 1.45;
    }

    .ncy-knowledge-list__meta {
        flex-wrap: wrap;
        gap: 6px 12px;
        margin-bottom: 9px;
    }

    .ncy-knowledge-list__item > a > div > p:last-child {
        margin-top: 10px;
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .ncy-knowledge-list__arrow {
        font-size: 1rem;
    }

    .ncy-knowledge-back {
        margin-bottom: 16px;
    }
}

@media (max-width: 720px) {
    .ncy-about-v3-hero__media {
        height: auto;
    }

    .ncy-about-v3-portrait {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .ncy-about-v3-hero__facts {
        margin-top: 0;
    }
}

/* v0.26.0: complete service purchase opening */
.woocommerce.single-product .ncy-commerce-shell {
    width: min(calc(100% - 48px), 1180px);
    padding-top: 58px;
    padding-bottom: 112px;
}

.woocommerce.single-product div.product div.summary {
    width: 100% !important;
    padding: 0;
}

.ncy-product-purchase-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 72px;
    align-items: start;
    padding: 44px 0 64px;
    border-bottom: 1px solid var(--ncy-line);
}

.ncy-product-purchase-hero__main {
    min-width: 0;
    padding-top: 4px;
}

.ncy-product-purchase-hero__main .ncy-product-back-link {
    margin-bottom: 48px;
}

.ncy-product-purchase-hero__main .ncy-eyebrow,
.ncy-product-purchase-panel .ncy-eyebrow {
    margin: 0 0 14px;
    color: var(--ncy-jade-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.single-product .ncy-product-purchase-hero .product_title {
    max-width: 9em;
    margin: 0;
    font-size: clamp(3.25rem, 5.5vw, 5.2rem);
    line-height: 1.04;
}

.single-product .ncy-product-purchase-hero .woocommerce-product-details__short-description {
    max-width: 610px;
    margin-top: 30px;
    color: var(--ncy-ink-soft);
    font-size: 1.12rem;
    line-height: 1.82;
}

.single-product .ncy-product-purchase-hero .woocommerce-product-details__short-description p {
    margin-bottom: 0;
}

.ncy-product-purchase-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    align-items: center;
    margin: 38px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--ncy-line);
    color: var(--ncy-ink-soft);
    font-size: 0.9rem;
}

.ncy-product-purchase-proof span {
    font-weight: 800;
}

.ncy-product-purchase-proof a {
    color: var(--ncy-jade-dark);
    font-weight: 700;
}

.ncy-product-purchase-panel {
    padding: 32px;
    border: 1px solid #cfc8ba;
    background: #ece7dc;
}

.ncy-product-purchase-price {
    margin: 0 0 22px;
    color: var(--ncy-cinnabar);
    font-family: "Songti SC", "STSong", serif;
    font-size: 2.55rem;
    font-weight: 700;
    line-height: 1;
}

.ncy-product-purchase-price del {
    color: var(--ncy-muted);
    font-size: 1rem;
}

.ncy-product-purchase-price ins {
    text-decoration: none;
}

.ncy-product-purchase-facts {
    margin: 0;
    padding: 0;
    border-top: 1px solid #cfc8ba;
    list-style: none;
}

.ncy-product-purchase-facts li {
    padding: 13px 0;
    border-bottom: 1px solid #cfc8ba;
    color: var(--ncy-ink);
    font-size: 0.94rem;
    font-weight: 700;
}

.single-product .ncy-product-purchase-panel form.cart {
    max-width: none;
    margin: 28px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.single-product .ncy-product-purchase-panel form.cart .single_add_to_cart_button {
    min-height: 58px;
}

.ncy-product-purchase-help {
    margin: 16px 0 0;
    color: var(--ncy-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.ncy-product-purchase-sample {
    display: inline-flex;
    margin-top: 16px;
    color: var(--ncy-jade-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.single-product .ncy-product-details {
    margin-top: 0;
}

.single-product .ncy-product-details > section {
    padding: 58px 0;
}

.single-product .ncy-product-details > section:first-of-type {
    padding-top: 58px;
}

.single-product .ncy-product-details h2,
.single-product .ncy-product-details h2:first-of-type {
    max-width: 21em;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
}

.single-product .ncy-product-details section > p:last-child {
    max-width: 760px;
}

.single-product .ncy-product-sample-link,
.single-product .ncy-purchase-note {
    max-width: 900px;
}

@media (max-width: 820px) {
    .woocommerce.single-product .ncy-commerce-shell {
        width: min(calc(100% - 32px), 1180px);
        padding-top: 28px;
        padding-bottom: 78px;
    }

    .ncy-product-purchase-hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 26px 0 46px;
    }

    .ncy-product-purchase-hero__main .ncy-product-back-link {
        margin-bottom: 34px;
    }

    .single-product .ncy-product-purchase-hero .product_title {
        max-width: 10em;
        font-size: 2.65rem;
        line-height: 1.1;
    }

    .single-product .ncy-product-purchase-hero .woocommerce-product-details__short-description {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.75;
    }

    .ncy-product-purchase-proof {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 28px;
        padding-top: 16px;
    }

    .ncy-product-purchase-panel {
        padding: 26px 22px;
    }

    .ncy-product-purchase-price {
        font-size: 2.2rem;
    }

    .single-product .ncy-product-details > section,
    .single-product .ncy-product-details > section:first-of-type {
        padding: 42px 0;
    }

    .single-product .ncy-product-details h2,
    .single-product .ncy-product-details h2:first-of-type {
        font-size: 2rem;
    }
}

/* v0.28.5: show the real public report instead of a simulated report card */
.ncy-real-report-preview {
    align-self: start;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(23, 32, 28, 0.24);
    border-top: 4px solid #b65e46;
    border-radius: 3px;
    background: #f4f0e6;
    box-shadow: 0 26px 64px rgba(23, 32, 28, 0.14);
}

.ncy-real-report-preview > a {
    display: block;
    overflow: hidden;
    background: #f4f0e6;
}

.ncy-real-report-preview img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 798;
    object-fit: cover;
}

.ncy-real-report-preview figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    border-top: 1px solid rgba(23, 32, 28, 0.16);
    color: #17201c;
    font-size: 0.86rem;
}

.ncy-real-report-preview figcaption span {
    font-weight: 800;
}

.ncy-real-report-preview figcaption small {
    color: #68716c;
    white-space: nowrap;
}

.ncy-real-report-preview a:focus-visible {
    outline: 3px solid #b65e46;
    outline-offset: -3px;
}

@media (max-width: 720px) {
    .ncy-real-report-preview figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px;
    }

    .ncy-real-report-preview figcaption small {
        white-space: normal;
    }
}

/* v0.30.0: trust-led consulting homepage */
.ncy-home-v7-hero {
    min-height: min(760px, 84svh);
}

.ncy-home-v7-hero h1 {
    max-width: 12.8em;
    font-size: clamp(3.4rem, 5.15vw, 4.75rem);
    line-height: 1.14;
}

.ncy-home-v7-title__line {
    display: block;
    white-space: nowrap;
}

.ncy-home-v7-title__item {
    display: inline-block;
    white-space: nowrap;
}

.ncy-home-v7-title__separator {
    display: inline-block;
}

.ncy-home-v7-price {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
    margin: 24px 0 0;
    color: #f4f1e9;
    font-size: 0.94rem;
}

.ncy-home-v7-price strong {
    color: #e0bf85;
    font-weight: 800;
}

.ncy-home-v7-price span {
    color: rgba(244, 241, 233, 0.78);
}

.ncy-home-v7-friction {
    padding: 92px 0;
    background: #f7f5ef;
    color: #17201c;
}

.ncy-home-v7-friction > .wp-block-group__inner-container {
    width: min(calc(100% - 40px), var(--ncy-content));
    margin: 0 auto;
}

.ncy-home-v7-friction-heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 44px;
}

.ncy-home-v7-friction-heading .ncy-eyebrow {
    margin: 0;
    color: #8a4838;
}

.ncy-home-v7-friction-heading h2 {
    max-width: 17em;
    margin: 0;
    color: #17201c;
    font-size: clamp(2.45rem, 4vw, 3.4rem);
    line-height: 1.2;
}

.ncy-home-v7-friction-list {
    border-top: 1px solid rgba(23, 32, 28, 0.22);
}

.ncy-home-v7-friction-list article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) minmax(190px, 0.34fr);
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(23, 32, 28, 0.22);
}

.ncy-home-v7-friction-list article > span {
    color: #a44f3c;
    font-family: Georgia, serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.ncy-home-v7-friction-list h3 {
    margin: 0 0 8px;
    color: #17201c;
    font-size: 1.28rem;
    line-height: 1.45;
}

.ncy-home-v7-friction-list p {
    max-width: 720px;
    margin: 0;
    color: #59615c;
    font-size: 0.94rem;
    line-height: 1.75;
    text-align: left;
}

.ncy-home-v7-friction-list article > strong {
    padding-left: 24px;
    border-left: 1px solid rgba(23, 32, 28, 0.2);
    color: #346f61;
    font-size: 0.9rem;
    line-height: 1.55;
}

.ncy-home-v7-proof .ncy-delivery-strip {
    margin-bottom: 40px;
}

.ncy-home-v7-proof .ncy-proof-notes h3 {
    max-width: 12em;
}

.ncy-home-v7-verification {
    background: #ece7dc;
}

.ncy-home-v7-verification .ncy-verification-heading > div > p:last-child {
    max-width: 620px;
    color: #59615c;
}

.ncy-home-v7-verification .ncy-verification-ledger {
    border-top-color: rgba(23, 32, 28, 0.22);
}

.ncy-home-v7-services .ncy-home-v5-heading h2 {
    max-width: 18em;
}

.ncy-home-v7-process .ncy-process-step p {
    text-align: left;
}

.ncy-home-v7-cta .ncy-cta-layout h2 {
    max-width: 16em;
}

@media (max-width: 980px) {
    .ncy-home-v7-friction-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ncy-home-v7-friction-list article {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .ncy-home-v7-friction-list article > strong {
        grid-column: 2;
        padding: 0;
        border-left: 0;
    }
}

@media (max-width: 720px) {
    .ncy-home-v7-hero {
        min-height: min(660px, 78svh);
    }

    .ncy-home-v7-hero h1 {
        max-width: 11em;
        font-size: 2.22rem;
        line-height: 1.2;
    }

    .ncy-home-v7-title__line--pair {
        white-space: normal;
    }

    .ncy-home-v7-title__line--pair .ncy-home-v7-title__item {
        display: block;
    }

    .ncy-home-v7-title__line--pair .ncy-home-v7-title__separator {
        display: none;
    }

    .ncy-home-v7-price {
        gap: 4px 14px;
        margin-top: 18px;
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .ncy-home-v7-friction {
        padding: 66px 0;
    }

    .ncy-home-v7-friction > .wp-block-group__inner-container {
        width: min(calc(100% - 32px), var(--ncy-content));
    }

    .ncy-home-v7-friction-heading {
        margin-bottom: 28px;
    }

    .ncy-home-v7-friction-heading h2 {
        max-width: none;
        font-size: 2rem;
        line-height: 1.26;
    }

    .ncy-home-v7-friction-list article {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 22px 0;
    }

    .ncy-home-v7-friction-list h3 {
        font-size: 1.08rem;
        line-height: 1.5;
    }

    .ncy-home-v7-friction-list p {
        font-size: 0.9rem;
        line-height: 1.72;
        text-align: justify;
        text-justify: inter-ideograph;
    }

    .ncy-home-v7-friction-list article > strong {
        font-size: 0.86rem;
    }

    .ncy-home-v7-proof .ncy-delivery-strip {
        margin-bottom: 30px;
    }

    .ncy-home-v7-verification .ncy-verification-heading > div > p:last-child {
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

/* 0.30.9: verifiable work and delivery evidence on the about page. */
.ncy-about-v4-evidence {
    padding: 96px 0 24px;
    border-bottom: 1px solid var(--ncy-v3-line);
}

.ncy-about-v4-evidence > header {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 38px;
}

.ncy-about-v4-evidence > header h2 {
    max-width: 820px;
    margin: 12px 0 0;
    font-size: clamp(2.1rem, 4.2vw, 4.4rem);
    line-height: 1.16;
}

.ncy-about-v4-evidence__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 18px;
}

.ncy-about-v4-evidence__grid--single {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 900px);
    margin-inline: auto;
}

.ncy-about-v4-evidence__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    margin: 0;
    border: 1px solid var(--ncy-v3-line);
    background: var(--ncy-v3-night-raised);
}

.ncy-about-v4-evidence__media {
    display: block;
    min-width: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--ncy-v3-line);
    background: #f2f1ed;
}

.ncy-about-v4-evidence__media--workspace,
.ncy-about-v4-evidence__media--report {
    aspect-ratio: 16 / 10;
}

.ncy-about-v4-evidence__media figure,
.ncy-about-v4-evidence__media img {
    width: 100%;
    height: 100%;
    margin: 0;
}

.ncy-about-v4-evidence__media img {
    display: block;
    object-fit: cover;
}

.ncy-about-v4-evidence__media--workspace img {
    object-position: center 48%;
}

.ncy-about-v4-evidence__media--report img {
    object-position: center 16%;
    transition: transform 180ms ease;
}

.ncy-about-v4-evidence__media--report:hover img,
.ncy-about-v4-evidence__media--report:focus-visible img {
    transform: scale(1.015);
}

.ncy-about-v4-evidence__caption {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px 26px 26px;
}

.ncy-about-v4-evidence__caption strong {
    color: var(--ncy-v3-pearl);
    font-size: 1rem;
}

.ncy-about-v4-evidence__caption p {
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

.ncy-about-v4-evidence__caption a {
    grid-column: 2;
    width: fit-content;
    color: var(--ncy-v3-gold-strong);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 780px) {
    .ncy-about-v4-evidence {
        padding: 66px 0 12px;
    }

    .ncy-about-v4-evidence > header,
    .ncy-about-v4-evidence__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .ncy-about-v4-evidence > header {
        margin-bottom: 28px;
    }

    .ncy-about-v4-evidence > header h2 {
        font-size: 2.25rem;
    }

    .ncy-about-v4-evidence__caption {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 20px;
    }

    .ncy-about-v4-evidence__caption a {
        grid-column: 1;
        min-height: 44px;
        padding-top: 8px;
    }
}

/* 0.32.3: backend-managed, verified work evidence. */
.ncy-trust-evidence {
    width: min(calc(100% - 32px), var(--ncy-content));
    margin: 0 auto;
    padding: 72px 0;
    border-top: 1px solid var(--ncy-v3-line);
    color: var(--ncy-v3-pearl);
}

.ncy-trust-evidence__header {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.ncy-trust-evidence__header h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--ncy-v3-pearl);
    font-family: var(--ncy-font-serif);
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.22;
}

.ncy-trust-evidence__header > p {
    max-width: 660px;
    margin: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
}

.ncy-trust-evidence__grid {
    display: grid;
    grid-auto-columns: minmax(82%, 1fr);
    grid-auto-flow: column;
    gap: 14px;
    overflow-x: auto;
    padding: 0 0 12px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.ncy-trust-evidence__item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ncy-v3-line);
    background: var(--ncy-v3-night-raised);
    scroll-snap-align: start;
}

.ncy-trust-evidence__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid var(--ncy-v3-line);
    background: var(--ncy-v3-night-soft);
}

.ncy-trust-evidence__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ncy-trust-evidence__item figcaption {
    display: grid;
    gap: 8px;
    padding: 20px;
}

.ncy-trust-evidence__item figcaption strong {
    color: var(--ncy-v3-gold-strong);
    font-size: 1rem;
}

.ncy-trust-evidence__item figcaption span {
    color: var(--ncy-v3-muted);
    line-height: 1.7;
}

@media (min-width: 781px) {
    .ncy-trust-evidence {
        width: min(calc(100% - 40px), var(--ncy-content));
        padding: 96px 0;
    }

    .ncy-trust-evidence__header {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 64px;
        align-items: end;
        margin-bottom: 38px;
    }

    .ncy-trust-evidence__header h2 {
        font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    }

    .ncy-trust-evidence__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-columns: auto;
        grid-auto-flow: row;
        gap: 18px;
        overflow: visible;
        padding: 0;
    }

    .ncy-trust-evidence__item figcaption {
        grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
        gap: 18px;
        padding: 24px 26px 26px;
    }

    .ncy-trust-evidence--compact {
        padding-top: 78px;
        padding-bottom: 78px;
    }
}

/* v0.32.19: keep direct checkout primary and make pre-sale help optional */
.ncy-offer-help {
    display: block;
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(197, 168, 128, 0.36);
    background: rgba(197, 168, 128, 0.08);
}

.ncy-offer-help > .wp-block-group__inner-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ncy-offer-help p {
    margin: 0;
    color: var(--ncy-v3-pearl, #f4f1e9);
    font-weight: 600;
    line-height: 1.65;
}

.ncy-offer-help .ncy-dual__copy {
    flex: 0 0 auto;
    min-height: 48px;
    margin: 0;
}

@media (max-width: 720px) {
    .ncy-offer-help > .wp-block-group__inner-container {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .ncy-offer-help .ncy-dual__copy {
        width: 100%;
    }
}

/* v0.32.25: put sample choice first and remove repeated proof friction */
body.ncy-samples-page .ncy-page {
    padding-top: 40px;
}

body.ncy-samples-page .ncy-page-header {
    margin-bottom: 0;
}

.ncy-samples-v5__opening {
    padding: 30px 0 44px;
}

.ncy-samples-v5 > .ncy-samples-v2__nav {
    margin-bottom: 34px;
}

.ncy-samples-v5 #sample-adult,
.ncy-samples-v5 .ncy-samples-v2__case[id] {
    scroll-margin-top: calc(var(--ncy-header-height) + 24px);
}

.ncy-samples-v5 .ncy-samples-v4__preview {
    margin-top: 0;
}

.ncy-samples-v5 .ncy-samples-v2__case > header h2 {
    max-width: 15em;
    font-size: clamp(2.75rem, 4vw, 3.7rem);
}

.ncy-samples-v5__case-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    align-items: center;
    margin-top: 28px;
}

.ncy-samples-v5__case-actions .wp-element-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.ncy-samples-v5__case-actions .ncy-text-link {
    color: var(--ncy-v3-gold-strong);
    font-weight: 800;
}

.ncy-samples-v4__preview .ncy-samples-v5__case-actions .ncy-text-link {
    color: #8a4838;
}

.ncy-samples-v2__case > .ncy-samples-v5__case-actions {
    margin-top: 0;
    padding: 0 42px 38px;
}

@media (max-width: 640px) {
    body.ncy-samples-page .ncy-page {
        padding-top: 24px;
    }

    body.ncy-samples-page .ncy-page-header {
        padding-top: 30px;
        padding-bottom: 18px;
    }

    .ncy-samples-v5__opening {
        padding: 22px 0 30px;
    }

    .ncy-samples-v5__opening h2,
    .ncy-samples-v5 .ncy-samples-v2__case > header h2 {
        font-size: 2.05rem;
        line-height: 1.26;
    }

    .ncy-samples-v5 > .ncy-samples-v2__nav {
        margin-bottom: 22px;
    }

    .ncy-samples-v5 .ncy-samples-v4__preview {
        gap: 24px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .ncy-samples-v5__case-actions {
        display: grid;
        gap: 14px;
    }

    .ncy-samples-v5__case-actions .wp-element-button {
        width: 100%;
        text-align: center;
    }

    .ncy-samples-v2__case > .ncy-samples-v5__case-actions {
        padding: 0 20px 28px;
    }
}

/* v0.32.26: keep WordPress paragraph formatting out of sample comparison grids */
.ncy-sample-verdict {
    grid-template-columns: 48px 180px minmax(0, 1fr) 190px;
    gap: 24px;
    align-items: center;
    min-height: 132px;
    padding: 24px 32px;
}

.ncy-sample-verdict__code {
    grid-column: 1;
    grid-row: 1;
}

.ncy-sample-verdict__identity {
    grid-column: 2;
    min-width: 0;
}

.ncy-sample-verdict__description {
    grid-column: 3;
    min-width: 0;
    color: var(--ncy-v3-muted);
    line-height: 1.75;
    text-align: left;
}

.ncy-sample-verdict__use {
    grid-column: 4;
    min-width: 0;
    color: var(--ncy-v3-gold-strong);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.65;
    text-align: right;
}

.ncy-sample-verdict > p:empty {
    display: none;
}

@media (max-width: 980px) {
    .ncy-sample-verdict {
        grid-template-columns: 44px 140px minmax(0, 1fr) 156px;
        gap: 18px;
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 720px) {
    .ncy-sample-verdict {
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 8px 14px;
        align-items: start;
        min-height: 0;
        padding: 22px 18px;
    }

    .ncy-sample-verdict__code {
        grid-column: 1;
        grid-row: 1 / span 3;
    }

    .ncy-sample-verdict__identity {
        grid-column: 2;
        grid-row: 1;
    }

    .ncy-sample-verdict__description {
        grid-column: 2;
        grid-row: 2;
    }

    .ncy-sample-verdict__use {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        text-align: left;
    }
}
