/* NH Elements — Page Styles & Design Tokens v1.0.0 */

/* ── Design tokens ────────────────────────────────────────────────── */
:root {
    /* Brand */
    --clay:       #7d3f28;
    --clay-dk:    #5c2d1a;
    --amber:      #d4956a;
    --amber-lt:   #e8b98a;
    --sage:       #6b8f72;
    --sage-lt:    #8aad91;
    --sage-pale:  #d6e8d8;
    --plum:       #7a6a8e;
    --plum-lt:    #a090b8;
    --plum-pale:  #ede8f5;
    /* Backgrounds */
    --warm-bg:    #f9f3ec;
    --parchment:  #f0e6d5;
    --linen:      #e8dac8;
    --pearl:      #fdfaf6;
    /* Text */
    --text:       #2a1c12;
    --text-2:     #3d2a1e;
    --muted:      #5c4030;
    --muted-lt:   #8a6a58;
    /* Typography */
    --font-head:  "Playfair Display", Georgia, serif;
    --font-body:  "DM Sans", system-ui, sans-serif;
}

/* ── Blur-fade animation ──────────────────────────────────────────── */

[data-nh-blur-fade] {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
    transition:
        opacity   0.6s ease,
        transform 0.6s ease,
        filter    0.6s ease;
    will-change: opacity, transform, filter;
}

[data-nh-blur-fade].is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

/* Editor override — never hide elements in Elementor editor */
.elementor-editor-active [data-nh-blur-fade] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* ── Shared section styles ────────────────────────────────────────── */

.nh-section {
    position: relative;
    overflow: hidden;
}

/* ── Shared button styles ─────────────────────────────────────────── */

.nh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.nh-btn--primary {
    background: var(--clay);
    color: var(--pearl);
    border-color: var(--clay);
}

.nh-btn--primary:hover {
    background: var(--clay-dk);
    border-color: var(--clay-dk);
    box-shadow: 0 4px 20px rgba(125,63,40,0.25);
}

.nh-btn--secondary {
    background: transparent;
    color: var(--clay);
    border-color: var(--clay);
}

.nh-btn--secondary:hover {
    background: var(--clay);
    color: var(--pearl);
}

.nh-btn--ghost {
    background: transparent;
    color: var(--muted);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.nh-btn--ghost:hover { color: var(--clay); }

.nh-btn--light {
    background: var(--pearl);
    color: var(--clay);
    border-color: var(--pearl);
}

.nh-btn--light:hover {
    background: var(--parchment);
    border-color: var(--parchment);
}

/* ── Shared typography helpers ────────────────────────────────────── */

.nh-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.nh-heading-serif {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.18;
    color: var(--text);
}

.nh-subhead {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--muted);
}

/* ── Shared card base ─────────────────────────────────────────────── */

.nh-card-base {
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,0.10);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.nh-card-base:hover {
    box-shadow: 0 12px 40px rgba(42,28,18,0.10);
    transform: translateY(-2px);
}

/* ── Responsive image fills ───────────────────────────────────────── */

.nh-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Beat Elementor's .elementor img { height: auto } without !important —
   double-class specificity (0,2,1) > Elementor's class+element (0,1,1) */
.nh-hero__right .nh-hero__img {
    height: 100%;
}

/* ── Shared link arrow style ──────────────────────────────────────── */

.nh-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nh-btn-link:hover { color: var(--clay); }
.nh-btn-link span  { transition: transform 0.2s; }
.nh-btn-link:hover span { transform: translateX(4px); }

/* ── Shared placeholder label ─────────────────────────────────────── */

.nh-ph-lbl {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

/* ── Utility ──────────────────────────────────────────────────────── */

.nh-text-clay   { color: var(--clay); }
.nh-text-amber  { color: var(--amber); }
.nh-text-muted  { color: var(--muted); }
.nh-text-pearl  { color: var(--pearl); }
.nh-bg-warm     { background: var(--warm-bg); }
.nh-bg-parchment{ background: var(--parchment); }
.nh-bg-clay     { background: var(--clay); }
.nh-bg-dark     { background: var(--text); }

/* ═══════════════════════════════════════════════════════════════════
   HERO WIDGET (nh-hero)
   ══════════════════════════════════════════════════════════════════ */

.nh-hero {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 100vh; /* default; overridden by Elementor hero_min_height control */
}

.nh-hero__left {
    background: var(--parchment);
    padding: 96px 72px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.nh-hero__left::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125,63,40,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.nh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 28px;
}

.nh-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(40px, 4.2vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 24px;
}

.nh-hero__heading em { font-style: italic; color: var(--clay); }

.nh-hero__desc {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 440px;
    margin-bottom: 40px;
}

.nh-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nh-hero__proof {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    align-self: flex-start;
    padding: 14px 20px;
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,0.12);
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(42,28,18,0.07);
}

.nh-hero__proof-avs {
    display: flex;
}

.nh-hero__proof-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--parchment);
    overflow: hidden;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-hero__proof-av:first-child { margin-left: 0; }

.nh-hero__proof-av--1 { background: linear-gradient(135deg, #2d5c40, #4a9060); }
.nh-hero__proof-av--2 { background: linear-gradient(135deg, #3d3060, #605090); }
.nh-hero__proof-av--3 { background: linear-gradient(135deg, #5c2d1a, #8a4520); }

.nh-hero__proof-av svg {
    width: 55%;
    height: 55%;
    opacity: 0.55;
}

.nh-hero__proof-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
    color: var(--muted);
}

.nh-hero__proof-text strong {
    display: block;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.nh-hero__right {
    position: relative;
    overflow: hidden;
}

.nh-hero__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 80px;
    background: var(--parchment);
    clip-path: ellipse(80px 52% at 0% 50%);
    z-index: 2;
}

.nh-hero--no-curve .nh-hero__right::before { display: none; }

.nh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nh-hero__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: radial-gradient(ellipse at 40% 35%, rgba(200,130,80,0.2) 0%, transparent 55%),
                linear-gradient(160deg, #1a0a05 0%, #4a1c0a 30%, #8c3510 60%, #c05020 85%, #d0703a 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
}

.nh-hero__float {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 5;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 32px 80px rgba(42,28,18,0.2);
    border: 1px solid rgba(125,63,40,0.1);
}

.nh-hero__float-row {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nh-hero__float-num {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
}

.nh-hero__float-lbl {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-lt);
    margin-top: 4px;
}

.nh-hero__float-div {
    width: 1px;
    height: 40px;
    background: var(--linen);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .nh-hero { grid-template-columns: 1fr; }
    .nh-hero__left { padding: 80px 48px; }
    .nh-hero__right { min-height: 380px; }
    .nh-hero__right::before { display: none; }
    .nh-hero__float { bottom: 24px; left: 24px; }
}

@media (max-width: 767px) {
    .nh-hero__left { padding: 60px 24px; }
    .nh-hero__heading { font-size: clamp(32px, 8vw, 44px); }
    .nh-hero__float { position: static; margin: 16px 24px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED SECTION LAYOUT
   ══════════════════════════════════════════════════════════════════ */

.nh-problem__inner,
.nh-difference__inner,
.nh-how__inner,
.nh-living__inner,
.nh-families__inner,
.nh-trust__inner,
.nh-cost__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 64px;
}

.s-head-center {
    text-align: center;
    margin-bottom: 52px;
}

.s-head-center .nh-eyebrow { justify-content: center; }

.s-head-center .nh-heading-serif {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 16px;
}

.s-head-center .nh-heading-serif em { font-style: italic; color: var(--clay); }

.s-head-center .nh-subhead {
    max-width: 560px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   THE REAL PROBLEM WIDGET (nh-problem)
   ══════════════════════════════════════════════════════════════════ */

.nh-problem { background: var(--warm-bg); }

.nh-problem__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}

.nh-problem__intro p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 6px;
}

.nh-problem__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(42,28,18,0.11);
}

.nh-problem__pane {
    padding: 52px 48px;
}

.nh-problem__pane--light { background: var(--parchment); }
.nh-problem__pane--dark  { background: var(--text); }

.nh-problem__pane-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 16px;
}

.nh-problem__pane-label--dark { color: var(--amber); }

.nh-problem__pane h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--text);
}

.nh-problem__pane--dark h3 { color: var(--pearl); }

.nh-problem__pane p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
}

.nh-problem__pane--dark p { color: rgba(253,250,246,0.7); }

.nh-problem__close {
    font-family: var(--font-head);
    font-size: 19px;
    font-style: italic;
    color: var(--pearl);
    margin-top: 22px;
    display: block;
}

.nh-problem__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 767px) {
    .nh-problem__split { grid-template-columns: 1fr; }
    .nh-problem__pane  { padding: 36px 28px; }
}

/* ═══════════════════════════════════════════════════════════════════
   THE DIFFERENCE WIDGET (nh-difference)
   ══════════════════════════════════════════════════════════════════ */

.nh-difference { background: var(--linen); }

.nh-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nh-diff-card {
    background: var(--pearl);
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 2px 14px rgba(42,28,18,0.07);
    transition: all 0.3s cubic-bezier(0.2,0,0,1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.nh-diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clay);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2,0,0,1);
    border-radius: inherit;
}

.nh-diff-card:hover::before { transform: translateY(0); }
.nh-diff-card:hover { transform: translateY(-4px); box-shadow: 0 20px 64px rgba(42,28,18,0.15); }

.nh-diff-card__icon {
    color: var(--clay);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    /* Propagate color to SVG fill so both FA icons and custom SVGs are colored */
    fill: currentColor;
}

.nh-diff-card__icon i {
    font-size: 28px;
    line-height: 1;
    display: block;
}

.nh-diff-card__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Elementor renders icon SVG paths — ensure fill follows color */
.nh-diff-card__icon svg path,
.nh-diff-card__icon svg circle,
.nh-diff-card__icon svg rect,
.nh-diff-card__icon svg polygon {
    fill: currentColor;
}

.nh-diff-card:hover .nh-diff-card__icon { color: var(--amber-lt); }

.nh-diff-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.25;
    color: var(--text);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.nh-diff-card p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--muted);
    font-weight: 300;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.nh-diff-card:hover h3 { color: var(--pearl); }
.nh-diff-card:hover p  { color: rgba(253,250,246,0.7); }

@media (max-width: 1024px) {
    .nh-diff-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .nh-diff-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS WIDGET (nh-how-it-works)
   ══════════════════════════════════════════════════════════════════ */

.nh-how { background: var(--warm-bg); }

.nh-steps-track {
    position: relative;
    max-width: 640px;
    margin: 60px auto 0;
}

.nh-steps-track::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 30px;
    bottom: 30px;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--amber) 0%, rgba(212,149,106,0.45) 60%, var(--linen) 100%);
    z-index: 0;
}

.nh-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    padding-bottom: 48px;
}

.nh-step:last-child { padding-bottom: 0; }

.nh-step__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--parchment);
    border: 1.5px solid rgba(125,63,40,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}

.nh-step:hover .nh-step__circle {
    background: var(--clay);
    border-color: var(--clay);
}

.nh-step__num {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--clay);
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.nh-step:hover .nh-step__num { color: var(--pearl); }

.nh-step__content { padding-top: 12px; }

.nh-step__content h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 7px;
    line-height: 1.25;
    color: var(--text);
}

.nh-step__content p {
    font-size: 15px;
    line-height: 1.82;
    color: var(--muted);
    font-weight: 300;
}

.nh-how__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════
   LIVING OPTIONS WIDGET (nh-living-options)
   ══════════════════════════════════════════════════════════════════ */

.nh-living { background: var(--parchment); }

.nh-living__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}

.nh-living__head .nh-heading-serif {
    font-size: clamp(34px, 3.8vw, 50px);
}

.nh-living__head .nh-heading-serif em { font-style: italic; color: var(--clay); }

.nh-living__head .nh-subhead { max-width: 300px; }

.nh-living__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px; /* default; overridden by Elementor card_gap control */
}

/* grid-template-columns is now fully controlled by Elementor's responsive cards_per_row control */

.nh-opt-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(42,28,18,0.11);
    transition: all 0.35s cubic-bezier(0.2,0,0,1);
    display: flex;
    flex-direction: column;
}

.nh-opt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(42,28,18,0.2);
}

.nh-opt-card__img {
    height: 200px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.nh-opt-card__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
}

.nh-opt-card__img-ph--1 {
    background: radial-gradient(ellipse at 40% 45%, rgba(200,168,107,0.18) 0%, transparent 55%),
                linear-gradient(145deg, #0b2237 0%, #1a3d55 50%, #2a6a7a 100%);
}
.nh-opt-card__img-ph--2 {
    background: radial-gradient(ellipse at 55% 40%, rgba(200,168,107,0.15) 0%, transparent 55%),
                linear-gradient(145deg, #1c2e18 0%, #2d5c28 50%, #3d7a38 100%);
}
.nh-opt-card__img-ph--3 {
    background: radial-gradient(ellipse at 50% 45%, rgba(180,140,180,0.15) 0%, transparent 55%),
                linear-gradient(145deg, #1a1a28 0%, #2d2850 50%, #3d3868 100%);
}

.nh-opt-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
}

.nh-opt-card__ph-lbl {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 8.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    white-space: nowrap;
}

.nh-opt-card__body {
    background: var(--pearl);
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nh-opt-card__body h3 {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.2;
    color: var(--text);
}

.nh-opt-card__body > p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-2);
    font-weight: 400;
    margin-bottom: 16px;
}

.nh-opt-card__feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nh-opt-card__feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-2);
    font-weight: 400;
}

.nh-opt-card__check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(107,143,114,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sage);
}

.nh-opt-card__check svg { width: 10px; height: 10px; }

.nh-opt-card__note {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--clay);
    font-style: italic;
    font-weight: 400;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(125,63,40,0.12);
}

.nh-opt-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--clay);
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.2s;
}

.nh-opt-card__link:hover { gap: 10px; }

@media (max-width: 1024px) {
    .nh-living__head { flex-direction: column; align-items: flex-start; }
    .nh-living__head .nh-subhead { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════
   FOR FAMILIES WIDGET (nh-families)
   ══════════════════════════════════════════════════════════════════ */

.nh-families { background: var(--warm-bg); }

.nh-families__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.nh-families__content .nh-heading-serif {
    font-size: clamp(32px, 3.3vw, 46px);
    margin-bottom: 24px;
}

.nh-families__content .nh-heading-serif em { font-style: italic; color: var(--clay); }

.nh-families__worry-list {
    list-style: none;
    margin-bottom: 24px;
}

.nh-families__worry-list li {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--linen);
    font-weight: 300;
    line-height: 1.65;
}

.nh-families__worry-list li:last-child { border-bottom: none; }

.nh-families__bridge {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text);
    line-height: 1.72;
    margin-bottom: 28px;
    font-weight: 400;
}

.nh-families__we-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-families__we-list {
    list-style: none;
}

.nh-families__we-list li {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text);
    padding: 11px 0;
    border-bottom: 1px solid var(--linen);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.nh-families__we-list li:last-child { border-bottom: none; }

.nh-we-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-families__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.nh-families__photo {
    height: 270px;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(42,28,18,0.11);
}

.nh-families__photo-ph {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 45% 40%, rgba(200,168,107,0.15) 0%, transparent 55%),
                linear-gradient(145deg, #1c2a20 0%, #2d5040 50%, #3d7060 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
}

.nh-families__partner {
    background: var(--text);
    padding: 28px 32px;
    border-radius: 0 0 14px 14px;
}

.nh-families__partner p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(253,250,246,0.55);
    margin-bottom: 6px;
    font-weight: 300;
}

.nh-families__partner-close {
    font-family: var(--font-head);
    font-size: 21px;
    color: var(--pearl);
    font-weight: 500;
    display: block;
}

@media (max-width: 1024px) {
    .nh-families__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST & CREDIBILITY WIDGET (nh-trust)
   ══════════════════════════════════════════════════════════════════ */

.nh-trust { background: var(--linen); }

.nh-trust__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.nh-trust--img-right .nh-trust__inner {
    direction: rtl;
}

.nh-trust--img-right .nh-trust__inner > * {
    direction: ltr;
}

.nh-trust__img-col {
    height: 480px;
    border-radius: 160px 160px 20px 20px;
    overflow: hidden;
}

.nh-trust__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nh-trust__img-ph {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 45% 40%, rgba(200,168,107,0.15) 0%, transparent 55%),
                linear-gradient(145deg, #1a1c2e 0%, #2d3050 50%, #3d4270 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    box-shadow: 0 32px 80px rgba(42,28,18,0.2);
}

.nh-trust__content .nh-heading-serif {
    font-size: clamp(32px, 3.3vw, 44px);
    margin-bottom: 16px;
}

.nh-trust__content .nh-heading-serif em { font-style: italic; color: var(--clay); }

.nh-trust__content .nh-subhead { margin-bottom: 8px; }

.nh-trust__values {
    list-style: none;
    margin-top: 24px;
}

.nh-trust__values li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-2);
    padding: 13px 0;
    border-bottom: 1px solid rgba(125,63,40,0.1);
    font-weight: 400;
    line-height: 1.65;
}

.nh-trust__values li:last-child { border-bottom: none; }

.nh-trust__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--amber);
    flex-shrink: 0;
    margin-top: 5px;
}

.nh-trust__close {
    background: var(--parchment);
    border: 1px solid rgba(125,63,40,0.12);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
    font-family: var(--font-head);
    font-size: 16px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .nh-trust__inner { grid-template-columns: 1fr; gap: 48px; }
    .nh-trust__img-col { height: 340px; border-radius: 20px; }
    .nh-trust--img-right .nh-trust__inner { direction: ltr; }
}

/* ═══════════════════════════════════════════════════════════════════
   COST & VALUE WIDGET (nh-cost)
   ══════════════════════════════════════════════════════════════════ */

.nh-cost { background: var(--warm-bg); }

.nh-cost__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.nh-cost__head .nh-heading-serif {
    font-size: clamp(30px, 3.3vw, 44px);
    margin-bottom: 14px;
}

.nh-cost__head .nh-heading-serif em { font-style: italic; color: var(--clay); }

.nh-cost__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nh-cost__box {
    border-radius: 14px;
    padding: 32px 30px;
}

.nh-cost__box--default {
    background: var(--parchment);
    border: 1px solid rgba(125,63,40,0.1);
}

.nh-cost__box--nh { background: var(--clay); }

.nh-cost__box-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(125,63,40,0.1);
    color: var(--muted);
}

.nh-cost__box--nh .nh-cost__box-label {
    color: rgba(253,250,246,0.6);
    border-color: rgba(253,250,246,0.15);
}

.nh-cost__box ul { list-style: none; }

.nh-cost__box ul li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    padding: 11px 0;
    border-bottom: 1px solid rgba(125,63,40,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    line-height: 1.5;
}

.nh-cost__box ul li:last-child { border-bottom: none; }

.nh-cost__box--nh ul li {
    color: rgba(253,250,246,0.82);
    border-color: rgba(253,250,246,0.12);
}

.nh-cost__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nh-cost__box--default .nh-cost__icon { color: var(--muted-lt); }
.nh-cost__box--nh      .nh-cost__icon { color: var(--amber-lt); }

.nh-cost__footnote {
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-lt);
    margin-top: 20px;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 767px) {
    .nh-cost__cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION WIDGET (nh-cta)
   ══════════════════════════════════════════════════════════════════ */

.nh-cta-section {
    background: var(--clay-dk);
    text-align: center;
}

.nh-cta-section__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 110px 64px;
}

.nh-cta-section__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(212,149,106,0.75);
    font-weight: 400;
    margin-bottom: 20px;
}

.nh-cta-section__heading {
    font-family: var(--font-head);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 400;
    color: var(--pearl);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.nh-cta-section__heading em { font-style: italic; color: var(--amber); }

.nh-cta-section__body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: rgba(253,250,246,0.65);
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.nh-cta-section__btn {
    display: inline-block;
    background: var(--amber);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.nh-cta-section__btn:hover {
    background: var(--amber-lt);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(212,149,106,0.35);
}

.nh-cta-section__close {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(253,250,246,0.45);
    margin-top: 22px;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 767px) {
    .nh-cta-section__inner { padding: 80px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED SECTION RESPONSIVE PADDING
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .nh-problem__inner,
    .nh-difference__inner,
    .nh-how__inner,
    .nh-living__inner,
    .nh-cost__inner,
    .nh-situation__inner,
    .nh-conv__inner {
        padding: 80px 32px;
    }

    .nh-families__inner,
    .nh-trust__inner {
        padding: 80px 32px;
    }
}

@media (max-width: 767px) {
    .nh-problem__inner,
    .nh-difference__inner,
    .nh-how__inner,
    .nh-living__inner,
    .nh-families__inner,
    .nh-trust__inner,
    .nh-cost__inner {
        padding: 60px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   START HERE HERO WIDGET (nh-start-hero)
   ══════════════════════════════════════════════════════════════════ */

.nh-start-hero {
    background: var(--parchment);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.nh-start-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125,63,40,.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Image/overlay bg modes */
.nh-start-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Dark text mode — override with light defaults when toggled on */
.nh-start-hero--dark .nh-start-hero__pre     { color: rgba(253,250,246,0.7); }
.nh-start-hero--dark .nh-start-hero__heading  { color: var(--pearl); }
.nh-start-hero--dark .nh-start-hero__heading em { color: var(--amber-lt); }
.nh-start-hero--dark .nh-start-hero__sub      { color: rgba(253,250,246,0.65); }
.nh-start-hero--dark .nh-start-hero__guide    { color: var(--amber-lt); }
.nh-start-hero--dark .nh-start-hero__ornament { background: linear-gradient(to bottom, transparent, rgba(253,250,246,.25), transparent); }

.nh-start-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 48px 96px;
    position: relative;
    z-index: 1;
}

.nh-start-hero__pre {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: .06em;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 20px;
}

.nh-start-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 28px;
}

.nh-start-hero__heading em { font-style: italic; color: var(--clay); }

.nh-start-hero__sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 16px;
}

.nh-start-hero__guide {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--clay);
    font-weight: 500;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nh-start-hero__guide::before { content: '\2193'; font-size: 16px; }

.nh-start-hero__ornament {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(125,63,40,.2), transparent);
    margin: 32px auto 0;
}

@media (max-width: 767px) {
    .nh-start-hero__inner { padding: 72px 24px 72px; }
    .nh-start-hero__heading { font-size: clamp(38px, 10vw, 60px); }
}

/* ═══════════════════════════════════════════════════════════════════
   NORMALIZE SECTION WIDGET (nh-normalize)
   ══════════════════════════════════════════════════════════════════ */

.nh-normalize { background: var(--warm-bg); }

.nh-normalize__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 96px 48px;
}

/* Two-column layout when image is active */
.nh-normalize--with-image .nh-normalize__inner {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nh-normalize--img-left .nh-normalize__inner  { direction: ltr; }
.nh-normalize--img-right .nh-normalize__inner { direction: ltr; }

.nh-normalize--img-left .nh-normalize__img-col  { order: -1; }
.nh-normalize--img-right .nh-normalize__img-col { order: 1; }

.nh-normalize__img-col {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.nh-normalize__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Beat Elementor height: auto */
.nh-normalize__img-col .nh-normalize__img { height: 100%; }

.nh-normalize__img-ph {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 45% 40%, rgba(200,168,107,0.15) 0%, transparent 55%),
                linear-gradient(145deg, #1c2a20 0%, #2d5040 50%, #3d7060 100%);
}

/* CTA */
.nh-normalize__cta { margin-top: 28px; }

/* Shadow modifiers */
.nh-normalize--shadow-subtle .nh-normalize__q-block { box-shadow: 0 2px 14px rgba(42,28,18,.07); }
.nh-normalize--shadow-medium .nh-normalize__q-block { box-shadow: 0 8px 28px rgba(42,28,18,.12); }

@media (max-width: 1024px) {
    .nh-normalize--with-image .nh-normalize__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .nh-normalize__img-col { height: 300px; }
    .nh-normalize--img-left .nh-normalize__img-col,
    .nh-normalize--img-right .nh-normalize__img-col { order: 0; }
}

.nh-normalize__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-normalize__heading {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 24px;
}

.nh-normalize__heading em { font-style: italic; color: var(--clay); }

.nh-normalize__body p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.88;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 12px;
}

.nh-normalize__body p:last-child { margin-bottom: 28px; }

.nh-normalize__q-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.nh-normalize__q-block {
    background: var(--parchment);
    border-radius: 10px;
    padding: 20px 22px;
    border-left: 3px solid rgba(125,63,40,.2);
    transition: border-color .25s, background .25s, box-shadow .25s;
}

.nh-normalize__q-block:hover {
    border-left-color: var(--amber);
    background: var(--pearl);
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
}

.nh-normalize__q-block p {
    font-family: var(--font-head);
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: var(--text);
    line-height: 1.4;
}

.nh-normalize__close {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--clay);
    font-weight: 500;
    letter-spacing: .02em;
    padding-top: 8px;
}

@media (max-width: 767px) {
    .nh-normalize__inner { padding: 64px 24px; }
    .nh-normalize__q-grid { grid-template-columns: 1fr; }
}

/* ── normalize__inner shared responsive override for two-col mode ── */
@media (max-width: 767px) {
    .nh-normalize--with-image .nh-normalize__inner { padding: 64px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SITUATION CARDS WIDGET (nh-situation)
   ══════════════════════════════════════════════════════════════════ */

.nh-situation { background: var(--linen); }

.nh-situation__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 48px;
}

.nh-situation__head {
    text-align: center;
    margin-bottom: 56px;
}

.nh-situation__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-situation__heading {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--text);
}

.nh-situation__heading em { font-style: italic; color: var(--clay); }

.nh-situation__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* ── Situation cards ─────────────────────────────────────────────── */

.nh-sit-card {
    background: var(--pearl);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.2,0,0,1), box-shadow .3s;
    cursor: default;
}

.nh-sit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 64px rgba(42,28,18,.15);
}

.nh-sit-card__top {
    padding: 32px 32px 0;
    position: relative;
}

.nh-sit-card__accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

/* Accent colors */
.nh-sit-card--amber .nh-sit-card__accent-bar { background: var(--amber); }
.nh-sit-card--sage  .nh-sit-card__accent-bar { background: var(--sage); }
.nh-sit-card--plum  .nh-sit-card__accent-bar { background: var(--plum); }

.nh-sit-card__num {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    margin-bottom: 16px;
}

.nh-sit-card--amber .nh-sit-card__num { color: var(--amber); }
.nh-sit-card--sage  .nh-sit-card__num { color: var(--sage); }
.nh-sit-card--plum  .nh-sit-card__num { color: var(--plum); }

.nh-sit-card__title {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--text);
}

.nh-sit-card__intro {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.nh-sit-card__body {
    padding: 20px 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nh-sit-card__bullets {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.nh-sit-card__bullets li {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    padding: 7px 0;
    border-bottom: 1px solid rgba(42,28,18,.06);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.nh-sit-card__bullets li:last-child { border-bottom: none; }

.nh-sit-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nh-sit-card--amber .nh-sit-card__dot { background: var(--amber); }
.nh-sit-card--sage  .nh-sit-card__dot { background: var(--sage); }
.nh-sit-card--plum  .nh-sit-card__dot { background: var(--plum); }

.nh-sit-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background .25s;
    align-self: flex-start;
}

.nh-sit-card__cta span { transition: transform .2s; }
.nh-sit-card:hover .nh-sit-card__cta span { transform: translateX(4px); }

.nh-sit-card--amber .nh-sit-card__cta { background: rgba(212,149,106,.12); color: var(--clay); }
.nh-sit-card--amber .nh-sit-card__cta:hover { background: rgba(212,149,106,.22); }
.nh-sit-card--sage  .nh-sit-card__cta { background: rgba(107,143,114,.12); color: #3d6644; }
.nh-sit-card--sage  .nh-sit-card__cta:hover { background: rgba(107,143,114,.22); }
.nh-sit-card--plum  .nh-sit-card__cta { background: rgba(122,106,142,.12); color: #55406a; }
.nh-sit-card--plum  .nh-sit-card__cta:hover { background: rgba(122,106,142,.22); }

/* Shadow modifiers */
.nh-situation--shadow-none   .nh-sit-card { box-shadow: none; }
.nh-situation--shadow-subtle .nh-sit-card { box-shadow: 0 2px 14px rgba(42,28,18,.07); }
.nh-situation--shadow-medium .nh-sit-card { box-shadow: 0 8px 36px rgba(42,28,18,.11); }
.nh-situation--shadow-strong .nh-sit-card { box-shadow: 0 20px 64px rgba(42,28,18,.15); }

@media (max-width: 1024px) {
    .nh-situation__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .nh-situation__inner { padding: 64px 24px; }
    .nh-situation__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   REFRAME SECTION WIDGET (nh-reframe)
   ══════════════════════════════════════════════════════════════════ */

.nh-reframe { background: var(--parchment); }

.nh-reframe__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 96px 48px;
}

.nh-reframe__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-reframe__heading {
    font-family: var(--font-head);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--text);
    margin-bottom: 32px;
}

.nh-reframe__heading em { font-style: italic; color: var(--clay); }

.nh-reframe__intro {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.88;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 10px;
}

.nh-reframe__pivot {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
}

.nh-reframe__arrow-list {
    list-style: none;
    margin-bottom: 36px;
}

.nh-reframe__arrow-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    font-weight: 400;
    padding: 14px 0;
    border-bottom: 1px solid rgba(125,63,40,.1);
    line-height: 1.55;
}

.nh-reframe__arrow-list li:first-child { padding-top: 0; }
.nh-reframe__arrow-list li:last-child  { border-bottom: none; }

.nh-reframe__arrow-mark {
    font-family: var(--font-head);
    font-size: 22px;
    font-style: italic;
    color: var(--clay);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
}

.nh-reframe__close {
    background: var(--pearl);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(125,63,40,.1);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
}

.nh-reframe__close strong { color: var(--clay); font-weight: 500; }

@media (max-width: 767px) {
    .nh-reframe__inner { padding: 64px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONVERSATION SECTION WIDGET (nh-conversation)
   ══════════════════════════════════════════════════════════════════ */

.nh-conv { background: var(--warm-bg); }

.nh-conv__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 96px 48px;
}

.nh-conv__head { margin-bottom: 52px; }

.nh-conv__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-conv__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 16px;
}

.nh-conv__heading em { font-style: italic; color: var(--clay); }

.nh-conv__intro {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
}

.nh-conv__contrast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.nh-conv__box {
    border-radius: 14px;
    padding: 32px 30px;
}

.nh-conv__box--left {
    background: var(--parchment);
    border: 1px solid rgba(125,63,40,.1);
}

.nh-conv__box--right { background: var(--clay); }

.nh-conv__box-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(125,63,40,.1);
    color: var(--muted);
}

.nh-conv__box-label--dark {
    color: rgba(253,250,246,.55);
    border-color: rgba(253,250,246,.15);
}

.nh-conv__box-list {
    list-style: none;
}

.nh-conv__box-list li {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(125,63,40,.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 300;
    line-height: 1.6;
}

.nh-conv__box-list li:last-child { border-bottom: none; }

.nh-conv__box-list--left li { color: var(--muted); }
.nh-conv__box-list--right li { color: rgba(253,250,246,.75); border-color: rgba(253,250,246,.12); }

.nh-conv__marker {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 14px;
    line-height: 1;
}

.nh-conv__marker--left  { color: var(--muted-lt); }
.nh-conv__marker--right { color: var(--amber-lt); }

.nh-conv__close { text-align: center; }

.nh-conv__pivot {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 24px;
}

.nh-conv__mantras {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nh-conv__mantra { text-align: center; }

.nh-conv__mantra-strong {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--clay);
    font-style: normal;
}

.nh-conv__mantra-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-lt);
    font-weight: 300;
    margin-top: 4px;
}

/* Shadow modifiers */
.nh-conv--shadow-subtle .nh-conv__box { box-shadow: 0 2px 14px rgba(42,28,18,.07); }
.nh-conv--shadow-medium .nh-conv__box { box-shadow: 0 8px 36px rgba(42,28,18,.11); }

@media (max-width: 767px) {
    .nh-conv__inner   { padding: 64px 24px; }
    .nh-conv__contrast { grid-template-columns: 1fr; }
    .nh-conv__mantras  { gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SOLUTION WIDGET (nh-solution)
   ══════════════════════════════════════════════════════════════════ */

.nh-solution { background: var(--parchment); }

.nh-solution__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Image column */
.nh-solution__img-col { padding-bottom: 36px; }

.nh-solution__img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 64px rgba(42,28,18,.15);
}

.nh-solution__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
}

.nh-solution__img-inner {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.nh-solution__img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Beat Elementor height: auto */
.nh-solution__img-inner .nh-solution__img { height: 100%; }

.nh-solution__img-ph {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 45% 40%, rgba(200,150,80,.15) 0%, transparent 55%),
        linear-gradient(145deg, #0b2237 0%, #1a3d55 50%, #2a6a7a 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.nh-solution__float {
    position: absolute;
    bottom: -28px;
    right: 20px;
    z-index: 10;
    background: rgba(253,250,246,.97);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 32px 80px rgba(42,28,18,.2);
    border: 1px solid rgba(125,63,40,.1);
    min-width: 140px;
}

.nh-solution__float-num {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
}

.nh-solution__float-lbl {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-lt);
    margin-top: 4px;
}

/* Content column */
.nh-solution__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-solution__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 20px;
}

.nh-solution__heading em { font-style: italic; color: var(--clay); }

.nh-solution__body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 28px;
}

/* Feature list */
.nh-solution__feat-list { list-style: none; }

.nh-solution__feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(125,63,40,.1);
}

.nh-solution__feat-item:last-child { border-bottom: none; }

.nh-solution__feat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(125,63,40,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clay);
    fill: currentColor;
    margin-top: 1px;
    transition: background .25s;
}

.nh-solution__feat-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nh-solution__feat-icon svg path,
.nh-solution__feat-icon svg circle,
.nh-solution__feat-icon svg rect,
.nh-solution__feat-icon svg polygon { fill: currentColor; }

.nh-solution__feat-icon i { font-size: 18px; line-height: 1; }

.nh-solution__feat-text { flex: 1; }

.nh-solution__feat-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.nh-solution__feat-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.65;
}

/* Image on right: swap column order */
.nh-solution--img-right .nh-solution__img-col { order: 2; }
.nh-solution--img-right .nh-solution__content  { order: 1; }

@media (max-width: 1024px) {
    .nh-solution__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 32px;
    }
    .nh-solution__img-col { padding-bottom: 36px; }
    /* reset order on mobile — always stack image on top */
    .nh-solution--img-right .nh-solution__img-col { order: 0; }
    .nh-solution--img-right .nh-solution__content  { order: 0; }
}

@media (max-width: 767px) {
    .nh-solution__inner { padding: 60px 20px; }
    .nh-solution__img-inner { height: 280px; }
}

/* ═══════════════════════════════════════════════════════════════════
   REASSURANCE WIDGET (nh-reassurance)
   ══════════════════════════════════════════════════════════════════ */

.nh-reassurance-section { background: var(--linen); }

.nh-reassurance__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Left column */
.nh-reassurance__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-reassurance__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.01em;
    color: var(--text);
    margin-bottom: 20px;
}

.nh-reassurance__heading em { font-style: italic; color: var(--clay); }

.nh-reassurance__body p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 12px;
}

.nh-reassurance__body p:last-child { margin-bottom: 0; }

.nh-reassurance__pullquote {
    background: var(--parchment);
    border: 1px solid rgba(125,63,40,.12);
    border-left: 4px solid var(--amber);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin-top: 28px;
}

.nh-reassurance__pullquote p {
    font-family: var(--font-head);
    font-size: 19px;
    font-style: italic;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 400;
}

/* Right column — reassurance card */
.nh-reassurance__card {
    background: var(--pearl);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.nh-reassurance__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(125,63,40,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clay);
    fill: currentColor;
}

.nh-reassurance__card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.nh-reassurance__card-icon svg path,
.nh-reassurance__card-icon svg circle,
.nh-reassurance__card-icon svg rect,
.nh-reassurance__card-icon svg polygon { fill: currentColor; }

.nh-reassurance__card-icon i { font-size: 24px; line-height: 1; }

.nh-reassurance__card-body h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--text);
}

.nh-reassurance__card-body p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
}

/* Trust strip */
.nh-reassurance__trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--pearl);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    border: 1px solid rgba(125,63,40,.1);
}

.nh-reassurance__trust-item {
    padding: 24px 20px;
    text-align: center;
}

.nh-reassurance__trust-item + .nh-reassurance__trust-item {
    border-left: 1px solid var(--linen);
}

.nh-reassurance__trust-icon {
    color: var(--amber);
    fill: currentColor;
    margin: 0 auto 10px;
    display: block;
    width: fit-content;
}

.nh-reassurance__trust-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.nh-reassurance__trust-icon svg path,
.nh-reassurance__trust-icon svg circle,
.nh-reassurance__trust-icon svg rect,
.nh-reassurance__trust-icon svg polygon { fill: currentColor; }

.nh-reassurance__trust-icon i { font-size: 22px; }

.nh-reassurance__trust-stat {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
    margin-bottom: 4px;
}

.nh-reassurance__trust-lbl {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .nh-reassurance__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 32px;
    }
}

@media (max-width: 767px) {
    .nh-reassurance__inner { padding: 60px 20px; }
    .nh-reassurance__card { flex-direction: column; gap: 16px; padding: 28px 24px; }
    .nh-reassurance__trust-strip { grid-template-columns: 1fr; }
    .nh-reassurance__trust-item + .nh-reassurance__trust-item {
        border-left: none;
        border-top: 1px solid var(--linen);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FLOOR PLANS WIDGET (nh-floor-plans)
   ══════════════════════════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────────────────────────── */

.nh-fp__hero {
    background: var(--parchment);
    padding: 88px 64px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--linen);
}

.nh-fp__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(125,63,40,.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.nh-fp__eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--clay);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.nh-fp__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-fp__hero-heading {
    font-family: var(--font-head);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    position: relative;
    color: var(--text);
}

.nh-fp__hero-heading em { font-style: italic; color: var(--clay); }

.nh-fp__hero-desc {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
}

/* Stats strip — slideUp entrance */
@keyframes nh-fp-slide-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nh-fp__stats {
    display: inline-flex;
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,.12);
    border-radius: 14px;
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
    overflow: hidden;
    position: relative;
    animation: nh-fp-slide-up .8s .3s ease both;
}

.nh-fp__stat-item {
    padding: 16px 26px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nh-fp__stat-item + .nh-fp__stat-item {
    border-left: 1px solid var(--linen);
}

.nh-fp__stat-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
}

.nh-fp__stat-lbl {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-lt);
}

/* ── Filter Bar ──────────────────────────────────────────────────── */

.nh-fp__filter-bar {
    background: var(--pearl);
    border-bottom: 1px solid var(--linen);
    padding: 0 64px;
    display: flex;
    position: sticky;
    top: var(--nh-hdr-h-sticky, 64px);
    z-index: 100;
    overflow-x: auto;
}

.nh-fp__filter-btn {
    padding: 18px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--muted);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.nh-fp__filter-btn.active,
.nh-fp__filter-btn:hover {
    color: var(--clay);
    border-bottom-color: var(--amber);
}

/* ── Plans Section ───────────────────────────────────────────────── */

.nh-fp__section {
    background: var(--warm-bg);
    padding: 80px 64px;
}

.nh-fp__inner {
    max-width: 1060px;
    margin: 0 auto;
}

.nh-fp__section-head { margin-bottom: 52px; }

.nh-fp__section-label {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.nh-fp__section-heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text);
}

.nh-fp__section-heading em { font-style: italic; color: var(--clay); }

.nh-fp__section-desc {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 580px;
    margin-top: 12px;
}

/* ── Plans Grid ──────────────────────────────────────────────────── */

.nh-fp__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.nh-fp--cols-3 .nh-fp__grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Card wrap — magic-card glow + equal-height */
.nh-fp__card-wrap {
    position: relative;
    border-radius: 17px;
    height: 100%;
}

.nh-fp__card-wrap::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212,149,106,.18) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
    z-index: 0;
}

.nh-fp__card-wrap:hover::after { opacity: 1; }

/* Wide card overrides */
.nh-fp__card-wrap--wide {
    grid-column: 1 / -1;
    height: auto;
}

/* Plan card */
.nh-fp__card {
    background: var(--pearl);
    border-radius: 16px;
    border: 1px solid rgba(125,63,40,.1);
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    overflow: hidden;
    transition: box-shadow .3s cubic-bezier(.2,0,0,1), transform .3s cubic-bezier(.2,0,0,1);
    cursor: default;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    height: 100%;
}

.nh-fp__card:hover {
    box-shadow: 0 20px 64px rgba(42,28,18,.15);
    transform: translateY(-4px);
}

/* Standard card image — 5:7 aspect ratio via padding-top */
.nh-fp__img-wrap {
    position: relative;
    width: 100%;
    padding-top: 140%; /* 5:7 default — overrideable via style control */
    overflow: hidden;
    cursor: default;
}

[data-fp-lightbox],
[data-fp-lightbox-trigger] {
    cursor: zoom-in;
}

.nh-fp__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nh-fp__img-ph {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--linen) 0%, var(--parchment) 100%);
}

.nh-fp__img-ph-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nh-fp__img-icon {
    opacity: .2;
    color: var(--muted);
}

.nh-fp__img-lbl {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-lt);
    font-weight: 400;
}

.nh-fp__lightbox-hint {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    background: rgba(0,0,0,.22);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 50px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
}

.nh-fp__card-wrap:hover .nh-fp__lightbox-hint { opacity: 1; }

/* Badge */
.nh-fp__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
}

.nh-fp__badge--clay  { background: var(--clay); color: var(--pearl); }
.nh-fp__badge--amber { background: var(--amber); color: var(--text-2); }

/* Card body */
.nh-fp__body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nh-fp__plan-type {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.nh-fp__plan-name {
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text);
}

.nh-fp__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 16px;
}

.nh-fp__spec {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nh-fp__spec::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

/* Room list */
.nh-fp__rooms { margin-bottom: 18px; }

.nh-fp__room-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(125,63,40,.06);
}

.nh-fp__room-row:last-child { border-bottom: none; }

.nh-fp__room-name { color: var(--muted); font-weight: 400; }
.nh-fp__room-dim  { color: var(--muted-lt); font-weight: 300; font-variant-numeric: tabular-nums; }

/* Wide card description */
.nh-fp__plan-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted-lt);
    font-weight: 300;
    margin-bottom: 0;
}

/* Card footer */
.nh-fp__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--linen);
}

.nh-fp__price {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
}

.nh-fp__price-note {
    font-size: 11px;
    color: var(--muted-lt);
    font-weight: 300;
    margin-top: 1px;
}

.nh-fp__btn-ghost {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--clay);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1.5px solid rgba(125,63,40,.28);
    border-radius: 50px;
    padding: 7px 16px;
    transition: all .2s;
    white-space: nowrap;
    background: none;
    cursor: pointer;
}

.nh-fp__btn-ghost:hover {
    background: var(--clay);
    color: var(--pearl);
    border-color: var(--clay);
}

.nh-fp__btn-ghost--sm {
    font-size: 13px;
    padding: 10px 20px;
}

/* ── Wide card layout ────────────────────────────────────────────── */

.nh-fp__card--wide {
    flex-direction: row;
    height: auto;
}

.nh-fp__card--wide .nh-fp__img-wrap {
    width: 38%;
    flex-shrink: 0;
    padding-top: 0;
    aspect-ratio: 5 / 3;
    position: relative;
    overflow: hidden;
    align-self: stretch;
}

.nh-fp__card--wide .nh-fp__img-ph { position: absolute; inset: 0; }
.nh-fp__card--wide .nh-fp__img-ph-inner { position: absolute; inset: 0; }

.nh-fp__card--wide .nh-fp__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 0 40px;
    padding: 36px 40px;
    flex: 1;
}

.nh-fp__card--wide .nh-fp__plan-type { grid-column: 1 / -1; }
.nh-fp__card--wide .nh-fp__plan-name { grid-column: 1 / -1; font-size: 24px; margin-bottom: 18px; }
.nh-fp__card--wide .nh-fp__specs     { grid-column: 1 / -1; margin-bottom: 20px; }
.nh-fp__card--wide .nh-fp__rooms     { grid-column: 1; margin-bottom: 0; }
.nh-fp__card--wide .nh-fp__plan-desc { grid-column: 2; align-self: start; }
.nh-fp__card--wide .nh-fp__footer    { grid-column: 1 / -1; margin-top: 24px; }

/* ── Disclaimer ──────────────────────────────────────────────────── */

.nh-fp__disclaimer {
    font-size: 12px;
    color: var(--muted-lt);
    font-weight: 300;
    margin-top: 20px;
    font-style: italic;
}

/* ── Compare callout ─────────────────────────────────────────────── */

.nh-fp__compare-wrap {
    margin-top: 52px;
}

.nh-fp__compare-box {
    background: var(--parchment);
    border-radius: 18px;
    border: 1px solid var(--linen);
    padding: 44px 52px;
}

.nh-fp__compare-box h3 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text);
}

.nh-fp__compare-box h3 em { font-style: italic; color: var(--clay); }

.nh-fp__compare-box p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
}

.nh-fp__compare-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 36px;
    align-items: center;
}

.nh-fp__btn-primary {
    display: inline-block;
    background: var(--clay);
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s;
}

.nh-fp__btn-primary:hover {
    background: var(--clay-dk);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(125,63,40,.3);
}

/* ── Lightbox Modal ──────────────────────────────────────────────── */

.nh-fp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-fp-lightbox[hidden] { display: none; }

.nh-fp-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42,28,18,.75);
    backdrop-filter: blur(4px);
}

.nh-fp-lightbox__panel {
    position: relative;
    background: var(--pearl);
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(42,28,18,.3);
    max-width: 860px;
    width: calc(100% - 40px);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 1;
    animation: nh-fp-slide-up .3s ease both;
}

.nh-fp-lightbox__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(42,28,18,.08);
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.nh-fp-lightbox__close:hover { background: rgba(42,28,18,.15); }

.nh-fp-lightbox__body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.nh-fp-lightbox__img {
    width: 100%;
    display: block;
    border-radius: 20px 0 0 20px;
    object-fit: contain;
    max-height: calc(100vh - 80px);
    background: var(--linen);
}

.nh-fp-lightbox__info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nh-fp-lightbox__name {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 500;
    color: var(--text);
    padding-top: 8px;
}

.nh-fp-lightbox__rooms {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nh-fp-lightbox__room-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(125,63,40,.07);
}

.nh-fp-lightbox__room-row:last-child { border-bottom: none; }

.nh-fp-lightbox__room-name { color: var(--muted); font-weight: 400; }
.nh-fp-lightbox__room-dim  { color: var(--muted-lt); font-weight: 300; font-variant-numeric: tabular-nums; }

/* Editor: show placeholder gracefully */
.elementor-editor-active .nh-fp-lightbox { display: none !important; }

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .nh-fp__hero     { padding: 72px 40px 60px; }
    .nh-fp__section  { padding: 64px 40px; }
    .nh-fp__filter-bar { padding: 0 32px; top: var(--nh-hdr-h-sticky, 64px); }
    .nh-fp--cols-3 .nh-fp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .nh-fp__hero          { padding: 60px 24px 48px; }
    .nh-fp__stats         { flex-wrap: wrap; }
    .nh-fp__stat-item     { padding: 12px 20px; }
    .nh-fp__filter-bar    { padding: 0 20px; top: var(--nh-hdr-h-mobile, 64px); }
    .nh-fp__section       { padding: 48px 20px; }
    .nh-fp__grid          { grid-template-columns: 1fr; gap: 20px; }
    .nh-fp--cols-3 .nh-fp__grid { grid-template-columns: 1fr; }
    .nh-fp__card-wrap--wide { height: auto; }
    .nh-fp__card--wide    { flex-direction: column; }
    .nh-fp__card--wide .nh-fp__img-wrap {
        width: 100%;
        aspect-ratio: 16 / 9;
        padding-top: 0;
        align-self: auto;
    }
    .nh-fp__card--wide .nh-fp__body {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 0;
    }
    .nh-fp__card--wide .nh-fp__rooms     { grid-column: 1; }
    .nh-fp__card--wide .nh-fp__plan-desc { grid-column: 1; margin-top: 12px; }
    .nh-fp__card--wide .nh-fp__footer    { grid-column: 1; }
    .nh-fp__compare-box   { padding: 32px 28px; }
    .nh-fp-lightbox__body { grid-template-columns: 1fr; }
    .nh-fp-lightbox__img  { border-radius: 20px 20px 0 0; max-height: 55vw; }
    .nh-fp-lightbox__info { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT WIDGET (nh-contact)
   ══════════════════════════════════════════════════════════════════ */

/* ── Page Hero ───────────────────────────────────────────────────── */

.nh-contact__hero {
    background: var(--parchment);
    padding: 88px 64px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--linen);
}

.nh-contact__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(125,63,40,.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.nh-contact__hero-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--clay);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.nh-contact__hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-contact__hero-heading {
    font-family: var(--font-head);
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    position: relative;
    color: var(--text);
}

.nh-contact__hero-heading em { font-style: italic; color: var(--clay); }

.nh-contact__hero-desc {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}

/* ── Quick Strip ─────────────────────────────────────────────────── */

.nh-contact__strip {
    background: var(--clay-dk);
    padding: 22px 64px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.nh-contact__strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 44px;
    color: rgba(253,250,246,.75);
    font-size: 14px;
    font-weight: 300;
}

.nh-contact__strip-item + .nh-contact__strip-item {
    border-left: 1px solid rgba(253,250,246,.12);
}

.nh-contact__strip-icon {
    width: 20px;
    height: 20px;
    color: var(--amber);
    fill: none;
    flex-shrink: 0;
}

.nh-contact__strip-item strong { color: var(--pearl); font-weight: 500; }

.nh-contact__strip-item a {
    color: var(--amber-lt);
    text-decoration: none;
    transition: color .2s;
}

.nh-contact__strip-item a:hover { color: var(--pearl); }

/* ── Main 2-col grid ─────────────────────────────────────────────── */

.nh-contact__main {
    background: var(--warm-bg);
    padding: 80px 64px;
}

.nh-contact__grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: start;
}

/* ── Form Card ───────────────────────────────────────────────────── */

.nh-contact__form-card {
    background: var(--pearl);
    border-radius: 20px;
    padding: 52px;
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
    border: 1px solid rgba(125,63,40,.08);
}

.nh-contact__form-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.nh-contact__form-heading {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text);
}

.nh-contact__form-heading em { font-style: italic; color: var(--clay); }

.nh-contact__form-sub {
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 36px;
}

/* The actual form is rendered by CF7/WPForms shortcode — scope overrides here */
.nh-contact__form-wrap .wpcf7-form,
.nh-contact__form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nh-contact__form-note {
    font-size: 12px;
    color: var(--muted-lt);
    font-weight: 300;
    margin-top: 12px;
    line-height: 1.65;
}

/* Map card placeholder (shown in editor; iframe shown on frontend) */
.nh-contact__map-card {
    background: var(--linen);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(125,63,40,.1);
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    height: 240px;
    display: flex;
    flex-direction: column;
}

.nh-contact__map-iframe {
    width: 100%;
    flex: 1;
    min-height: 0;
    border: none;
    display: block;
}

.nh-contact__map-ph {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(160deg, #e4d8c4, #d5c6af);
    position: relative;
    overflow: hidden;
}

.nh-contact__map-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(125,63,40,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,63,40,.08) 1px, transparent 1px);
    background-size: 28px 28px;
}

.nh-contact__map-pin {
    width: 30px;
    height: 30px;
    background: var(--clay);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(125,63,40,.4);
}

.nh-contact__map-pin::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--pearl);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nh-contact__map-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--clay-dk);
    letter-spacing: .04em;
    position: relative;
    z-index: 1;
}

.nh-contact__map-addr {
    font-size: 11px;
    color: var(--muted);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.nh-contact__map-footer {
    padding: 11px 18px;
    background: var(--pearl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--linen);
}

.nh-contact__map-footer span {
    font-size: 12px;
    color: var(--muted-lt);
    font-weight: 300;
}

.nh-contact__map-footer a {
    font-size: 12px;
    color: var(--clay);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s;
}

.nh-contact__map-footer a:hover { color: var(--clay-dk); }

/* Editor: show placeholder, hide iframe */
.elementor-editor-active .nh-contact__map-iframe { display: none; }
.elementor-editor-active .nh-contact__map-ph     { flex: 1; display: flex; }

/* Frontend: hide placeholder, show iframe */
.nh-contact__map-card:not(.nh-contact__map-card--no-iframe) .nh-contact__map-ph { display: none; }

/* ── Right column ────────────────────────────────────────────────── */

.nh-contact__info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Info card */
.nh-contact__info-card {
    background: var(--pearl);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(125,63,40,.08);
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
}

.nh-contact__info-title {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 22px;
}

.nh-contact__info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.nh-contact__info-row:last-child { margin-bottom: 0; }

@keyframes nh-shimmer-slide {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

.nh-contact__info-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clay);
    background: linear-gradient(110deg, rgba(125,63,40,.07) 35%, rgba(212,149,106,.15) 50%, rgba(125,63,40,.07) 65%);
    background-size: 200% 100%;
    animation: nh-shimmer-slide 2.8s linear infinite;
}

.nh-contact__info-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.nh-contact__info-row-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nh-contact__info-row-label {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-lt);
    font-weight: 400;
}

.nh-contact__info-row-val {
    font-size: 14px;
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
}

.nh-contact__info-row-val a {
    color: var(--clay);
    text-decoration: none;
}

.nh-contact__info-row-val a:hover { text-decoration: underline; }

/* Hours card */
.nh-contact__hours-card {
    background: var(--parchment);
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid var(--linen);
}

.nh-contact__hours-title {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 18px;
}

.nh-contact__hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(125,63,40,.07);
}

.nh-contact__hours-row:last-of-type { border-bottom: none; }

.nh-contact__hours-day  { color: var(--muted); font-weight: 400; }
.nh-contact__hours-time { color: var(--text); font-weight: 500; }

.nh-contact__hours-note {
    font-size: 12px;
    color: var(--muted-lt);
    font-weight: 300;
    margin-top: 14px;
    line-height: 1.7;
}

/* ── Why Visit (hover-fill cards) ────────────────────────────────── */

.nh-contact__why {
    background: var(--parchment);
    padding: 80px 64px;
    border-top: 1px solid var(--linen);
    border-bottom: 1px solid var(--linen);
}

.nh-contact__why-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.nh-contact__why-header {
    text-align: center;
    margin-bottom: 52px;
}

.nh-contact__why-eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.nh-contact__why-heading {
    font-family: var(--font-head);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text);
}

.nh-contact__why-heading em { font-style: italic; color: var(--clay); }

.nh-contact__why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Hover-fill cards — same pattern as nh-difference */
.nh-contact__why-card {
    background: var(--pearl);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(125,63,40,.08);
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    transition: all .3s cubic-bezier(.2,0,0,1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.nh-contact__why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clay);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.2,0,0,1);
    border-radius: inherit;
}

.nh-contact__why-card:hover::before { transform: translateY(0); }
.nh-contact__why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 64px rgba(42,28,18,.15); }
.nh-contact__why-card:hover .nh-contact__why-icon { color: var(--amber-lt); background: rgba(255,255,255,.12); }
.nh-contact__why-card:hover h3 { color: var(--pearl); }
.nh-contact__why-card:hover p  { color: rgba(253,250,246,.7); }

.nh-contact__why-icon {
    width: 44px;
    height: 44px;
    background: rgba(125,63,40,.08);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clay);
    fill: currentColor;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: color .3s, background .3s;
}

.nh-contact__why-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.nh-contact__why-icon svg path,
.nh-contact__why-icon svg circle,
.nh-contact__why-icon svg rect,
.nh-contact__why-icon svg polygon { fill: currentColor; }

.nh-contact__why-icon i { font-size: 20px; line-height: 1; }

.nh-contact__why-card h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color .3s;
    color: var(--text);
}

.nh-contact__why-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    position: relative;
    z-index: 1;
    transition: color .3s;
}

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .nh-contact__grid  { grid-template-columns: 1fr; }
    .nh-contact__main  { padding: 64px 40px; }
    .nh-contact__why   { padding: 64px 40px; }
    .nh-contact__hero  { padding: 72px 40px 60px; }
    .nh-contact__strip { padding: 20px 40px; }
}

@media (max-width: 767px) {
    .nh-contact__hero        { padding: 60px 24px 48px; }
    .nh-contact__strip       { padding: 16px 24px; flex-direction: column; gap: 12px; }
    .nh-contact__strip-item  { padding: 0; border-left: none !important; }
    .nh-contact__main        { padding: 48px 20px; }
    .nh-contact__form-card   { padding: 32px 24px; }
    .nh-contact__why         { padding: 48px 20px; }
    .nh-contact__why-grid    { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE HERO WIDGET (nh-page-hero)
   ══════════════════════════════════════════════════════════════════ */

.nh-page-hero {
    background: var(--parchment);
    padding: 100px 64px 88px;
    text-align: center;
    border-bottom: 1px solid rgba(125,63,40,.08);
}

.nh-page-hero__inner { max-width: 840px; margin: 0 auto; }

.nh-page-hero__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
    animation: nh-fadeIn .5s .05s ease both;
}

.nh-page-hero__ornament {
    display: block;
    margin: 0 auto 20px;
    width: 40px;
    height: 2px;
    background: var(--amber);
    animation: nh-fadeIn .5s .1s ease both;
}

.nh-page-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 20px;
    animation: nh-slideUp .7s .15s ease both;
}

.nh-page-hero__heading em { font-style: italic; color: var(--clay); }

.nh-page-hero__desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
    animation: nh-slideUp .6s .28s ease both;
}

.nh-page-hero--dark {
    background: linear-gradient(160deg, var(--clay-dk) 0%, var(--clay) 60%, #a05030 100%);
    position: relative;
    overflow: hidden;
}

.nh-page-hero--dark .nh-page-hero__eyebrow { color: var(--amber-lt); }
.nh-page-hero--dark .nh-page-hero__heading { color: var(--pearl); }
.nh-page-hero--dark .nh-page-hero__heading em { color: var(--amber-lt); }
.nh-page-hero--dark .nh-page-hero__desc { color: rgba(253,250,246,.7); }

.nh-page-hero--curve::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: var(--warm-bg);
    clip-path: ellipse(60% 100% at 50% 100%);
}

@keyframes nh-slideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes nh-fadeIn  { from { opacity:0; } to { opacity:1; } }

.elementor-editor-active .nh-page-hero__eyebrow,
.elementor-editor-active .nh-page-hero__ornament,
.elementor-editor-active .nh-page-hero__heading,
.elementor-editor-active .nh-page-hero__desc {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 767px) {
    .nh-page-hero { padding: 72px 24px 60px; }
    .nh-page-hero__heading { font-size: clamp(32px, 8vw, 48px); }
    .nh-page-hero__desc { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   AMENITIES GRID WIDGET (nh-amenities)
   ══════════════════════════════════════════════════════════════════ */

.nh-amenities { background: var(--warm-bg); }

.nh-amenities__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-amenities__head { margin-bottom: 52px; }

.nh-amenities__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-amenities__heading {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
}

.nh-amenities__heading em { font-style: italic; color: var(--clay); }

.nh-amenities__subhead {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.nh-amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nh-amenities__card {
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,.1);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    transition: transform .28s, box-shadow .28s, border-color .28s;
}

.nh-amenities__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
    border-color: rgba(125,63,40,.22);
}

.nh-amenities__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--clay);
    fill: currentColor;
    font-size: 22px;
    transition: transform .28s;
}

.nh-amenities__card:hover .nh-amenities__icon { transform: scale(1.12); }

.nh-amenities__icon svg { width: 22px; height: 22px; fill: currentColor; }
.nh-amenities__icon svg path, .nh-amenities__icon svg circle,
.nh-amenities__icon svg rect, .nh-amenities__icon svg polygon { fill: currentColor; }

.nh-amenities__card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
}

.nh-amenities__card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .nh-amenities__grid { grid-template-columns: repeat(2, 1fr); }
    .nh-amenities__inner { padding: 72px 40px; }
}

@media (max-width: 767px) {
    .nh-amenities__grid { grid-template-columns: 1fr; gap: 16px; }
    .nh-amenities__inner { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   COMMUNITY SPACES WIDGET (nh-spaces)
   ══════════════════════════════════════════════════════════════════ */

.nh-spaces { background: var(--warm-bg); }

.nh-spaces__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-spaces__head { margin-bottom: 48px; }

.nh-spaces__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-spaces__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}

.nh-spaces__heading em { font-style: italic; color: var(--clay); }

.nh-spaces__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nh-spaces__card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,.08);
    transition: transform .3s, box-shadow .3s;
}

.nh-spaces__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
}

.nh-spaces__img-wrap {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--linen), var(--parchment));
}

.nh-spaces__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(.2,0,0,1);
}

.nh-spaces__card:hover .nh-spaces__img { transform: scale(1.05); }
.nh-spaces__img-wrap .nh-spaces__img { height: 100%; }

.nh-spaces__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e8dac8, #d4c4a8);
}

.nh-spaces__body { padding: 20px; }

.nh-spaces__card-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.nh-spaces__card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-lt);
    line-height: 1.65;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .nh-spaces__grid { grid-template-columns: repeat(2, 1fr); }
    .nh-spaces__inner { padding: 72px 40px; }
}

@media (max-width: 767px) {
    .nh-spaces__grid { grid-template-columns: 1fr; gap: 16px; }
    .nh-spaces__inner { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   DINING VENUES WIDGET (nh-dining)
   ══════════════════════════════════════════════════════════════════ */

.nh-dining { background: var(--parchment); }

.nh-dining__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-dining__head { margin-bottom: 52px; }

.nh-dining__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-dining__heading {
    font-family: var(--font-head);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
}

.nh-dining__heading em { font-style: italic; color: var(--clay); }

.nh-dining__subhead {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.nh-dining__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nh-dining__card {
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    transition: transform .3s, box-shadow .3s;
}

.nh-dining__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
}

.nh-dining__img-wrap {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #d8c490, #c0a860);
}

.nh-dining__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nh-dining__img-wrap .nh-dining__img { height: 100%; }

.nh-dining__img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 12px 16px;
}

.nh-dining__body { padding: 24px; }

.nh-dining__card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.nh-dining__card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 14px;
}

.nh-dining__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    background: var(--parchment);
    padding: 5px 12px;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .nh-dining__grid { grid-template-columns: 1fr 1fr; }
    .nh-dining__inner { padding: 72px 40px; }
}

@media (max-width: 767px) {
    .nh-dining__grid { grid-template-columns: 1fr; }
    .nh-dining__inner { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SAMPLE MENU WIDGET (nh-menu)
   ══════════════════════════════════════════════════════════════════ */

.nh-menu { background: var(--clay-dk); }

.nh-menu__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-menu__header { margin-bottom: 44px; }

.nh-menu__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amber-lt);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-menu__heading {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 400;
    color: var(--pearl);
    line-height: 1.2;
    margin-bottom: 14px;
}

.nh-menu__heading em { font-style: italic; color: var(--amber-lt); }

.nh-menu__intro {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(253,250,246,.55);
    font-weight: 300;
    line-height: 1.75;
    max-width: 600px;
}

.nh-menu__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.nh-menu__col-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber-lt);
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(232,185,138,.2);
    padding-bottom: 10px;
}

.nh-menu__cat {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--amber-lt);
    font-weight: 500;
    margin-top: 28px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(232,185,138,.15);
    padding-bottom: 8px;
}

.nh-menu__cat:first-child { margin-top: 0; }

.nh-menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(253,250,246,.07);
}

.nh-menu__item-name {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--pearl);
    font-weight: 400;
}

.nh-menu__item-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(253,250,246,.4);
    font-style: italic;
    text-align: right;
    padding-left: 12px;
    flex-shrink: 0;
}

.nh-menu__note {
    margin-top: 36px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(253,250,246,.4);
    font-style: italic;
    text-align: center;
}

@media (max-width: 767px) {
    .nh-menu__inner { padding: 56px 24px; }
    .nh-menu__cols { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT HERO WIDGET (nh-about-hero)
   ══════════════════════════════════════════════════════════════════ */

.nh-about-hero {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 580px;
}

.nh-about-hero__left {
    background: var(--clay-dk);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nh-about-hero__left::after {
    content: '"';
    position: absolute;
    bottom: -20px; left: 40px;
    font-family: var(--font-head);
    font-size: 280px;
    line-height: 1;
    color: rgba(212,149,106,.06);
    pointer-events: none;
    user-select: none;
}

.nh-about-hero__left-inner {
    padding: 60px 72px;
    position: relative;
    z-index: 1;
}

.nh-about-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--amber-lt);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.nh-about-hero__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-about-hero__heading {
    font-family: var(--font-head);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--pearl);
    margin-bottom: 24px;
}

.nh-about-hero__heading em { font-style: italic; color: var(--amber-lt); }

.nh-about-hero__desc {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.85;
    color: rgba(253,250,246,.62);
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 48px;
}

.nh-about-hero__stats {
    display: flex;
    border: 1px solid rgba(212,149,106,.18);
    border-radius: 14px;
    overflow: hidden;
    align-self: flex-start;
}

.nh-about-hero__stat {
    padding: 18px 28px;
    flex: 1;
    border-right: 1px solid rgba(212,149,106,.14);
    text-align: center;
}

.nh-about-hero__stat:last-child { border-right: none; }

.nh-about-hero__stat-num {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 500;
    color: var(--amber-lt);
    line-height: 1;
    display: block;
}

.nh-about-hero__stat-lbl {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(253,250,246,.38);
    margin-top: 5px;
    display: block;
}

.nh-about-hero__right {
    position: relative;
    overflow: hidden;
}

.nh-about-hero__img-ph {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #2a1008 0%, #5c2010 30%, #8c3818 60%, #b05830 85%, #c87848 100%);
}

.nh-about-hero__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.nh-about-hero__right .nh-about-hero__img { height: 100%; }

.nh-about-hero__right::before {
    content: '';
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 70px;
    background: var(--clay-dk);
    clip-path: ellipse(70px 52% at 0% 50%);
    z-index: 2;
}

.nh-about-hero__license {
    position: absolute; top: 32px; right: 32px; z-index: 5;
    background: rgba(253,250,246,.12);
    border: 1px solid rgba(232,185,138,.22);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(253,250,246,.55);
}

.nh-about-hero__card {
    position: absolute;
    bottom: 44px; left: 36px; z-index: 10;
    background: rgba(253,250,246,.97);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 32px 80px rgba(42,28,18,.22);
    border: 1px solid rgba(125,63,40,.1);
    max-width: 300px;
}

.nh-about-hero__card-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 600;
    margin-bottom: 10px;
}

.nh-about-hero__card-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
}

.nh-about-hero__card-tagline {
    font-family: var(--font-head);
    font-size: 15px;
    font-style: italic;
    color: var(--text-2);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .nh-about-hero { grid-template-columns: 1fr; }
    .nh-about-hero__right { min-height: 380px; }
    .nh-about-hero__right::before { display: none; }
    .nh-about-hero__left-inner { padding: 60px 48px; }
}

@media (max-width: 767px) {
    .nh-about-hero__left-inner { padding: 48px 24px; }
    .nh-about-hero__right { min-height: 280px; }
    .nh-about-hero__card { bottom: 24px; left: 20px; right: 20px; max-width: none; }
    .nh-about-hero__stat { padding: 14px 18px; }
    .nh-about-hero__stat-num { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   VALUES CARDS WIDGET (nh-values)
   ══════════════════════════════════════════════════════════════════ */

.nh-values { background: var(--parchment); }

.nh-values__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-values__head { margin-bottom: 52px; }

.nh-values__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-values__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}

.nh-values__heading em { font-style: italic; color: var(--clay); }

.nh-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nh-values__card {
    background: var(--pearl);
    border: 2px solid rgba(125,63,40,.08);
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.nh-values__card:hover {
    border-color: var(--val-hover, var(--clay));
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
    transform: translateY(-4px);
}

.nh-values__num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 400;
    color: var(--linen);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.nh-values__card-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text);
}

.nh-values__card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .nh-values__grid { grid-template-columns: 1fr 1fr; }
    .nh-values__inner { padding: 72px 40px; }
}

@media (max-width: 767px) {
    .nh-values__grid { grid-template-columns: 1fr; }
    .nh-values__inner { padding: 56px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TEAM FEATURE WIDGET (nh-team)
   ══════════════════════════════════════════════════════════════════ */

.nh-team { background: var(--warm-bg); }

.nh-team__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-team__head { margin-bottom: 56px; }

.nh-team__eyebrow, .nh-team__bio-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-team__heading, .nh-team__bio-heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 16px;
}

.nh-team__heading em, .nh-team__bio-heading em { font-style: italic; color: var(--clay); }

.nh-team__subhead {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
}

.nh-team__feature {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: start;
}

.nh-team__photo-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #d8c8a8 0%, #b8a080 50%, #8a6840 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-team__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-team__photo-wrap .nh-team__photo { height: 100%; }

.nh-team__photo-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-team__badge {
    background: var(--clay);
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 16px;
}

.nh-team__badge-name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 500;
    color: var(--pearl);
}

.nh-team__badge-title {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(232,185,138,.7);
    margin-top: 3px;
}

.nh-team__right { padding-top: 8px; }

.nh-team__bio-p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 14px;
}

.nh-team__pullquote {
    margin: 28px 0;
    padding: 22px 28px 22px 24px;
    border-left: 3px solid var(--amber);
    background: var(--parchment);
    border-radius: 0 14px 14px 0;
}

.nh-team__pullquote p {
    font-family: var(--font-head);
    font-size: 19px;
    font-style: italic;
    color: var(--clay-dk);
    line-height: 1.5;
}

.nh-team__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.nh-team__chip {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid rgba(125,63,40,.15);
    color: var(--muted);
    background: var(--pearl);
}

.nh-team__chip--clay {
    background: var(--parchment);
    color: var(--clay);
    border-color: rgba(125,63,40,.2);
}

.nh-team__more {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--linen);
}

.nh-team__more-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted-lt);
    margin-bottom: 20px;
    display: block;
}

.nh-team__more-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nh-team__more-card {
    flex: 1;
    min-width: 160px;
    background: var(--parchment);
    border: 1px dashed var(--linen);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nh-team__more-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--linen);
}

.nh-team__more-name {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-lt);
}

.nh-team__more-note {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--muted-lt);
    font-style: italic;
}

@media (max-width: 1024px) {
    .nh-team__feature { grid-template-columns: 280px 1fr; gap: 48px; }
    .nh-team__inner { padding: 72px 40px; }
}

@media (max-width: 767px) {
    .nh-team__feature { grid-template-columns: 1fr; gap: 32px; }
    .nh-team__inner { padding: 56px 20px; }
    .nh-team__photo-wrap { max-width: 320px; margin: 0 auto; }
    .nh-team__more-row { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROMISE DARK WIDGET (nh-promise)
   ══════════════════════════════════════════════════════════════════ */

.nh-promise { background: var(--clay-dk); }

.nh-promise__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 64px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.nh-promise__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--amber-lt);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-promise__heading {
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 400;
    color: var(--pearl);
    line-height: 1.18;
    margin-bottom: 16px;
}

.nh-promise__heading em { font-style: italic; color: var(--amber-lt); }

.nh-promise__body {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(253,250,246,.6);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 20px;
}

.nh-promise__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.nh-promise__list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(253,250,246,.8);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.nh-promise__list li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    margin-top: 6px;
}

.nh-promise__card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,149,106,.2);
    border-radius: 18px;
    padding: 36px;
}

.nh-promise__card-head {
    font-family: var(--font-head);
    font-size: 14px;
    font-style: italic;
    color: rgba(253,250,246,.4);
    margin-bottom: 24px;
}

.nh-promise__stat {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212,149,106,.12);
}

.nh-promise__stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.nh-promise__stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 500;
    color: var(--amber-lt);
    display: block;
    line-height: 1;
}

.nh-promise__stat-lbl {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(253,250,246,.35);
    margin-top: 5px;
    display: block;
}

@media (max-width: 1024px) {
    .nh-promise__inner { grid-template-columns: 1fr; gap: 48px; padding: 72px 48px; }
    .nh-promise__card { max-width: 480px; }
}

@media (max-width: 767px) {
    .nh-promise__inner { padding: 56px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SUBPAGE LINKS WIDGET (nh-sublinks)
   ══════════════════════════════════════════════════════════════════ */

.nh-sublinks { background: var(--warm-bg); }

.nh-sublinks__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 96px 64px;
}

.nh-sublinks__head { margin-bottom: 52px; }

.nh-sublinks__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 500;
    margin-bottom: 14px;
}

.nh-sublinks__heading {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
}

.nh-sublinks__heading em { font-style: italic; color: var(--clay); }

.nh-sublinks__subhead {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted);
    font-weight: 300;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.8;
}

.nh-sublinks__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.nh-sublinks__card {
    background: var(--pearl);
    border: 1px solid rgba(125,63,40,.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(42,28,18,.07);
    transition: transform .3s, box-shadow .3s;
}

.nh-sublinks__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 36px rgba(42,28,18,.11);
}

.nh-sublinks__img-wrap {
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--linen), var(--parchment));
    transition: transform .45s cubic-bezier(.2,0,0,1);
}

.nh-sublinks__card:hover .nh-sublinks__img-wrap { transform: scale(1.04); }

.nh-sublinks__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nh-sublinks__img-wrap .nh-sublinks__img { height: 100%; }

.nh-sublinks__img-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 14px 20px;
}

.nh-sublinks__body { padding: 28px 28px 32px; }

.nh-sublinks__card-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
}

.nh-sublinks__card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nh-sublinks__link {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--clay);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.nh-sublinks__link .nh-sublinks__arrow { transition: transform .2s; display: inline-block; }
.nh-sublinks__link:hover { color: var(--clay-dk); }
.nh-sublinks__link:hover .nh-sublinks__arrow { transform: translateX(4px); }

@media (max-width: 767px) {
    .nh-sublinks__grid { grid-template-columns: 1fr; }
    .nh-sublinks__inner { padding: 56px 20px; }
}
