/* ============================================================
   Noble Care Alliances — Main Stylesheet v1.0.0
   Custom WordPress Theme | Netrep
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
    --pink:         #D92B5F;
    --pink-dark:    #b82250;
    --plum:         #802358;
    --plum-dark:    #621a43;
    --dark:         #310D0F;
    --peach:        #F0EBE3;
    --lavender:     #EBDCEE;
    --blue:         #8AB6CB;
    --grey:         #E6E7E8;
    --white:        #FFFFFF;
    --text:         #2C1810;
    --text-mid:     #5a3a45;
    --text-light:   #8a6070;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-accent:  'Lora', Georgia, serif;

    --container:    1200px;
    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    28px;
    --radius-xl:    44px;
    --shadow:       0 4px 24px rgba(49,13,15,.10);
    --shadow-lg:    0 8px 40px rgba(49,13,15,.16);
    --transition:   0.3s ease;

    --section-pad:  100px;
    --header-h:     80px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    background: #ffffff;
    color-scheme: light;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

.nc-main {
    background: #ffffff;
}

img, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
svg { display: block; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}

/* Lora italic — decorative accent within headings (<em>) */
h1 em, h2 em, h3 em, h4 em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: #757575; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D9AFDA;
    margin-right: 10px;
    vertical-align: middle;
    margin-bottom: 3px;
}

.section-eyebrow.light { color: rgba(255,255,255,0.80); opacity: 1; }

.section-heading {
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.section-heading.light { color: var(--white); }

.section-intro {
    font-size: 1.05rem;
    color: #757575;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro.light { color: rgba(255,255,255,0.70); }

/* Restore readable text inside dark floating cards */
.nc-stats p,
.nc-testimonials p,
.nc-cta-section p,
.nc-footer p { color: rgba(255,255,255,0.70); }

.testimonial-quote p { color: rgba(255,255,255,0.82); }

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

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Floating card inner content — mirrors Elementor's e-con-inner pattern.
   Max-width constrains content within the card; margin centres it.
   No horizontal padding — breathing room comes from the width constraint. */
.nc-services > .container > *,
.nc-differentiator > .container > *,
.nc-stats > .container > *,
.nc-process > .container > * {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.section-header { margin-bottom: 56px; }
.section-header.text-center .section-intro { text-align: center; }

/* Fade-in animation (triggered by JS) */
.nc-fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.nc-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

/*
 * Ink-fill circle — positioned at cursor entry point via JS (--mx/--my).
 * Scales from 0 → 1 on hover, radiating outward to fill the entire button.
 * z-index: -1 within isolation: isolate keeps it above the button's own
 * background but below all content (text nodes, icons) in paint order.
 */
.btn::before {
    content: '';
    position: absolute;
    left: var(--mx, 50%);
    top:  var(--my, 50%);
    width: 300%;
    aspect-ratio: 1;
    background: var(--btn-fill);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    pointer-events: none;
}
.btn:hover::before { transform: translate(-50%, -50%) scale(1); }

.btn:active { transform: scale(0.98); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

.btn-primary {
    background: #D9AFDA;
    color: #4D082E;
    border: 2px solid #D9AFDA;
    --btn-fill: #4D082E;
}
.btn-primary:hover {
    border-color: #4D082E;
    color: var(--white);
}

.nc-hero .btn-primary:hover,
.nc-testimonials .btn-primary:hover,
.nc-cta-section .btn-primary:hover {
    border-color: #4D082E;
    box-shadow: none;
    color: var(--white);
}

.btn-secondary {
    background: #4D082E;
    color: var(--white);
    border: 2px solid #4D082E;
    --btn-fill: #D9AFDA;
}
.btn-secondary:hover {
    border-color: #D9AFDA;
    color: #4D082E;
}

.btn-outline {
    background: transparent;
    color: var(--pink);
    border: 2px solid var(--pink);
    --btn-fill: var(--pink);
}
.btn-outline:hover { color: var(--white); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.65);
    --btn-fill: rgba(255,255,255,0.20);
}
.btn-outline-light:hover { border-color: var(--white); }

.btn-white {
    background: var(--white);
    color: var(--plum);
    border: 2px solid var(--white);
    --btn-fill: var(--peach);
}
.btn-white:hover { border-color: var(--peach); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.7);
    --btn-fill: rgba(255,255,255,0.18);
}
.btn-outline-white:hover { border-color: var(--white); }

/* ============================================================
   6. SKIP LINK
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--pink);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   7. HEADER & NAVIGATION
   ============================================================ */
.nc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-h);
    transition: box-shadow 0.3s ease;
}

.nc-header.is-scrolled {
    box-shadow: 0 2px 20px rgba(49,13,15,.10);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}

.header-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: visible; height: 100%; }
.site-logo { height: 72px; width: auto; display: block; margin: auto 0; margin-top: 10px; }

/* Text logo fallback */
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-noble {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}
.logo-care {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    margin-top: 2px;
}

/* Navigation */
.primary-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Absolutely centred nav links — logo left, links centre, button right */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-menu li a:hover { color: var(--pink); background: var(--peach); }
.nav-menu li.current-menu-item > a { color: var(--pink); }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: #4D082E;
    transition: background var(--transition);
    margin-left: auto;
    flex-shrink: 0;
}
.nav-toggle:hover { background: #3a0622; }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

/* Open state */
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   8. HERO (Full-bleed parallax)
   ============================================================ */

/* Wrapper clips hero + trust-bar as one floating card */
.nc-hero-wrapper {
    margin: 20px 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
}

.nc-hero {
    position: relative;
    height: 756px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Parallax background layer — JS moves this on scroll */
.hero-bg {
    position: absolute;
    top: -30%;
    left: 0;
    right: 0;
    bottom: -30%;
    will-change: transform;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(49,13,15,0.92) 0%,
        rgba(49,13,15,0.75) 18%,
        rgba(49,13,15,0.30) 38%,
        rgba(49,13,15,0.00) 52%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 32px;
    width: 100%;
}

.hero-text { max-width: 900px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--peach);
    opacity: 0.9;
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(49,13,15,.3);
}
.hero-headline em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    display: block;
}

.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255,255,255,.80);
    margin-bottom: 36px;
    line-height: 1.75;
    max-width: 680px;
}

/* ── CTA row: badge + social proof ── */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-inline-badge {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 3;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(255,255,255,0.85);
    margin-left: -10px;
    display: block;
}
.hero-avatars img:first-child { margin-left: 0; }

.hero-proof-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hero-proof-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-proof-text span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.3;
}

/* ── Spinning circular badge ── */
.hero-spin-badge {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 3;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-spin-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: hero-badge-spin 18s linear infinite;
}

.hero-spin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-spin-icon img {
    width: 108px;
    height: 108px;
    display: block;
}

@keyframes hero-badge-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.nc-trust-bar {
    background: var(--white);
    padding: 22px 0;
    border-bottom: 1px solid rgba(128,35,88,.08);
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--pink);
    flex-shrink: 0;
}

/* ============================================================
   10. ABOUT PREVIEW (photo-card layout)
   ============================================================ */
.nc-about-preview {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.about-header {
    max-width: 680px;
    margin: 0 auto 56px;
}

.about-header .section-intro {
    margin-bottom: 2rem;
}

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

.about-photo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--peach);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-photo-card:hover {
    transform: translateY(-6px);
}

.about-photo-card-img {
    height: 260px;
    overflow: hidden;
}

.about-photo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.about-photo-card:hover .about-photo-card-img img {
    transform: scale(1.04);
}

.about-photo-card-body {
    padding: 28px 28px 32px;
}

.about-photo-card-title {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-photo-card-body p {
    font-size: 0.92rem;
    color: #757575;
    line-height: 1.7;
    margin: 0;
}

/* ── Scroll word-reveal ── */
[data-scroll-reveal] .sr-word {
    color: rgba(49,13,15,0.18);
    transition: color 0.25s ease;
    display: inline;
}

[data-scroll-reveal] .sr-word.is-active {
    color: var(--dark);
}

/* ============================================================
   11. SERVICES (icon-cards — peach floating card, 4 cards)
   ============================================================ */
.nc-services {
    background: transparent;
    padding: 16px 40px;
}
.nc-services > .container {
    background: var(--peach);
    border-radius: var(--radius-xl);
    padding: var(--section-pad) 0;
    max-width: 100%;
    box-shadow: 0 4px 48px rgba(49,13,15,.06);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 52px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 0 1 calc((100% - 72px) / 4);
    position: relative;
    isolation: isolate;
    transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); }

/* Rising circle fill from bottom-centre */
.service-card::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 400%;
    aspect-ratio: 1;
    background: #D9AFDA;
    border-radius: 50%;
    transform: translate(-50%, 50%) scale(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.service-card:hover::before { transform: translate(-50%, 50%) scale(1); }

.service-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #D9AFDA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background var(--transition), color var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--white);
    color: #D9AFDA;
}

.service-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color var(--transition);
}

.service-card:hover .service-title { color: var(--white); }

.service-desc {
    font-size: 0.9rem;
    color: #757575;
    line-height: 1.65;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: color var(--transition);
}

.service-card:hover .service-desc { color: rgba(255,255,255,0.85); }

.service-features {
    list-style: none;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #757575;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.service-feature:last-child { margin-bottom: 0; }

.service-feature .tick-icon circle {
    fill: #D9AFDA;
    transition: fill var(--transition);
}
.service-feature .tick-icon path {
    stroke: var(--white);
    transition: stroke var(--transition);
}
.service-card:hover .service-feature .tick-icon circle { fill: rgba(255,255,255,0.30); }
.service-card:hover .service-feature { color: rgba(255,255,255,0.90); }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #D9AFDA;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: gap var(--transition), color var(--transition);
}

.service-link:hover { gap: 10px; color: #c97a68; }
.service-card:hover .service-link { color: var(--white); }

.services-cta { padding-top: 8px; }

/* ============================================================
   11b. SERVICES SPLIT (2-col icon-list, white bg, 6 services)
   ============================================================ */
.nc-services-split {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.services-split {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 80px;
    align-items: center;
}

.services-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-intro .section-heading { margin-bottom: 20px; }

.services-intro-text {
    font-size: 0.95rem;
    color: #757575;
    line-height: 1.8;
    margin-bottom: 36px;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 48px;
}

.service-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.service-item-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232,149,127,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D9AFDA;
    transition: background var(--transition), color var(--transition);
}

.service-item:hover .service-item-icon {
    background: var(--dark);
    color: var(--white);
}

.service-item-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.service-item-body p {
    font-size: 0.875rem;
    color: #757575;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   12. DIFFERENTIATOR
   ============================================================ */
.nc-differentiator {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.diff-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
}

.diff-left p {
    color: #757575;
    margin-top: 20px;
    max-width: 480px;
}

.diff-right { padding-top: 52px; }

.diff-bullets-intro {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.diff-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diff-bullet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.975rem;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 500;
}

.diff-bullet-item .tick-icon circle { fill: #D9AFDA; }
.diff-bullet-item .tick-icon path  { stroke: var(--white); }

/* Accreditation / partner logos — sits between text and image */
.diff-partners {
    margin-bottom: 72px;
    padding: 8px 0;
}

.partner-logos {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-item a { display: block; }

.partner-logo-item img {
    max-height: 68px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Full colour by default → muted (greyscale) on hover */
.partner-logo-item:hover img,
.partner-logo-item a:focus-visible img {
    filter: grayscale(100%);
    opacity: 0.55;
}

/* Full-width image block */
.diff-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Break out of container padding so image fills edge-to-edge — overrides the > * padding rule */
.nc-differentiator > .container > .diff-image-wrap {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
}

.diff-image-wrap img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.diff-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,5,8,0.90) 0%, rgba(15,5,8,0.45) 50%, transparent 100%);
}

.diff-image-features {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 28px 52px 44px;
    border-top: 1px solid rgba(255,255,255,0.18);
}

.diff-image-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.diff-image-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #D9AFDA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.diff-image-feature-text { display: flex; flex-direction: column; gap: 4px; }

.diff-image-feature-title {
    font-size: 0.975rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.diff-image-feature-desc {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   13. STATS (Impact — dark floating card, 2-col: text+image left, image+list+counters right)
   ============================================================ */
.nc-stats {
    background: transparent;
    padding: 16px 40px;
}
.nc-stats > .container {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: var(--section-pad) 0;
    max-width: 100%;
    box-shadow: 0 4px 48px rgba(49,13,15,.18);
}

.nc-stats .section-eyebrow { color: #D9AFDA; }
.nc-stats .section-heading  { color: var(--white); }

.stats-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Left column ── */
.stats-intro {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    margin-bottom: 28px;
}

.stats-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.stats-img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600%;
    height: 600%;
    /* Opaque at outer edges → sharp fade to clear → clear at centre.
       As scaleY expands, the bright edges move outward from the diagonal median. */
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.62) 0%,
        rgba(255,255,255,0.50) 4%,
        rgba(255,255,255,0.28) 20%,
        rgba(255,255,255,0.10) 36%,
        rgba(255,255,255,0)    47%,
        rgba(255,255,255,0)    53%,
        rgba(255,255,255,0.10) 64%,
        rgba(255,255,255,0.28) 80%,
        rgba(255,255,255,0.50) 96%,
        rgba(255,255,255,0.62) 100%
    );
    transform: translate(-50%, -50%) rotate(-45deg) scaleY(0.007);
    opacity: 0;
    pointer-events: none;
}

@keyframes nc-sheen {
    0%   { transform: translate(-50%, -50%) rotate(-45deg) scaleY(0.007); opacity: 1; }
    72%  { opacity: 1; }
    100% { transform: translate(-50%, -50%) rotate(-45deg) scaleY(1.1);   opacity: 0; }
}

.stats-img:hover::after {
    animation: nc-sheen 3.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.stats-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.stats-img-left img  { height: 320px; }
.stats-img-right img { height: 260px; margin-bottom: 28px; }

/* ── Right column ── */
.stats-checklist {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stats-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.stats-check-item .tick-icon circle { fill: #D9AFDA; }
.stats-check-item .tick-icon path  { stroke: var(--white); }

/* ── Inline counters ── */
.stats-counters {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 28px;
}

.stats-counter-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
}
.stats-counter-item:first-child { padding-left: 0; }
.stats-counter-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stats-count-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #D9AFDA;
    line-height: 1;
}

.stats-count-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* ============================================================
   14. FAQ (2-col: intro+contact left, accordion right)
   ============================================================ */
.nc-faq {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.faq-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* ── Left column ── */
.faq-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.faq-left .section-heading { margin-bottom: 20px; }

.faq-intro-text {
    font-size: 0.93rem;
    color: #757575;
    line-height: 1.8;
    margin-bottom: 32px;
}

.faq-cta-bar {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
}

.faq-contact-box {
    width: 100%;
    background: var(--peach);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.faq-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark);
}

.faq-contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.70;
}

.faq-contact-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq-contact-item a {
    font-size: 0.875rem;
    color: #757575;
    text-decoration: none;
    transition: color var(--transition);
}

.faq-contact-item a:hover { color: #D9AFDA; }

/* ── Accordion ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(49,13,15,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background var(--transition), border-color var(--transition);
}

.faq-item.is-open {
    background: var(--dark);
    border-color: var(--dark);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-item.is-open .faq-question { color: var(--white); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(49,13,15,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--dark);
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.faq-item.is-open .faq-icon {
    border-color: rgba(255,255,255,0.30);
    color: var(--white);
    transform: rotate(45deg);
}

/* Smooth expand using CSS grid trick */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner { overflow: hidden; }

.faq-answer-inner p {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   15. TESTIMONIALS (dark floating card — 2-col layout)
   ============================================================ */
.nc-testimonials {
    background: transparent;
    padding: 16px 40px;
}
.nc-testimonials > .container {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: var(--section-pad) 0;
    max-width: 100%;
    box-shadow: 0 4px 48px rgba(49,13,15,.18);
}
.nc-testimonials > .container > * {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Centered header ── */
.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.nc-testimonials .section-eyebrow { color: #D9AFDA; }
.nc-testimonials .section-heading  { color: var(--white); }

.testimonials-layout {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Outer card wrapping both testimonials */
.testimonials-slider-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 28px 24px;
}

.testimonials-slider-wrap { overflow: hidden; flex: 1; width: 100%; min-width: 0; }

.testimonials-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 50%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.testimonial-card:last-of-type {
    border-right: none;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #D9AFDA;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.78;
    flex: 1;
    margin-bottom: 20px;
    font-style: normal;
}
.testimonial-quote p { margin: 0; }

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 16px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--plum);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.testimonial-meta { flex: 1; min-width: 0; }

.testimonial-name {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.87rem;
    color: var(--white);
}
.testimonial-location {
    display: block;
    font-size: 0.77rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.testimonial-quotemark {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    line-height: 1;
    color: #D9AFDA;
    opacity: 0.80;
    margin-left: auto;
    flex-shrink: 0;
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
}
.slider-dot.is-active {
    background: #D9AFDA;
    transform: scale(1.4);
}

/* ── Right: photo stats panel ── */
.testimonials-stats-panel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: url('../images/photos/22.jpg') center center / cover no-repeat;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.tsp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(49,13,15,0.95) 0%,
        rgba(49,13,15,0.65) 50%,
        rgba(49,13,15,0.25) 100%
    );
}

.tsp-stats {
    position: relative;
    z-index: 1;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tsp-stat {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.tsp-stat:last-child { border-bottom: none; padding-bottom: 0; }

.tsp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.tsp-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.testimonials-tagline {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.nc-wave {
    display: block;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.nc-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================================
   SECTION HEADING ACCENT
   ============================================================ */
.section-heading::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: #D9AFDA;
    border-radius: 2px;
    margin-top: 16px;
}

.text-center .section-heading::after {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   15. PROCESS
   ============================================================ */
.nc-process {
    background: transparent;
    padding: 16px 40px;
}
.nc-process > .container {
    background: var(--peach);
    border-radius: var(--radius-xl);
    padding: var(--section-pad) 0;
    max-width: 100%;
    box-shadow: 0 4px 48px rgba(49,13,15,.06);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.step-number-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 28px;
}

.step-number {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(217,43,95,.3);
}

.step-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 34px);
    right: calc(-50% + 34px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--pink) 0, var(--pink) 6px, transparent 6px, transparent 14px);
    transform: translateY(-50%);
}

.step-title {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.88rem;
    color: #757575;
    line-height: 1.65;
}

/* ============================================================
   16. CTA SECTION
   ============================================================ */
.nc-cta-section {
    position: relative;
    padding: 64px 0 56px;
    background: #310d0f;
    margin: 0 40px 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.cta-overlay { display: none; }

/* Spinning badge — peach circle, top right */
.cta-spin-badge {
    position: absolute;
    top: 36px;
    right: 56px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 2;
}
.cta-spin-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--peach);
    border-radius: 50%;
    animation: nc-spin 14s linear infinite;
}
.cta-spin-icon {
    width: 46px;
    height: 46px;
    background: var(--peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: background var(--transition);
    position: relative;
    z-index: 1;
}
.cta-spin-badge:hover .cta-spin-icon { background: #D9AFDA; }

.cta-content { max-width: 640px; }

.cta-heading {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    font-weight: 500;
}

.cta-heading em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}

.cta-subtext { display: none; }
.cta-actions  { display: none; }

/* ============================================================
   17. FOOTER
   ============================================================ */
.nc-footer {
    background: #310d0f !important;
    color: var(--white);
    margin: 0 40px 40px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    overflow: hidden;
}

.footer-main { padding: 56px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Footer logo */
.footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-logo-wrap {
    display: inline-block;
    line-height: 0;
}
.footer-logo-wrap img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--pink); background: var(--pink); color: var(--white); }

.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-links li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D9AFDA;
    flex-shrink: 0;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,.75);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--peach); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.75);
}
.footer-contact-list svg { color: #D9AFDA; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--peach); }


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-pivott { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--transition); }
.footer-pivott:hover { color: #D9AFDA; }

.footer-legal { display: flex; align-items: center; gap: 16px; }
.footer-legal a {
    font-size: 0.82rem;
    color: rgba(255,255,255,.5);
    transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.9); }
.footer-legal-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D9AFDA;
    flex-shrink: 0;
}

/* ============================================================
   18. BLOG PREVIEW
   ============================================================ */
.nc-blog-preview {
    background: var(--white);
    padding: var(--section-pad) 0;
}

.blog-header {
    max-width: 700px;
    margin: 0 auto 56px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    display: block;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--peach);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card-title a:hover { color: var(--pink); }

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
}

.blog-card-link:hover { color: var(--pink); gap: 12px; }

/* ── About image block (replaces Our Impact on About page) ── */
.nc-about-image-block {
    padding: 16px 40px;
}

.nc-about-image-block > .container {
    max-width: 100%;
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: clamp(320px, 55vw, 640px);
}

.nc-image-block-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    will-change: transform;
}

.nc-image-block-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1280px) {
    .nc-about-image-block { padding: 16px 20px; }
}

@media (max-width: 768px) {
    .nc-about-image-block { padding: 8px 12px; }
    .nc-about-image-block > .container { border-radius: 24px; }
}

/* ── Legal pages (Terms & Privacy) ── */
.nc-legal-hero {
    background: var(--dark);
    padding: 72px 0 52px;
    text-align: center;
}

.legal-hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.2;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
}

.legal-breadcrumb a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color var(--transition);
}

.legal-breadcrumb a:hover { color: var(--white); }

.nc-legal-body {
    padding: 72px 0 96px;
    background: var(--white);
}

.legal-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.4em 0 0.6em;
    padding-top: 1.2em;
    border-top: 1px solid rgba(0,0,0,.08);
}

.legal-content h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.6em 0 0.5em;
}

.legal-content p { margin: 0 0 1em; }

.legal-content ul {
    margin: 0 0 1.2em 0;
    padding-left: 1.4em;
}

.legal-content ul li {
    margin-bottom: 0.4em;
    color: #444;
}

.legal-content a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--pink); }

.legal-content strong { font-weight: 600; color: var(--dark); }

.legal-updated {
    display: inline-block;
    font-size: 0.85rem;
    color: #888;
    background: var(--cream);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 2em;
}

@media (max-width: 768px) {
    .nc-legal-hero { padding: 52px 0 36px; }
    .nc-legal-body { padding: 48px 0 64px; }
}

/* ── Blog index page ── */
.nc-blog-index {
    padding: var(--section-pad) 0;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 16px;
}

.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(49,13,15,0.15);
    font-size: 0.9rem;
    color: var(--dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.blog-empty,
.blog-no-posts {
    text-align: center;
    padding: 60px 0;
    color: #999;
}

/* ============================================================
   19. SINGLE POST
   ============================================================ */

/* ── Hero ── */
.nc-post-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin: 20px 40px;
    border-radius: 24px;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
}

.post-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,6,22,0.85) 0%, rgba(12,6,22,0.30) 60%, transparent 100%);
    border-radius: 24px;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    width: 100%;
}

.post-hero-breadcrumb {
    margin-bottom: 16px;
    justify-content: flex-start;
}

.post-hero-breadcrumb a,
.post-hero-breadcrumb span {
    color: rgba(255,255,255,0.75);
}

.post-hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    max-width: 760px;
    margin-bottom: 14px;
}

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.80);
}

.post-hero-sep { opacity: 0.5; }

.post-hero-cat {
    background: var(--peach);
    color: var(--dark);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ── Post body ── */
.nc-post-body {
    padding: 60px 0 80px;
}

.post-inner {
    max-width: 780px;
    margin: 0 auto;
}

/* ── Featured image ── */
.post-featured-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 16 / 9;
}

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

/* ── Post content prose ── */
.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.post-content p { margin-bottom: 1.4em; }

.post-content h2 {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2em 0 0.6em;
    line-height: 1.3;
}

.post-content h2 em { color: var(--plum); font-style: italic; }

.post-content h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.6em 0 0.5em;
}

.post-content ul,
.post-content ol {
    padding-left: 1.4em;
    margin-bottom: 1.4em;
}

.post-content li { margin-bottom: 0.5em; }

.post-content a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content blockquote {
    position: relative;
    background: var(--peach);
    border-radius: var(--radius-md);
    padding: 28px 32px 28px 60px;
    margin: 2em 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.65;
}

.post-content blockquote::before {
    content: '\201C';
    position: absolute;
    left: 20px;
    top: 16px;
    font-size: 3.5rem;
    font-family: var(--font-head);
    color: var(--plum);
    line-height: 1;
    opacity: 0.5;
}

.post-content blockquote p { margin: 0; color: var(--dark); }

/* ── Tags ── */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8e0eb;
}

.post-tags-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-right: 4px;
}

.post-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--lavender);
    color: var(--plum);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.post-tag:hover {
    background: var(--plum);
    color: var(--white);
}

/* ── Single post responsive ── */
@media (max-width: 768px) {
    .nc-post-hero { height: 300px; margin: 12px 16px; }
    .post-hero-title { font-size: 1.4rem; }
    .nc-post-body { padding: 40px 0 60px; }
    .post-content blockquote { padding: 20px 20px 20px 48px; }
}

/* ============================================================
   20. PAGE TEMPLATE
   ============================================================ */
.nc-page .page-container { padding: 80px 24px; }
.nc-page .page-header { margin-bottom: 40px; }
.nc-page .page-title { color: var(--dark); }
.nc-page .page-content { max-width: 760px; font-size: 1.05rem; color: #757575; line-height: 1.8; }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */

/* ── Small laptop: 1091px–1300px ── */
/* ── Large laptop / narrow desktop ── */
/* ── Hero text scales down earlier ── */
@media (max-width: 1600px) {
    .hero-headline { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 400; }
    .hero-subheading { font-size: clamp(0.9rem, 1.6vw, 1rem); }
    .hero-text { max-width: 700px; }
}

/* ── Nav tightening before hamburger kicks in ── */
@media (max-width: 1450px) {
    .nav-menu { gap: 0; }
    .nav-menu li a { padding: 8px 10px; font-size: 0.9rem; }
}

@media (max-width: 1420px) {

    /* Reduce floating card shell padding */
    .nc-services,
    .nc-differentiator,
    .nc-stats,
    .nc-testimonials,
    .nc-process { padding: 16px 20px; }

    /* Tighten large column gaps */
    .faq-split           { gap: 56px; }
    .services-split      { gap: 48px; }
    .diff-top            { gap: 40px; }
    .testimonials-layout { gap: 20px; }
    .stats-layout        { gap: 36px; }

    /* Contain inner content within floating cards — prevents bleed at tablet widths */
    .nc-services > .container > *,
    .nc-differentiator > .container > *,
    .nc-stats > .container > *,
    .nc-process > .container > *,
    .nc-testimonials > .container > * {
        padding-left: 48px;
        padding-right: 48px;
        min-width: 0;
    }

    /* Prevent grid children overflowing their cells */
    .nc-services,
    .nc-differentiator,
    .nc-stats,
    .nc-testimonials { overflow: hidden; }
}

/* ── Nav collapses to hamburger below 1280px ── */
@media (max-width: 1280px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        border-top: 1px solid var(--grey);
        margin-left: 0;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .nav-menu {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
        gap: 0;
    }
    .nav-menu li { width: 100%; }
    .nav-menu li a { padding: 14px 8px; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--grey); }
    .nav-cta { width: 100%; justify-content: center; }
    .nav-menu li a:hover { background: none; }
}

/* ── Tablet / mobile: everything below 1090px ── */
@media (max-width: 1090px) {
    :root { --section-pad: 56px; --header-h: 90px; }

    /* ── Header: tighter padding and smaller logo on mobile ── */
    .header-inner { padding-left: 16px; padding-right: 16px; }
    .site-logo { height: 70px; margin-top: 8px; }

    /* ── Hide spinning badge on mobile ── */
    .hero-spin-badge,
    .hero-inline-badge { display: none; }

    /* ── Hero ── */
    .nc-hero { height: clamp(520px, 80vw, 720px); }
    .nc-hero-wrapper { margin: 0; border-radius: 0; }
    .hero-ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hero-social-proof { flex-direction: row; }

    /* ── Section spacing ── */
    .section-header { margin-bottom: 36px; }

    /* ── About: 2-col on tablet/mobile (matches demo) ── */
    .about-photo-cards { grid-template-columns: repeat(2, 1fr); }

    /* ── Blog: 2-col on tablet/mobile, proportional image height ── */
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card-img { height: auto; aspect-ratio: 4/3; }

    /* ── Services icon-cards: 2-col at tablet/mobile ── */
    .service-card { flex-basis: calc((100% - 24px) / 2); }

    /* ── Services-split: intro stacks above list; list stays 2-col ── */
    .services-split { grid-template-columns: 1fr; gap: 40px; }
    .services-list  { gap: 24px 20px; }

    /* ── FAQ: left content stacks above accordion ── */
    .faq-split { grid-template-columns: 1fr; gap: 40px; }

    /* ── Differentiator ── */
    .diff-top { grid-template-columns: 1fr; gap: 32px; }
    .diff-partners { margin-bottom: 48px; }
    .partner-logos { gap: 40px 48px; }
    .partner-logo-item img { max-height: 60px; }
    .diff-image-wrap { margin-top: 8px; border-radius: 20px; }
    .nc-differentiator > .container > .diff-image-wrap { margin-left: 0; margin-right: 0; width: 100%; }
    .diff-image-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: center 25%; border-radius: 20px; }
    .diff-image-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 20px 24px 28px; }

    /* ── Stats: stack to single col, show images at fixed height ── */
    .stats-layout { grid-template-columns: 1fr; gap: 32px; }
    .stats-img { display: block; }
    .stats-img img { width: 100%; height: 310px; object-fit: cover; object-position: center 25%; border-radius: var(--radius-lg); }
    .stats-img-left  { margin-top: 0; }
    .stats-img-right { margin-bottom: 0; }
    .stats-counter-item { padding: 0 12px; }

    /* ── Testimonials: outer layout stacks; cards stay 2-per-slide at tablet ── */
    .testimonials-layout { grid-template-columns: 1fr; }
    .testimonials-stats-panel { min-height: 260px; }
    .testimonials-track { gap: 0; }

    /* ── Process ── */
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .step-connector { display: none; }

    /* ── CTA ── */
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    /* ── Floating card shells: tighten outer margins ── */
    .nc-services,
    .nc-differentiator,
    .nc-stats,
    .nc-testimonials,
    .nc-process { padding: 8px 12px; }

    .nc-services > .container,
    .nc-differentiator > .container,
    .nc-stats > .container,
    .nc-testimonials > .container,
    .nc-process > .container { border-radius: 24px; padding: var(--section-pad) 0; }

    /* ── Floating card inner content: horizontal padding so text doesn't touch card edge ── */
    .nc-services > .container > *,
    .nc-differentiator > .container > *,
    .nc-stats > .container > *,
    .nc-process > .container > *,
    .nc-testimonials > .container > * {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* ── Footer ── */
    .nc-cta-section { margin: 0 12px 0; border-radius: 24px 24px 0 0; padding: 48px 0 40px; }
    .cta-spin-badge { width: 90px; height: 90px; top: 20px; right: 20px; }
    .nc-footer { margin: 0 12px 16px; border-radius: 0 0 24px 24px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ── Small mobile ── */
@media (max-width: 520px) {
    :root { --section-pad: 48px; }

    /* About + Blog: 1-col at small mobile */
    .about-photo-cards { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    /* Services: 1-col at small screens */
    .service-card { flex-basis: 100%; }
    .services-list { grid-template-columns: 1fr; gap: 20px; }

    /* Testimonials: 1-per-slide at small mobile */
    .testimonial-card { flex: 0 0 100%; min-width: 0; border-radius: var(--radius); }

    /* Process: single column */
    .process-steps { grid-template-columns: 1fr; }
    .process-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
    .step-number-wrap { width: auto; margin-bottom: 0; flex-shrink: 0; }
    .step-number { width: 52px; height: 52px; min-width: 52px; font-size: 1.1rem; }

    /* Floating card inner padding: tighten further */
    .nc-services > .container > *,
    .nc-differentiator > .container > *,
    .nc-stats > .container > *,
    .nc-process > .container > *,
    .nc-testimonials > .container > * {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Stats: scale down on small phones */
    .stats-img img { height: 240px; }
    /* Diff image: stays tall to show stacked features */
    .diff-image-wrap img { height: 500px; }
    .diff-image-features { grid-template-columns: 1fr; padding: 16px 16px 24px; gap: 12px; }

    /* Full-bleed CTA + footer at phone */
    .nc-cta-section { margin: 0; border-radius: 0; padding: 40px 0 36px; }
    .nc-footer { margin: 0; border-radius: 0; }

    /* CTA heading: prevent overflow */
    .cta-heading { font-size: clamp(1.35rem, 5vw, 1.75rem); overflow-wrap: break-word; }

    /* CTA badge: flow below heading instead of absolute top-right */
    .cta-spin-badge { position: relative; top: auto; right: auto; display: inline-flex; align-items: center; justify-content: center; width: 68px; height: 68px; margin-top: 24px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-brand { grid-column: auto; }
    .trust-list { gap: 10px 20px; }
    .trust-item { font-size: 0.82rem; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── About intro section ── */
.nc-about-intro {
    padding: 72px 0 56px;
    background: var(--white);
}
.about-intro-inner {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}
.about-intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 40px;
}
.about-intro-heading em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--plum);
}

/* ── About approach section ── */
.nc-about-approach {
    padding: var(--section-pad) 0;
    background: var(--peach);
}
.about-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.about-approach-copy {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 32px;
}
.about-approach-img-large {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.about-approach-img-top {
    margin-bottom: 32px;
}
.about-approach-img-top img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.about-approach-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-approach-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.about-approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.about-approach-item:hover .about-approach-icon {
    background: var(--plum);
    color: var(--white);
}
.about-approach-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 6px;
}
.about-approach-item p {
    font-size: 0.88rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1090px) {
    .about-approach-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── About story section ── */
.nc-about-story {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-story-images {
    position: relative;
}
.about-story-img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-story-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 52%;
    border-radius: 16px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 8px 32px rgba(49,13,15,.15);
    aspect-ratio: 1;
}
.about-story-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-story-content {
    padding-bottom: 32px;
}
.about-story-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.6;
}
.about-story-content p {
    font-size: 0.97rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-story-pillars {
    list-style: none;
    padding: 0;
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-story-pillars li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--dark);
}
.about-story-pillars svg { color: var(--plum); flex-shrink: 0; }

/* ── Mission & Vision + Values ── */
.nc-about-mission {
    padding: var(--section-pad) 0;
    background: var(--peach);
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 80px;
}
.mission-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 44px 40px;
    color: var(--white);
}
.mission-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender);
    margin-bottom: 24px;
}
.mission-card-label {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}
.mission-card p {
    font-size: 0.93rem;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin: 0;
}
.about-values-header {
    margin-bottom: 48px;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(49,13,15,.1);
}
.about-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: background var(--transition), color var(--transition);
}
.about-value-card:hover .about-value-icon {
    background: var(--plum);
    color: var(--white);
}
.about-value-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.about-value-card p {
    font-size: 0.88rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}

/* ── About responsive ── */
@media (max-width: 1090px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-story-images { margin-bottom: 32px; }
    .about-story-img-accent { right: 0; bottom: -24px; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .about-values-grid { grid-template-columns: 1fr; }
    .about-story-img-accent { display: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Photo hero ── */
.nc-contact-page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    margin: 20px 40px;
}
.contact-page-hero-bg {
    position: absolute;
    inset: 0;
}
.contact-page-hero-bg img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.contact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(49,13,15,.45) 0%, rgba(49,13,15,.65) 100%);
}
.contact-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}
.contact-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.contact-page-hero-title em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}
.contact-page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,.8);
}
.contact-page-breadcrumb a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color var(--transition);
}
.contact-page-breadcrumb a:hover { color: var(--white); }

/* ── Contact form section ── */
.nc-contact-form-section {
    padding: var(--section-pad) 0 56px;
    background: var(--white);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
}
.contact-form-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.contact-form-heading em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--plum);
}
.contact-form-sub {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Opening hours card */
.contact-hours-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 28px 32px;
    color: var(--white);
}
.contact-hours-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}
.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 14px;
}
.contact-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Form card */
.contact-form-card {
    background: var(--peach);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    background-image: radial-gradient(circle, rgba(128,35,88,.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* CF7 overrides — 2-column grid layout */
.contact-form-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form-card .cf7-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-card .cf7-col,
.contact-form-card p {
    margin: 0;
}
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    box-sizing: border-box;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #a0a0a0;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(128,35,88,.12);
}
.contact-form-card textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form-card .wpcf7-submit,
.contact-form-card input[type="submit"] {
    width: 100%;
    background: var(--plum);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform 0.15s;
    letter-spacing: 0.02em;
}
.contact-form-card .wpcf7-submit:hover,
.contact-form-card input[type="submit"]:hover {
    background: var(--pink);
    transform: translateY(-1px);
}
.contact-form-card .wpcf7-not-valid-tip {
    font-size: 0.78rem;
    color: var(--pink);
    margin-top: 4px;
    display: block;
}
.contact-form-card .wpcf7-response-output {
    border-radius: 8px;
    border: 1.5px solid var(--plum);
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-top: 0;
}
.cf7-missing {
    color: #888;
    font-size: 0.9rem;
    text-align: center;
    padding: 40px 0;
}

/* ── Map + contact info section ── */
.nc-contact-map-section {
    background: var(--white);
    padding-bottom: 80px;
}
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.contact-map-embed {
    position: relative;
    overflow: hidden;
}
.contact-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.contact-map-embed:hover iframe {
    filter: grayscale(0%);
}
.contact-map-info {
    background: var(--white);
    padding: 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-map-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 48px;
}
.contact-map-heading em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--plum);
    display: block;
}
.contact-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.contact-info-block:hover .contact-info-icon {
    background: var(--plum);
    color: var(--white);
}
.contact-info-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.contact-info-block p {
    font-size: 0.88rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}
.contact-info-block a {
    color: #5a5a5a;
    text-decoration: none;
    transition: color var(--transition);
}
.contact-info-block a:hover { color: var(--plum); }

/* ── Contact responsive ── */
@media (max-width: 1090px) {
    .nc-contact-page-hero { height: 300px; border-radius: 16px; margin: 0 16px; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-map-grid  { grid-template-columns: 1fr; }
    .contact-map-embed { height: 360px; position: relative; }
    .contact-map-info  { padding: 48px 32px; }
    .contact-info-blocks { grid-template-columns: 1fr 1fr; }
    .contact-form-card { padding: 28px 24px; }
}
@media (max-width: 640px) {
    .nc-contact-page-hero { height: 260px; margin: 0 12px; border-radius: 12px; }
    .contact-page-hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .contact-form-card .cf7-row { grid-template-columns: 1fr; }
    .contact-info-blocks { grid-template-columns: 1fr; }
    .contact-map-info { padding: 40px 20px; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.nc-faq {
    padding: 100px 0;
    background: var(--white);
}
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.faq-header {
    position: sticky;
    top: 120px;
}
.faq-header .section-heading {
    margin-bottom: 16px;
}
.faq-header .section-intro {
    color: #5a5a5a;
    line-height: 1.75;
}
.faq-header .section-intro a {
    color: var(--plum);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid #e8e0eb;
}
.faq-item:first-child {
    border-top: 1px solid #e8e0eb;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--plum); }
.faq-question[aria-expanded="true"] { color: var(--plum); }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lavender);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    transition: background var(--transition), transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--plum);
    color: var(--white);
    transform: rotate(180deg);
}
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.faq-answer:not([hidden]) {
    max-height: 400px;
}
.faq-answer[hidden] {
    display: block !important;
    max-height: 0;
}
.faq-answer p {
    padding: 0 20px 22px;
    margin: 0;
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.75;
}

/* ── FAQ responsive ── */
@media (max-width: 900px) {
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-header { position: static; }
}
@media (max-width: 640px) {
    .nc-faq { padding: 70px 0; }
    .faq-question { font-size: 0.97rem; padding: 18px 0; }
}

/* ═══════════════════════════════════════
   Testimonials Grid (dedicated page)
═══════════════════════════════════════ */
.nc-testimonials-grid {
    padding: 100px 0;
    background: var(--peach);
}
.tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.tgrid-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.tgrid-card:hover {
    box-shadow: 0 12px 40px rgba(49,13,15,0.10);
    transform: translateY(-4px);
}
.tgrid-stars {
    display: flex;
    gap: 3px;
    color: var(--pink);
}
.tgrid-quote {
    flex: 1;
    margin: 0;
}
.tgrid-quote p {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.75;
    margin: 0;
}
.tgrid-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #ede5f0;
}
.tgrid-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lavender);
    color: var(--plum);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tgrid-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tgrid-name {
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}
.tgrid-location {
    font-size: 0.8rem;
    color: #888;
}

/* ── Testimonials grid responsive ── */
@media (max-width: 1024px) {
    .tgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .nc-testimonials-grid { padding: 70px 0; }
    .tgrid { grid-template-columns: 1fr; gap: 20px; }
    .tgrid-card { padding: 28px 24px; }
}
