/* /assets/css/style.css */

/* Root + Typography ------------------------------------------------------- */

:root {
    --ns-bg: #ffffff;
    --ns-text: #111111;
    --ns-muted: #666666;
    --ns-border: #e4e4e4;
    --ns-black: #000000;
    --ns-hot-pink: #ff008c;
    --ns-hot-pink-soft: #ffe1f0;
    --ns-serif: "Playfair Display", "Times New Roman", serif;
    --ns-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    box-sizing: border-box;
    font-size: 18px; /* Bigger default text */
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: var(--ns-bg);
    color: var(--ns-text);
    font-family: var(--ns-sans);
    -webkit-font-smoothing: antialiased;
}

/* Remove default rounded corners from Bootstrap -------------------------- */

.btn,
.form-control,
.card,
.navbar,
.navbar-toggler,
.dropdown-menu,
.badge,
.alert {
    border-radius: 0 !important;
}

/* Global spacing ---------------------------------------------------------- */

.ns-main {
    padding-top: 3.5rem; /* for header */
}

section.ns-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 992px) {
    section.ns-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Header / Navbar --------------------------------------------------------- */

.ns-site-header {
    background-color: #ffffff;
}

.ns-navbar {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.ns-logo {
    font-family: var(--ns-serif);
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    max-width: min(18rem, 48vw);
    margin-right: 1rem;
}

.ns-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 2.75rem;
    object-fit: contain;
}

.ns-nav-list .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111111;
    padding: 0.35rem 0;
    margin-left: 1.75rem;
    position: relative;
}

.ns-nav-list .nav-link:hover {
    color: var(--ns-hot-pink);
}

.ns-nav-list .nav-link.active {
    color: #111111;
}

.ns-nav-list .nav-link.active::after,
.ns-nav-list .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.4rem;
    width: 100%;
    height: 1px;
    background-color: var(--ns-hot-pink);
}

.navbar-toggler {
    padding: 0.25rem 0.4rem;
}

/* Buttons ----------------------------------------------------------------- */

.ns-btn-primary {
    background-color: var(--ns-hot-pink);
    color: #ffffff;
    border: 1px solid var(--ns-hot-pink);
    padding: 0.9rem 1.9rem;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
}

.ns-btn-primary:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.ns-btn-outline {
    background-color: transparent;
    color: #111111;
    border: 1px solid #111111;
    padding: 0.9rem 1.9rem;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
}

.ns-btn-outline:hover {
    background-color: #111111;
    color: #ffffff;
}

/* Hero -------------------------------------------------------------------- */

.ns-hero-section {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .ns-hero-section {
        padding-top: 1.75rem;
        padding-bottom: 3.25rem;
    }
}

.ns-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--ns-muted);
}

.ns-hero-title {
    font-family: var(--ns-serif);
    font-weight: 600;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    line-height: 1.02;
}

.ns-hero-text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ns-muted);
    max-width: 36rem;
}

.ns-hero-card {
    border: 1px solid var(--ns-border);
    padding: 1rem;
    background-color: #ffffff;
}

.ns-hero-slideshow {
    position: relative;
    height: clamp(34rem, 68vh, 48rem);
    overflow: hidden;
    border: 1px solid #111111;
    background-color: #f6f4f1;
}

.ns-hero-slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(0deg, rgba(17, 17, 17, 0.1), transparent 30%);
    z-index: 3;
}

.ns-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: translateX(100%);
    animation: nsHeroSlide 24s cubic-bezier(0, 0, 0.18, 1) infinite;
    will-change: transform;
}

.ns-hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.ns-hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.ns-hero-slide:nth-child(3) {
    animation-delay: 12s;
}

.ns-hero-slide:nth-child(4) {
    animation-delay: 18s;
}

.ns-hero-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes nsHeroSlide {
    0% {
        transform: translateX(100%);
    }

    8% {
        transform: translateX(0);
    }

    28% {
        transform: translateX(0);
    }

    36% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ns-hero-image-placeholder {
    position: relative;
    border: 1px solid #111111;
    min-height: 260px;
    background-color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-hero-image-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--ns-muted);
}

.ns-hero-caption {
    font-size: 0.9rem;
    color: var(--ns-muted);
    line-height: 1.7;
}

.ns-hero-badge {
    border-top: 1px solid var(--ns-border);
}

.ns-hero-badge-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--ns-hot-pink);
}

.ns-hero-badge-text {
    font-size: 0.9rem;
    color: var(--ns-muted);
}

/* Sections / Titles ------------------------------------------------------- */

.ns-section-title {
    font-family: var(--ns-serif);
    font-size: clamp(1.9rem, 3.5vw, 2.3rem);
    line-height: 1.1;
}

.ns-section-text {
    font-size: 0.98rem;
    color: var(--ns-muted);
    max-width: 40rem;
}

/* Service Cards ----------------------------------------------------------- */

.ns-services-section .row {
    row-gap: 2rem;
}

.ns-service-card {
    border: 1px solid var(--ns-border);
    padding: 2.1rem 2rem;
    background-color: #ffffff;
}

.ns-service-title {
    font-family: var(--ns-serif);
    font-size: 1.35rem;
}

.ns-service-text {
    font-size: 0.95rem;
    color: var(--ns-muted);
}

.ns-service-tag {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: #111111;
}

/* Studio / Botanical ------------------------------------------------------ */

.ns-botanical-frame {
    border: 1px solid var(--ns-border);
    padding: 2.3rem 2.2rem;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.ns-botanical-accent {
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    width: 52px;
    height: 52px;
    border: 1px solid var(--ns-hot-pink);
    border-bottom: none;
    border-left: none;
}

.ns-botanical-content {
    position: relative;
    z-index: 2;
}

.ns-video-feature {
    position: relative;
    isolation: isolate;
    border-color: rgba(255, 225, 240, 0.55);
    background-color: #2d1b23;
    overflow: hidden;
}

.ns-video-feature .container-fluid {
    position: relative;
    z-index: 2;
}

.ns-video-feature .row {
    min-height: 31rem;
    align-items: center !important;
}

.ns-video-feature .col-lg-6,
.ns-video-feature .col-lg-5 {
    display: flex;
    align-items: center;
}

.ns-video-feature .ns-botanical-accent {
    border-color: rgba(255, 255, 255, 0.72);
    z-index: 2;
}

.ns-video-copy-panel {
    width: 100%;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(41, 16, 26, 0.56), rgba(41, 16, 26, 0.38));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 229, 238, 0.4);
    box-shadow: 0 18px 45px rgba(27, 8, 16, 0.22);
}

.ns-video-feature .ns-botanical-frame {
    padding: 3.4rem 2.4rem 2.5rem;
}

.ns-video-feature .ns-botanical-content,
.ns-video-feature .ns-studio-list {
    max-width: 32rem;
}

.ns-video-feature .ns-section-title,
.ns-video-feature .ns-section-text,
.ns-video-feature .ns-eyebrow,
.ns-video-feature .ns-checklist li {
    color: #ffffff;
}

.ns-video-feature .ns-studio-list {
    align-self: center;
    padding: 2.15rem 2rem;
}

.ns-video-feature .ns-checklist li {
    margin-bottom: 0.75rem;
}

.ns-video-feature .ns-section-text,
.ns-video-feature .ns-botanical-content {
    max-width: 34rem;
}

.ns-video-feature .ns-botanical-content {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.ns-video-feature .ns-botanical-content > * {
    margin-bottom: 0 !important;
}

.ns-video-feature-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(248, 200, 220, 0.35), rgba(17, 17, 17, 0.2)),
        #c48a9f;
}

.ns-video-feature-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 215, 232, 0.28), rgba(35, 15, 22, 0.32)),
        linear-gradient(90deg, rgba(28, 12, 18, 0.52), rgba(28, 12, 18, 0.18) 58%, rgba(28, 12, 18, 0.42));
}

.ns-video-feature-embed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100%);
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.ns-video-feature-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.ns-video-feature-actions {
    margin-top: 0.65rem;
}

.ns-video-feature .ns-studio-list .ns-checklist li {
    color: #ffffff;
}

.ns-studio-list .ns-checklist li {
    font-size: 0.95rem;
    color: var(--ns-muted);
    margin-bottom: 0.6rem;
}

/* Featured / Gallery ------------------------------------------------------ */

.ns-feature-card {
    border: 1px solid var(--ns-border);
    padding: 1.6rem 1.5rem 1.8rem;
    background-color: #ffffff;
}

.ns-feature-image-placeholder {
    width: 100%;
    padding-top: 130%;
    border: 1px solid #111111;
    background-color: #fdfdfd;
}

.ns-feature-caption {
    font-size: 0.9rem;
    color: var(--ns-muted);
}

/* About Page -------------------------------------------------------------- */

.ns-about-title {
    font-family: var(--ns-serif);
    font-weight: 600;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.02;
}

.ns-about-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #2c2c2c;
    max-width: 38rem;
}

.ns-about-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 225, 240, 0.7), transparent 40%),
        #ffffff;
}

.ns-about-hero-media {
    display: grid;
    gap: 1.1rem;
}

.ns-about-portrait,
.ns-about-feature-image,
.ns-about-gallery-large,
.ns-about-gallery-small {
    overflow: hidden;
    border: 1px solid var(--ns-border);
    background-color: #f8f6f4;
}

.ns-about-portrait img,
.ns-about-feature-image img,
.ns-about-gallery-large img,
.ns-about-gallery-small img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-about-portrait {
    min-height: 18rem;
    max-height: 22rem;
}

.ns-about-portrait img {
    min-height: 18rem;
    max-height: 22rem;
}

.ns-about-feature-image {
    min-height: 14rem;
    max-height: 17rem;
}

.ns-about-feature-image img {
    min-height: 14rem;
    max-height: 17rem;
}

.ns-about-feature-offset {
    margin-left: 2.5rem;
}

.ns-about-side-note {
    max-width: 18rem;
    padding: 1.25rem 1.2rem;
    border: 1px solid var(--ns-border);
    background: linear-gradient(180deg, #fff9fc, #fffefc);
    color: var(--ns-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.ns-about-story-copy {
    max-width: 31rem;
}

.ns-about-quote-section {
    position: relative;
    overflow: hidden;
    background-color: #fdf3f8;
}

.ns-about-quote-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 225, 240, 0.88), rgba(255, 246, 251, 0.9)),
        linear-gradient(90deg, rgba(17, 17, 17, 0.04), transparent);
    background-attachment: fixed;
}

.ns-about-quote-card {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2.6rem;
    border: 1px solid rgba(255, 0, 140, 0.16);
    background-color: rgba(255, 255, 255, 0.8);
}

.ns-about-quote {
    font-family: var(--ns-serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.28;
}

.ns-about-facts-section {
    background-color: #fffdfd;
}

.ns-about-fact-card {
    height: 100%;
    padding: 2rem 1.8rem;
    border: 1px solid var(--ns-border);
    background: linear-gradient(180deg, #fff9fc, #ffffff);
}

.ns-about-fact-label {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: var(--ns-hot-pink);
}

.ns-about-fact-text {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--ns-muted);
}

.ns-about-gallery-large {
    min-height: 16rem;
    max-height: 18rem;
}

.ns-about-gallery-large img {
    min-height: 16rem;
    max-height: 18rem;
}

.ns-about-gallery-small {
    min-height: 8rem;
    max-height: 9.5rem;
}

.ns-about-gallery-small img {
    min-height: 8rem;
    max-height: 9.5rem;
}

.ns-about-values-section {
    background: linear-gradient(180deg, #ffffff, #fff9fc);
}

/* Services Page ----------------------------------------------------------- */

.ns-services-hero {
    background: linear-gradient(180deg, #ffffff, #fff9fc);
}

.ns-service-hero-stack {
    height: 100%;
}

.ns-service-hero-image,
.ns-service-feature-image {
    overflow: hidden;
    border: 1px solid var(--ns-border);
    background-color: #f8f6f4;
}

.ns-service-hero-image {
    height: clamp(28rem, 44vw, 38rem);
    min-height: 100%;
    width: 100%;
}

.ns-service-feature-image {
    min-height: 14rem;
    max-height: 16rem;
}

.ns-service-hero-image img,
.ns-service-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.ns-services-priority-section {
    background-color: #fff7fb;
}

.ns-service-pmu-band {
    background:
        linear-gradient(90deg, #fff8fb 0%, #fff8fb 54%, #ffffff 54%, #ffffff 100%);
}

.ns-service-pmu-copy {
    max-width: 30rem;
}

.ns-services-secondary-section {
    background-color: #ffffff;
}

.ns-service-showcase {
    border: 1px solid var(--ns-border);
    background-color: #ffffff;
    overflow: hidden;
}

.ns-service-showcase .row {
    height: 100%;
}

.ns-service-showcase [class*="col-md-"] {
    display: flex;
}

.ns-service-showcase .col-md-5 {
    flex: 0 0 398px;
    width: 398px;
}

.ns-service-showcase .col-md-7 {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.ns-service-showcase-image {
    height: 100%;
    min-height: 100%;
    padding: 1.5rem;
    background-color: #f8f6f4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ns-service-showcase-image img {
    width: 350px;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
}

.ns-service-showcase-copy {
    padding: 1.75rem 1.5rem;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ns-services-checklist li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--ns-muted);
}

.ns-services-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    background-color: var(--ns-hot-pink);
}

.ns-service-consult-band {
    background: linear-gradient(180deg, #fffafc, #fff4fa);
}

.ns-service-consult-image {
    overflow: hidden;
    border: 1px solid rgba(255, 0, 140, 0.1);
    background-color: #f8f6f4;
    min-height: 11rem;
    max-height: 13rem;
}

.ns-service-consult-image img {
    width: 100%;
    height: 100%;
    min-height: 11rem;
    max-height: 13rem;
    object-fit: cover;
}

.ns-service-consult-copy {
    max-width: 38rem;
}

.ns-service-note {
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--ns-hot-pink);
    background-color: #fff7fb;
    color: #444444;
    font-size: 0.92rem;
    line-height: 1.7;
}

.ns-services-seo-band {
    background: linear-gradient(180deg, #ffffff, #fff8fb);
}

/* Gallery Page ------------------------------------------------------------ */

.ns-gallery-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 225, 240, 0.7), transparent 40%),
        linear-gradient(180deg, #ffffff, #fff9fc);
}

.ns-gallery-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-start;
}

.ns-gallery-jump-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.1rem;
    border: 1px solid var(--ns-border);
    color: #111111;
    text-decoration: none;
    background-color: #ffffff;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ns-gallery-jump-link:hover {
    color: var(--ns-hot-pink);
    border-color: var(--ns-hot-pink);
}

.ns-gallery-section:nth-of-type(odd) {
    background-color: #fffdfd;
}

.ns-gallery-grid {
    column-count: 4;
    column-gap: 1rem;
}

.ns-gallery-thumb {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: 0;
    border: 1px solid var(--ns-border);
    background-color: #f8f6f4;
    break-inside: avoid;
    cursor: pointer;
    overflow: hidden;
}

.ns-gallery-thumb img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.ns-gallery-thumb:hover img {
    transform: scale(1.02);
    opacity: 0.94;
}

.ns-gallery-empty {
    padding: 1.4rem 1.2rem;
    border: 1px solid var(--ns-border);
    background-color: #fff9fc;
    color: var(--ns-muted);
}

.ns-gallery-lightbox[hidden] {
    display: none;
}

.ns-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.ns-gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.82);
}

.ns-gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(94vw, 1100px);
    max-height: 90vh;
    min-height: 90vh;
    margin: 5vh auto;
    display: grid;
    grid-template-columns: 4rem 1fr 4rem;
    align-items: center;
}

.ns-gallery-lightbox-figure {
    margin: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.9rem;
}

.ns-gallery-lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(90vh - 7.5rem);
    object-fit: contain;
}

.ns-gallery-lightbox-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 900px);
    gap: 1rem;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.ns-gallery-lightbox-nav,
.ns-gallery-lightbox-close {
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
}

.ns-gallery-lightbox-nav {
    width: 3rem;
    height: 3rem;
    font-size: 1.35rem;
}

.ns-gallery-lightbox-close {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    z-index: 2;
}

/* Contact Page ------------------------------------------------------------ */

.ns-contact-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 225, 240, 0.7), transparent 40%),
        linear-gradient(180deg, #ffffff, #fff9fc);
}

.ns-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ns-contact-card {
    padding: 1.7rem 1.5rem;
    border: 1px solid var(--ns-border);
    background: linear-gradient(180deg, #ffffff, #fffafb);
}

.ns-contact-link {
    display: inline-block;
    color: #111111;
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ns-contact-link:hover {
    color: var(--ns-hot-pink);
}

.ns-contact-location-section {
    background: linear-gradient(180deg, #fffdfd, #ffffff);
}

.ns-contact-map-card {
    border: 1px solid var(--ns-border);
    padding: 1rem;
    background-color: #ffffff;
}

.ns-contact-map-shell {
    position: relative;
    overflow: hidden;
    min-height: 24rem;
}

.ns-contact-map-shell iframe {
    width: 100%;
    min-height: 24rem;
    border: 0;
}

.ns-contact-social-strip {
    background: linear-gradient(180deg, #fff8fb, #ffffff);
}

.ns-contact-social-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
    padding: 1.5rem 1.35rem;
    border: 1px solid var(--ns-border);
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
}

.ns-contact-social-card strong {
    font-family: var(--ns-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.ns-contact-social-card span:last-child {
    color: var(--ns-muted);
    line-height: 1.7;
}

.ns-contact-social-card:hover {
    border-color: var(--ns-hot-pink);
    color: #111111;
}

/* CTA strip --------------------------------------------------------------- */

.ns-cta-section {
    background-color: var(--ns-hot-pink-soft);
}

/* Footer ------------------------------------------------------------------ */

.ns-footer-logo {
    font-family: var(--ns-serif);
    letter-spacing: 0.18em;
    font-size: 0.95rem;
}

.ns-footer-text {
    font-size: 0.9rem;
    color: var(--ns-muted);
}

.ns-footer-heading {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
}

.ns-footer-links li + li {
    margin-top: 0.3rem;
}

.ns-footer-links a {
    font-size: 0.9rem;
    color: #111111;
    text-decoration: none;
}

.ns-footer-links a:hover {
    color: var(--ns-hot-pink);
}

.ns-footer-small {
    font-size: 0.78rem;
    color: var(--ns-muted);
}

/* Utilities --------------------------------------------------------------- */

.w-lg-auto {
    width: auto;
}

@media (max-width: 991.98px) {
    .ns-main {
        padding-top: 3.25rem;
    }

    .ns-navbar .ns-nav-list .nav-link {
        margin-left: 0;
        padding: 0.6rem 0;
    }

    .w-lg-auto {
        width: 100%;
    }

    .ns-hero-card {
        margin-top: 1rem;
    }

    .ns-hero-slideshow {
        height: clamp(24rem, 62vh, 36rem);
    }

    .ns-service-showcase [class*="col-md-"] {
        display: block;
        width: 100%;
    }

    .ns-service-showcase .col-md-5,
    .ns-service-showcase .col-md-7 {
        flex: 0 0 auto;
        width: 100%;
    }

    .ns-service-showcase .order-md-1,
    .ns-service-showcase .order-md-2 {
        order: initial !important;
    }

    .ns-gallery-grid {
        column-count: 3;
    }

    .ns-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    section.ns-section {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .ns-hero-section {
        padding-top: 1.1rem;
        padding-bottom: 2.5rem;
    }

    .container-fluid.px-4,
    .container-fluid.px-4.px-lg-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .ns-logo {
        max-width: min(15rem, 34vw);
        margin-right: 0.75rem;
    }

    .ns-logo img {
        max-height: 2.55rem;
    }

    .ns-navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .ns-nav-list .nav-link {
        margin-left: 1rem;
        font-size: 0.8rem;
    }

    .ns-hero-section .row,
    .ns-studio-section .row,
    .ns-featured-section .row {
        row-gap: 2.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .ns-services-section .container-fluid,
    .ns-studio-section .container-fluid,
    .ns-featured-section .container-fluid,
    .ns-cta-section .container-fluid {
        padding-left: 1.35rem !important;
        padding-right: 1.35rem !important;
    }

    .ns-services-section .ns-services-wrapper {
        padding: 2rem 1.25rem;
    }

    .ns-service-card {
        padding: 1.6rem 1.25rem;
    }

    .ns-botanical-frame {
        padding: 1.85rem 1.35rem;
    }

    .ns-logo {
        max-width: min(9.5rem, 44vw);
        margin-right: 0.35rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .ns-logo img {
        max-height: 1.8rem;
    }

    .ns-navbar {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
    }

    .navbar-toggler {
        padding: 0.15rem 0.25rem;
    }

    .ns-video-feature {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .ns-video-feature .row {
        min-height: 24rem;
    }

    .ns-video-feature-embed {
        width: max(180vw, 177.78vh);
        height: max(101.25vw, 100%);
    }

    .ns-video-feature .ns-studio-list {
        padding: 1.85rem 1.35rem;
    }

    .ns-video-feature .ns-botanical-frame {
        padding: 2.5rem 1.5rem 1.9rem;
    }

    .ns-feature-card {
        padding: 1.25rem 1.1rem 1.4rem;
    }

    .ns-about-portrait,
    .ns-about-portrait img {
        min-height: 15rem;
        max-height: 17rem;
    }

    .ns-about-feature-image,
    .ns-about-feature-image img {
        min-height: 12rem;
        max-height: 14rem;
    }

    .ns-about-gallery-large,
    .ns-about-gallery-large img {
        min-height: 13rem;
        max-height: 14rem;
    }

    .ns-about-gallery-small,
    .ns-about-gallery-small img {
        min-height: 9rem;
        max-height: 10rem;
    }

    .ns-about-fact-card {
        padding: 1.6rem 1.35rem;
    }

    .ns-about-feature-offset {
        margin-left: 0;
    }

    .ns-about-quote-bg {
        background-attachment: scroll;
    }

    .ns-about-quote-card {
        padding: 1.8rem 1.4rem;
    }

    .ns-service-hero-image {
        height: clamp(20rem, 72vw, 28rem);
        min-height: 0;
    }

    .ns-service-hero-image img {
        min-height: 0;
        max-height: none;
    }

    .ns-service-feature-image,
    .ns-service-feature-image img {
        min-height: 11rem;
        max-height: 12rem;
    }

    .ns-service-consult-image,
    .ns-service-consult-image img {
        min-height: 10rem;
        max-height: 11rem;
    }

    .ns-service-showcase-image {
        min-height: auto;
        padding: 1.2rem;
    }

    .ns-service-showcase-image img {
        width: min(100%, 350px);
        height: auto;
        aspect-ratio: 7 / 9;
    }

    .ns-service-showcase-copy {
        padding: 1.4rem 1.2rem;
    }

    .ns-service-pmu-band {
        background: #fff8fb;
    }

    .ns-gallery-jump {
        gap: 0.55rem;
    }

    .ns-gallery-jump-link {
        padding: 0.72rem 0.9rem;
        font-size: 0.76rem;
    }

    .ns-gallery-grid {
        column-count: 2;
        column-gap: 0.7rem;
    }

    .ns-gallery-thumb {
        margin-bottom: 0.7rem;
    }

    .ns-gallery-lightbox-dialog {
        width: 94vw;
        min-height: 88vh;
        max-height: 88vh;
        margin: 6vh auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        padding: 3.25rem 0.25rem 3.5rem;
        align-items: center;
    }

    .ns-gallery-lightbox-figure {
        height: auto;
        max-height: 100%;
        justify-content: center;
    }

    .ns-gallery-lightbox-image {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: calc(88vh - 8.75rem);
    }

    .ns-gallery-lightbox-caption {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0.35rem;
        font-size: 0.84rem;
    }

    .ns-gallery-lightbox-nav {
        position: absolute;
        bottom: 0.35rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    .ns-gallery-lightbox-prev {
        left: 0;
    }

    .ns-gallery-lightbox-next {
        right: 0;
    }

    .ns-contact-map-shell,
    .ns-contact-map-shell iframe {
        min-height: 18rem;
    }

    .ns-contact-card,
    .ns-contact-social-card {
        padding: 1.35rem 1.2rem;
    }

    .ns-cta-section .row {
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
}

/* Before and after slider ----------------------------------------------- */

.ns-before-after {
    position: relative;
    width: 100%;
    padding-top: 133%; /* keeps the 600 x 800 look */
    background-color: #f5f5f5;
    overflow: hidden;
    cursor: ns-resize;
    --ba-progress: 50%; /* visible part of AFTER image from the bottom */
}

.ns-ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The AFTER image is clipped vertically from the bottom up */
.ns-ba-after-clip {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: var(--ba-progress);
    overflow: hidden;
}

/* Handle: horizontal line and a small draggable dot */
.ns-ba-handle {
    position: absolute;
    left: 0;
    width: 100%;
    top: calc(100% - var(--ba-progress));
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* JS listens on the whole container */
}

.ns-ba-handle-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.95);
}

.ns-ba-handle-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    pointer-events: auto;
}

@media (max-width: 991px) {
    .potop {
        background-image: linear-gradient(#000000, #272727); /* Orange-red to lavender */
        height: 25px; /* Example height for visibility */
        width: 100%; /* Example width */
    }
    .ns-main {
        padding-top: 0px;
    }
}

@media (min-width: 992px) {
  .px-lg-5 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
}

.ns-before-after {
    position: relative;
    width: 100%;
    padding-top: 133%; /* keeps the 600 x 800 look */
    background-color: #f5f5f5;
    overflow: hidden;
    cursor: ns-resize;
    --ba-progress: 50%; /* visible part of AFTER image from the bottom */

    /* NEW: make dragging smooth */
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.ns-ba-handle-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    pointer-events: auto;
    cursor: grab; /* optional, just looks nicer */
}

/* AFTER CHANGES TO TREATMENTS AREA */

.ns-services-section {
    background-color: transparent;
}

.ns-services-section .ns-services-wrapper {
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    padding: 4rem 1rem;
}
