/* =========================================================================
   Nauding Elust — "Vanaroosa" (pojengid) — CMS template
   Palett: Soft Ivory #F7F1ED · Blush Haze #F0E3E2 · Dusty Rose #DDBEC2
   Rose Mauve #C49AA0 · Vintage Rose #8F5A64 · Deep Rose #43333A · Warm Gold #a3744f
   ========================================================================= */
:root {
    --soft-ivory: #F7F1ED;
    --blush-haze: #F0E3E2;
    --dusty-rose: #DDBEC2;
    --rose-mauve: #C49AA0;
    --vintage-rose: #8F5A64;
    --ink-soft: #6E545A;
    --deep-rose: #43333A;
    --warm-gold: #a3744f;
    --sage: #9aa88c;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', system-ui, sans-serif;
    --font-script: 'Alex Brush', 'Pinyon Script', cursive;

    --wrap: 1080px;
    --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    background-color: var(--soft-ivory);
    color: var(--deep-rose);
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100svh;
}
#ne-main { display: flex; flex-direction: column; min-height: 100vh; min-height: 100svh; }
#ne-main > *:last-child { margin-top: auto; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; color: var(--deep-rose); margin: 0 0 1rem; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
p { margin: 0 0 1rem; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.ne-script-text {
    font-family: var(--font-script);
    color: var(--warm-gold);
    line-height: 1;
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.ne-section-kicker {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    color: var(--ink-soft);
    margin: 0 0 1rem;
}
.ne-section-kicker--center { text-align: center; }

.ne-container { max-width: var(--wrap); margin-inline: auto; padding: 0 1.5rem; }

.ne-skip-link {
    position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
    background: var(--deep-rose); color: var(--soft-ivory); padding: .6rem 1.2rem;
    border-radius: 0 0 12px 12px; z-index: 1000; transition: top .2s var(--ease);
}
.ne-skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--vintage-rose); outline-offset: 3px; border-radius: 4px; }

/* ---------- Base icon size (every icon routes through ne_icon()) ---------- */
.ne-ic { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.18em; }

/* ---------- CMS compatibility ---------- */
.cms-block { padding: 0; }
body:not(.cms-edit-mode) .cms-block--navbar { display: contents; }

/* ---------- Header ---------- */
.ne-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 241, 237, 0.82);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196,154,160,.18);
}
.ne-header-inner {
    max-width: var(--wrap); margin-inline: auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: .45rem 1.5rem; gap: 1rem;
}
.ne-logo { display: inline-flex; }
.ne-logo img { height: 72px; width: auto; transform-origin: center; transition: transform .3s var(--ease), filter .3s ease; }
.ne-logo-text { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 500; color: var(--deep-rose); }
.ne-logo:hover img { transform: scale(1.04); filter: drop-shadow(0 6px 14px rgba(143,90,100,.25)); }
@media (prefers-reduced-motion: no-preference) {
    .ne-logo:hover img { animation: ne-logo-beat 1.5s var(--ease) infinite; }
}
@keyframes ne-logo-beat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.07); }
    28%      { transform: scale(1.0); }
    42%      { transform: scale(1.045); }
    56%      { transform: scale(1.0); }
}
.ne-nav-links { display: flex; gap: 2rem; }
.ne-nav-links a {
    text-decoration: none; color: var(--ink-soft); font-size: 1rem;
    letter-spacing: .01em; position: relative; padding: .2rem 0; transition: color .3s ease;
}
.ne-nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
    background: var(--warm-gold); transition: width .3s var(--ease);
}
.ne-nav-links a:hover, .ne-nav-links a.active { color: var(--deep-rose); }
.ne-nav-links a.active::after, .ne-nav-links a:hover::after { width: 100%; }
.ne-nav-toggle { display: none; background: none; border: 0; color: var(--deep-rose); cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; }

/* ---------- Lilac/peony washes (signature background) ---------- */
.ne-lilac-wash {
    position: absolute; inset: -10% 0 auto 0; height: 130%;
    z-index: -1; pointer-events: none;
    background:
        radial-gradient(40% 32% at 78% 14%, rgba(221,190,194,.55), transparent 70%),
        radial-gradient(46% 40% at 12% 30%, rgba(240,227,226,.7), transparent 72%),
        radial-gradient(50% 45% at 60% 90%, rgba(196,154,160,.32), transparent 70%);
}
.ne-lilac-wash--soft { opacity: .55; height: 90%; }
@media (prefers-reduced-motion: no-preference) {
    .ne-lilac-wash { animation: ne-drift 26s ease-in-out infinite alternate; }
}
@keyframes ne-drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,-2%,0) scale(1.06); } }

/* ---------- Living sprig (SVG signature) ---------- */
.ne-sprig { width: 140px; height: auto; }
.ne-sprig .ne-stem { stroke: var(--sage); stroke-width: 2.4; stroke-linecap: round; fill: none; }
.ne-sprig .ne-leaf { fill: var(--sage); opacity: .8; }
.ne-sprig .ne-tone-a { color: var(--dusty-rose); }
.ne-sprig .ne-tone-b { color: var(--rose-mauve); }
.ne-sprig .ne-sway { transform-box: view-box; transform-origin: 84px 240px; }
@media (prefers-reduced-motion: no-preference) {
    .ne-sprig .ne-sway { animation: ne-sway 7s ease-in-out infinite alternate; }
}
@keyframes ne-sway { from { transform: rotate(-2.2deg); } to { transform: rotate(2.6deg); } }

/* ---------- Buttons ---------- */
.ne-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2rem; background-color: var(--vintage-rose); color: var(--soft-ivory);
    text-decoration: none; border-radius: 50px; border: 1px solid var(--vintage-rose);
    font-family: var(--font-body); font-size: 1rem; font-weight: 400; cursor: pointer;
    transition: transform .3s var(--ease), background-color .3s, box-shadow .3s;
}
.ne-btn:hover { transform: translateY(-3px); background-color: var(--deep-rose); box-shadow: 0 12px 26px -12px rgba(67,51,58,.55); }
.ne-btn .ne-ic { width: 18px; height: 18px; }
.ne-btn--soft { background-color: transparent; color: var(--deep-rose); border-color: var(--rose-mauve); }
.ne-btn--soft:hover { background-color: var(--dusty-rose); color: var(--deep-rose); box-shadow: 0 12px 26px -14px rgba(196,154,160,.6); }
.ne-ic-fb { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.ne-hero {
    position: relative; padding: clamp(2.5rem, 6vw, 5rem) 1.5rem clamp(2rem,4vw,3rem);
    background-image: url('hero-bg.svg');
    background-size: cover; background-position: top right; background-repeat: no-repeat;
    overflow: hidden;
}
.ne-hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: url('peony-wide.jpg') top right / auto 118% no-repeat;
    opacity: .34;
    -webkit-mask-image: radial-gradient(85% 85% at 100% 0%, #000 0%, #000 25%, transparent 68%);
    mask-image: radial-gradient(85% 85% at 100% 0%, #000 0%, #000 25%, transparent 68%);
}
.ne-hero-inner {
    max-width: var(--wrap); margin-inline: auto;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center; min-height: clamp(420px, 58vh, 600px);
}
.ne-hero-copy { max-width: 48ch; }
.ne-hero-h1 { font-family: var(--font-script); font-weight: 400; font-size: clamp(3.6rem, 9vw, 7rem); line-height: 1.1; margin: 0; }
.ne-hero-h1-line { white-space: nowrap; }
.ne-hero-h1 em { font-style: normal; color: var(--vintage-rose); }
.ne-hero-tail { font-family: var(--font-heading); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--rose-mauve); margin: .3rem 0 1.6rem; }
.ne-hero-lead { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 2rem; max-width: 38ch; }

.ne-hero-podcast {
    position: absolute; z-index: 3; left: 0; right: 0; bottom: -1.8rem;
    width: 100%; overflow: hidden;
    background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
    border-radius: 16px; padding: 1rem 0 0;
    box-shadow: 0 24px 46px -20px rgba(67,51,58,.5);
}
.ne-hero-podcast-label {
    font-family: var(--font-heading); font-style: italic; color: var(--deep-rose);
    font-size: 1.05rem; margin: 0 0 .6rem; padding: 0 1.1rem;
}
.ne-hero-podcast-embed { display: block; width: 100%; border: none; }

.ne-hero-figure { position: relative; justify-self: center; }
.ne-portrait-frame {
    width: min(360px, 78vw); aspect-ratio: 4/5; overflow: hidden;
    border-radius: 16px 120px 16px 120px;
    box-shadow: 0 26px 60px -28px rgba(67,51,58,.4);
    border: 6px solid #fff;
}
.ne-portrait-frame--alt { border-radius: 120px 16px 120px 16px; width: min(330px, 80vw); }
.ne-portrait-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Home services / service-grid block ---------- */
.ne-home-services { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem,7vw,5rem); text-align: center; }
.ne-home-services .ne-section-kicker { text-align: center; }
.ne-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.ne-service-grid--lg { gap: 2rem; margin-top: 2.5rem; }
.ne-service-card {
    position: relative; isolation: isolate; overflow: hidden;
    background: rgba(255,255,255,.55); border: 1px solid rgba(221,190,194,.5);
    border-radius: 22px; padding: 2.2rem 2rem 2.4rem; text-align: left; text-decoration: none;
    display: flex; flex-direction: column; color: var(--deep-rose);
    transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.ne-service-card::before {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: url('peony-wide.jpg') bottom right / cover no-repeat;
    opacity: .22; filter: url(#ne-card-duotone-a);
    transition: opacity .5s ease;
    -webkit-mask-image: radial-gradient(75% 75% at 100% 100%, #000 0%, #000 25%, transparent 68%);
    mask-image: radial-gradient(75% 75% at 100% 100%, #000 0%, #000 25%, transparent 68%);
}
.ne-service-card--even::before { filter: url(#ne-card-duotone-b); }
.ne-service-card::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
    transform: translateX(-130%);
}
.ne-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px -26px rgba(143,90,100,.45);
    border-color: var(--rose-mauve);
}
.ne-service-card:hover::before { opacity: .34; }
@media (prefers-reduced-motion: no-preference) {
    .ne-service-card:hover::after { transform: translateX(130%); transition: transform .85s var(--ease); }
}
.ne-service-ic {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
    background: var(--blush-haze); color: var(--vintage-rose); margin-bottom: 1rem;
    transition: transform .5s var(--ease), background-color .4s ease, color .4s ease;
}
.ne-service-ic .ne-ic { width: 22px; height: 22px; }
.ne-service-card:hover .ne-service-ic { background: var(--dusty-rose); color: var(--deep-rose); }
.ne-service-card h2 { margin: 0 0 1rem; display: flex; flex-direction: column; }
.ne-service-card h2 .ne-card-label {
    font-family: var(--font-body); font-weight: 500;
    text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; color: var(--deep-rose);
    margin-bottom: .3rem;
}
.ne-service-card h2 .ne-script-word {
    font-family: var(--font-script); font-weight: 400;
    font-size: clamp(3.2rem, 8.5vw, 4.5rem); line-height: 1.15; color: var(--warm-gold);
    margin: 0; padding-bottom: .15rem; transform-origin: left bottom;
    transition: transform .5s var(--ease), color .4s ease;
}
.ne-service-card:hover h2 .ne-script-word { color: var(--vintage-rose); }
.ne-service-price {
    font-family: var(--font-body); letter-spacing: .04em; color: var(--deep-rose); font-weight: 400;
    font-size: 1.02rem; margin: 0 0 .6rem; padding-top: .9rem; border-top: 1px solid rgba(221,190,194,.6);
    transition: border-color .4s ease;
}
.ne-service-card:hover .ne-service-price { border-color: var(--warm-gold); }
@media (prefers-reduced-motion: no-preference) {
    .ne-service-card:hover .ne-service-ic { transform: rotate(-10deg) scale(1.08); }
    .ne-service-card:hover h2 .ne-script-word { transform: translateX(6px) rotate(-2deg) scale(1.04); }
}
.ne-service-note { color: var(--ink-soft); margin: 0; }
.ne-service-link { margin-top: auto; padding-top: 1.4rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--deep-rose); font-size: .95rem; }
.ne-service-link .ne-ic { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.ne-service-card:hover .ne-service-link .ne-ic { transform: translateX(4px); }
.ne-service-card > .ne-btn { margin-top: 1.4rem; align-self: flex-start; }

/* ---------- Generic page header ---------- */
.ne-page-head { position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; }
/* the wash is sized to fill a whole page in the standalone site; a page-header
   block is only ever as tall as its own text, so scale the wash to the viewport
   instead of the block, or the same gradient reads as a tight visible band */
.ne-page-head .ne-lilac-wash { height: 70vh; min-height: 480px; }
.ne-page-head--center { text-align: center; }
.ne-page-head--center > * { margin-inline: auto; }
.ne-page-head h1 { margin: 0; }
.ne-page-intro { font-size: 1.12rem; color: var(--ink-soft); margin: .6rem auto 0; max-width: 60ch; }
.ne-page-subtitle {
    font-family: var(--font-heading); font-style: italic;
    font-size: clamp(1.1rem, 2.1vw, 1.45rem); line-height: 1.45;
    color: var(--vintage-rose); margin: .8rem 0 0; max-width: 64ch;
}
.ne-page-intro em, .ne-page-subtitle em { font-family: var(--font-heading); font-style: italic; font-size: 1.18em; color: var(--vintage-rose); }

/* ---------- About split ---------- */
.ne-about-section { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem,7vw,5rem); }
.ne-about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.ne-about-figure { position: relative; text-align: center; }
.ne-about-figure .ne-portrait-frame { position: relative; z-index: 1; margin-inline: auto; }
.ne-about-figure::before {
    content: ""; position: absolute; z-index: 0; pointer-events: none;
    inset: -14% -20%;
    background: url('peony-wide.jpg') center 35% / cover no-repeat;
    opacity: .3;
    -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, #000 30%, transparent 72%);
    mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, #000 30%, transparent 72%);
}
.ne-about-name { font-family: var(--font-heading); font-style: italic; font-size: 1.35rem; color: var(--ink-soft); margin-top: 1.2rem; }
.ne-about-body .ne-lead { font-size: 1.25rem; font-family: var(--font-heading); color: var(--deep-rose); line-height: 1.5; margin-bottom: 1.6rem; }
.ne-richtext p { margin-bottom: 1.2rem; }
.ne-pull-quote {
    font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; line-height: 1.4;
    color: var(--ink-soft); margin: 2rem 0; padding-left: 1.5rem;
    border-left: 2px solid var(--rose-mauve);
}

/* ---------- About: approach values ---------- */
.ne-about-approach { padding: 0 0 clamp(3.5rem, 8vw, 6rem); text-align: center; }
.ne-about-approach .ne-section-kicker { text-align: center; margin-bottom: .5rem; }
.ne-about-approach h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.ne-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.8rem, 4vw, 3rem); }
.ne-value { display: flex; flex-direction: column; align-items: center; }
.ne-value .ne-service-ic { margin: 0 0 .9rem; }
.ne-value h3 { font-family: var(--font-heading); font-weight: 500; font-size: 1.35rem; margin: 0 0 .5rem; }
.ne-value p { color: var(--ink-soft); margin: 0; max-width: 32ch; }

/* ---------- Peony band ---------- */
.ne-band-wrap { padding: clamp(3rem,6vw,4.5rem) 0 0; }
.ne-band-wrap--flush { padding: 0; }
.ne-peony-band { position: relative; border-radius: 26px; overflow: hidden; aspect-ratio: 21/8; }
.ne-peony-band img { width: 100%; height: 100%; object-fit: cover; }
.ne-peony-band figcaption {
    position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
    padding: 1rem;
    color: #fff; text-shadow: 0 4px 28px rgba(67,51,58,.55);
    background: linear-gradient(180deg, rgba(67,51,58,.12), rgba(67,51,58,.34));
}
.ne-peony-band figcaption .ne-script-text { color: #fff; font-size: clamp(4.8rem,11vw,7.2rem); }

/* ---------- Session info + FAQ ---------- */
.ne-session-wrap { padding: clamp(1rem,3vw,2rem) 0 clamp(3rem,7vw,5rem); }
.ne-session-info { max-width: 640px; margin: clamp(1rem,3vw,2rem) auto 0; text-align: center; }
.ne-session-info h2 { font-size: clamp(1.5rem,3vw,2rem); }
.ne-session-info p { color: var(--ink-soft); font-size: 1.08rem; }

.ne-faq { max-width: 720px; margin: clamp(2.5rem,5vw,3.5rem) auto 0; }
.ne-faq-title { text-align: center; font-size: clamp(1.4rem,2.6vw,1.8rem); margin-bottom: 1.5rem; }
.ne-faq-item { border-bottom: 1px solid rgba(196,154,160,.45); }
.ne-faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.1rem .2rem; cursor: pointer; list-style: none;
    font-family: var(--font-heading); font-size: 1.2rem; color: var(--deep-rose);
}
.ne-faq-item summary::-webkit-details-marker { display: none; }
.ne-faq-item summary .ne-ic { width: 20px; height: 20px; color: var(--warm-gold); flex: none; transition: transform .3s var(--ease); }
.ne-faq-item[open] summary .ne-ic { transform: rotate(180deg); }
.ne-faq-a { overflow: hidden; }
.ne-faq-a p { padding: 0 .2rem 1.2rem; margin: 0; color: var(--ink-soft); max-width: 60ch; }
@media (prefers-reduced-motion: no-preference) {
    .ne-faq-item[open] .ne-faq-a { animation: ne-faqIn .3s var(--ease); }
}
@keyframes ne-faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Reviews ---------- */
.ne-reviews { padding: clamp(1rem,3vw,2.5rem) 0 clamp(3rem,7vw,5rem); text-align: center; }
.ne-review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.ne-review {
    background: rgba(255,255,255,.55); border: 1px solid rgba(221,190,194,.5);
    border-radius: 22px; padding: 2rem 1.8rem; margin: 0; display: flex; flex-direction: column; gap: 1rem;
}
.ne-review blockquote {
    margin: 0; font-family: var(--font-heading); font-style: italic; font-size: 1.2rem;
    line-height: 1.45; color: var(--deep-rose);
}
.ne-review figcaption { font-family: var(--font-body); font-size: .9rem; color: var(--ink-soft); margin-top: auto; }
.ne-empty-hint { color: var(--ink-soft); font-style: italic; }

/* ---------- Follow ---------- */
.ne-follow { padding: clamp(3rem,6vw,4.5rem) 0; text-align: center; }
.ne-follow h2 { font-size: clamp(1.6rem,3vw,2.2rem); }
.ne-follow p { color: var(--ink-soft); max-width: 44ch; margin: .6rem auto 1.6rem; }

/* ---------- Contact ---------- */
.ne-contact-wrap { padding: clamp(2rem,5vw,3.5rem) 0 clamp(3rem,7vw,5rem); }
.ne-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.ne-contact-card {
    position: relative; background: rgba(255,255,255,.55); border: 1px solid rgba(221,190,194,.5);
    border-radius: 24px; padding: 2.5rem; overflow: hidden;
}
.ne-contact-card h2 { font-size: 1.5rem; margin-bottom: 1.6rem; }
.ne-contact-row { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.1rem; font-size: 1.05rem; }
.ne-contact-row .ne-ic, .ne-contact-row .ne-ic-fb { width: 20px; height: 20px; color: var(--warm-gold); flex: none; }
.ne-contact-row a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.ne-contact-row a:hover { border-color: var(--rose-mauve); }
.ne-contact-sprig { position: absolute; right: -34px; bottom: -30px; width: 120px; opacity: .85; }

.ne-contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.ne-contact-placeholder { padding: 2rem; text-align: center; color: var(--ink-soft); border: 1px dashed var(--rose-mauve); border-radius: 16px; }
.ne-form-field { display: flex; flex-direction: column; gap: .4rem; }
.ne-form-field label { font-size: .92rem; color: var(--ink-soft); }
.ne-form-field input, .ne-form-field textarea {
    width: 100%; padding: .9rem 1rem; border: 1px solid var(--rose-mauve); border-radius: 12px;
    background: #fff; font-family: var(--font-body); font-size: 1rem; color: var(--deep-rose);
    transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.ne-form-field input:focus, .ne-form-field textarea:focus {
    outline: none; border-color: var(--vintage-rose); box-shadow: 0 0 0 3px rgba(143,90,100,.16);
}
.ne-form-field input:user-invalid, .ne-form-field textarea:user-invalid {
    border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179,38,30,.14);
}
.ne-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ne-alert { padding: 1rem 1.2rem; border-radius: 12px; border: 1px solid var(--dusty-rose); margin: 0 0 1rem; }
.ne-alert--ok { background: var(--blush-haze); color: var(--deep-rose); }
.ne-alert--err { background: #f7f0f2; color: var(--vintage-rose); }

/* ---------- Footer ---------- */
.ne-footer { position: relative; text-align: center; padding: clamp(3rem,6vw,4rem) 0 2.5rem; background-color: var(--soft-ivory); color: var(--ink-soft); }
.ne-footer::before {
    content: ""; position: absolute; left: 0; right: 0; top: -150px; bottom: 0; z-index: 0;
    pointer-events: none;
    background: url('peony-wide.jpg') center 70% / cover no-repeat;
    opacity: .09;
    -webkit-mask-image: linear-gradient(to top, #000 25%, transparent 95%);
    mask-image: linear-gradient(to top, #000 25%, transparent 95%);
}
.ne-footer > .ne-container { position: relative; z-index: 1; }
.ne-section-divider { color: var(--rose-mauve); margin-bottom: .8rem; display: flex; justify-content: center; }
.ne-section-divider svg { width: 24px; height: 24px; }
.ne-footer .ne-script-text { margin: .2rem 0 0; }

.ne-social-links { display: flex; justify-content: center; align-items: center; gap: 1.1rem; margin-top: 1.6rem; }
.ne-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    color: var(--ink-soft); background: var(--blush-haze);
    transition: color .3s ease, background-color .3s ease, transform .3s var(--ease);
}
.ne-social-link svg { width: 18px; height: 18px; }
.ne-social-link:hover { color: var(--soft-ivory); background: var(--vintage-rose); transform: translateY(-3px); }

.ne-footer-base {
    display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
    margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(143,90,100,.22);
    text-align: left;
}
.ne-footer-copy { margin: 0; font-size: .85rem; color: var(--ink-soft); }
.ne-footer-credit { display: inline-flex; flex-direction: column; text-align: right; text-decoration: none; font-family: var(--font-body); opacity: .85; transition: opacity .3s ease; }
.ne-footer-credit:hover { opacity: 1; }
.ne-footer-credit-name {
    font-weight: 500; font-size: .9rem; letter-spacing: .05em;
    background: linear-gradient(100deg, transparent 40%, rgba(255,255,255,.9) 50%, transparent 60%),
                linear-gradient(90deg, var(--warm-gold), var(--vintage-rose));
    background-size: 200% 100%, 100% 100%;
    background-position: -100% 0, 0 0;
    background-clip: text; -webkit-background-clip: text; color: transparent; display: inline-block;
}
.ne-footer-credit-sub { color: var(--ink-soft); font-size: .75rem; margin-top: 2px; }
@media (prefers-reduced-motion: no-preference) {
    .ne-footer-credit:hover .ne-footer-credit-name { animation: ne-creditGlimmer 1.1s ease forwards; }
}
@keyframes ne-creditGlimmer {
    from { background-position: -100% 0, 0 0; }
    to   { background-position: 200% 0, 0 0; }
}

/* =========================================================================
   Reveal — visible by default; animates ONLY with JS + allowed motion
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
    html.js .ne-reveal:not(.visible) { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
}

/* =========================================================================
   Mobile — its own design, not a shrunk desktop
   ========================================================================= */
@media (max-width: 860px) {
    .ne-nav-toggle { display: flex; }
    .ne-header-inner { padding: .8rem 1.2rem; }
    .ne-nav-links {
        position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
        box-sizing: border-box;
        background: var(--soft-ivory); border-bottom: 0 solid rgba(196,154,160,.25);
        padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease), border-bottom-width .35s var(--ease);
    }
    .ne-nav-links.open { max-height: 320px; padding: .5rem 1.2rem 1rem; border-bottom-width: 1px; }
    .ne-nav-links a { padding: .8rem 0; }

    .ne-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; min-height: 0; }
    .ne-hero-copy { max-width: 100%; margin-inline: auto; }
    .ne-hero-h1 { font-size: clamp(2.6rem, 12vw, 4.4rem); }
    .ne-hero-lead { margin-inline: auto; }
    .ne-hero-figure { order: -1; padding-bottom: 2.5rem; }
    .ne-hero-podcast { position: static; width: 100%; max-width: 340px; margin: -2rem auto 0; }

    .ne-service-grid, .ne-about-grid, .ne-contact-grid, .ne-values { grid-template-columns: 1fr; }
    .ne-about-figure { max-width: 360px; margin-inline: auto; overflow: hidden; }
    .ne-pull-quote { padding-left: 1.2rem; }
    .ne-peony-band { aspect-ratio: 16/11; }

    .ne-footer-base { flex-direction: column; gap: 1.2rem; text-align: center; }
    .ne-footer-credit { text-align: center; align-items: center; }
}
