/* =========================
   Nordelta (nd-*)
   ========================= */

.nd-page {
    background: #fff;
    min-height: 100vh;
}

.nd-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (min-width: 1024px) {
    .nd-container {
        padding: 0 64px;
    }
}

.nd-section {
    padding: 128px 0;
}

.nd-section--soft {
    background: #fafaf8;
}

/* Kicker */
.nd-kicker {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .90);
    font-size: 12px;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.nd-kicker--dark {
    color: rgba(0, 0, 0, .40);
}

/* Typography */
.nd-h2 {
    margin: 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: rgba(0, 0, 0, .92);
}

.nd-h3 {
    margin: 0;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, .92);
}

.nd-muted {
    margin: 0;
    color: rgba(0, 0, 0, .60);
    font-size: .9375rem;
    line-height: 1.7;
}

.nd-lead {
    margin: 20px 0 0;
    color: rgba(0, 0, 0, .70);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.nd-center {
    text-align: center;
}

.nd-ctaText {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(0, 0, 0, .70);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Hero */
.nd-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.nd-heroMedia {
    position: absolute;
    inset: 0;
}

.nd-heroMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nd-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0));
}

.nd-heroInner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 64px;
}

.nd-heroTitle {
    margin: 0;
    max-width: 48rem;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}

/* Intro layout */
.nd-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

.nd-introRight {
    color: #4a4a4a;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.nd-introRight p {
    margin: 0 0 18px;
}

.nd-introRight p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .nd-intro {
        grid-template-columns: 2fr 3fr;
        gap: 64px;
    }
}

/* Features */
.nd-features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .nd-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nd-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nd-feature {
    display: grid;
    gap: 16px;
}

.nd-featureIcon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(232, 223, 208, .50);
    color: rgba(0, 0, 0, .60);
}

.nd-featureIcon svg {
    width: 20px;
    height: 20px;
}

/* Neighborhoods */
.nd-neigh {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nd-neigh {
        grid-template-columns: 1fr 1fr;
    }
}

.nd-tags {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.nd-tag {
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, .10);
    transition: border-color .25s ease;
    font-size: .9375rem;
    letter-spacing: .02em;
    color: rgba(0, 0, 0, .85);
}

.nd-tag:hover {
    border-color: rgba(0, 0, 0, .30);
}

.nd-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}

.nd-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery */
.nd-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .nd-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nd-gItem {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.nd-gItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.nd-gItem:hover img {
    transform: scale(1.05);
}

/* CTA button */
.nd-cta {
    text-align: center;
}

.nd-btn {
    display: inline-block;
    margin-top: 32px;
    background: #0b0b0b;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    transition: background .25s ease;
    letter-spacing: .05em;
    font-size: .875rem;
}

.nd-btn:hover {
    background: rgba(0, 0, 0, .90);
}