/* =============================================
   NHC Frontend — Community Microsite Styles
   Design system from socalnewconstructionexpert.com
   ============================================= */

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

:root {
    --nhc-dark: #1d2633;
    --nhc-footer-bg: #1e242e;
    --nhc-coral: #ff886e;
    --nhc-blue: #0067FF;
    --nhc-white: #FFFFFF;
    --nhc-light-bg: #E7F6FF;
    --nhc-light-gray: #f4f6f9;
    --nhc-body-text: #364151;
    --nhc-body-text-light: #59606e;
    --nhc-heading: #0F172A;
    --nhc-max-width: 1200px;
    --nhc-font-primary: 'DM Sans', sans-serif;
    --nhc-font-display: 'Forum', display;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body.nhc-page {
    font-family: var(--nhc-font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--nhc-body-text);
    background: var(--nhc-white);
    -webkit-font-smoothing: antialiased;
}

/* Hide WP admin bar gap, default headers */
body.nhc-page #masthead,
body.nhc-page .entry-header,
body.nhc-page .post-title {
    display: none !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--nhc-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--nhc-font-primary);
    font-weight: 400;
    color: var(--nhc-heading);
    line-height: 1.3;
}

h1 { font-size: 64px; line-height: 1.15; }
h2 { font-size: 40px; letter-spacing: -2px; }
h3 { font-size: 20px; }
h4 { font-family: var(--nhc-font-display); font-size: 35px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT HELPERS === */
.nhc-section {
    width: 100%;
    padding: 36px 20px;
}

.nhc-container {
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    width: 100%;
}

/* === TOP NAV BAR === */
.nhc-topnav {
    background: #141a24;
    padding: 10px 20px;
}

.nhc-topnav__inner {
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nhc-topnav__home {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.nhc-topnav__home:hover {
    color: var(--nhc-white);
    text-decoration: none;
}

.nhc-topnav__communities {
    color: var(--nhc-coral);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.nhc-topnav__communities:hover {
    color: var(--nhc-white);
    text-decoration: none;
}

/* === CORAL SEPARATOR === */
.nhc-separator {
    width: 4rem;
    height: 4px;
    background: var(--nhc-coral);
    border: none;
    border-radius: 0;
    margin: 10px 0 16px;
}

.nhc-separator--white {
    background: var(--nhc-white);
}

/* === CTA BUTTONS === */
.nhc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--nhc-coral);
    border-radius: 30px;
    color: var(--nhc-coral);
    font-family: var(--nhc-font-primary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nhc-btn:hover {
    background: var(--nhc-coral);
    color: var(--nhc-white);
    text-decoration: none;
}

.nhc-btn--white {
    border-color: var(--nhc-white);
    color: var(--nhc-white);
}

.nhc-btn--white:hover {
    background: var(--nhc-white);
    color: var(--nhc-dark);
}

.nhc-text-link {
    color: var(--nhc-coral);
    font-weight: 500;
    text-decoration: none;
}

.nhc-text-link:hover {
    text-decoration: underline;
}

/* === §1 HERO === */
.nhc-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: var(--nhc-dark);
    border-bottom: 10px solid var(--nhc-coral);
    overflow: hidden;
}

.nhc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nhc-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nhc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(29,38,51,0.7) 0%, rgba(29,38,51,0.85) 100%);
    z-index: 1;
}

.nhc-hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    padding: 80px 20px;
    color: var(--nhc-white);
}

.nhc-hero__eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nhc-coral);
    margin-bottom: 16px;
}

.nhc-hero h1 {
    color: var(--nhc-white);
    margin-bottom: 16px;
}

.nhc-hero h2 {
    color: rgba(255,255,255,0.9);
    font-size: 24px;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 8px;
}

.nhc-hero h3 {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 32px;
}

.nhc-hero__ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Sold-out banner overlay */
.nhc-sold-out-banner {
    background: var(--nhc-coral);
    color: var(--nhc-white);
    text-align: center;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
}

.nhc-sold-out-banner a {
    color: var(--nhc-white);
    text-decoration: underline;
}

/* === §2 QUICK FACTS BAR === */
.nhc-facts {
    background: var(--nhc-dark);
    padding: 24px 20px;
}

.nhc-facts__inner {
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nhc-fact {
    color: var(--nhc-white);
    font-size: 15px;
    white-space: nowrap;
}

.nhc-fact__label {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.nhc-fact__value {
    font-weight: 600;
    font-size: 18px;
}

/* === §3 COMMUNITY DESCRIPTION === */
.nhc-community-desc {
    background: var(--nhc-white);
}

.nhc-community-desc p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--nhc-body-text);
    margin-bottom: 1.2em;
}

/* === WHY WORK WITH STEVE (VALUE PROP) === */
.nhc-value-prop {
    background: var(--nhc-dark);
    color: var(--nhc-white);
}

.nhc-value-prop h2 {
    color: var(--nhc-white);
    text-align: center;
}

.nhc-value-prop .nhc-separator--white {
    margin-left: auto;
    margin-right: auto;
}

.nhc-value-prop__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.nhc-value-prop__item {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid var(--nhc-coral);
}

.nhc-value-prop__item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--nhc-coral);
    margin-bottom: 8px;
}

.nhc-value-prop__item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.nhc-value-prop__cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nhc-value-prop__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* === §4 FLOOR PLANS & MODELS === */
.nhc-models {
    background: var(--nhc-light-gray);
}

.nhc-models__row {
    position: relative;
    overflow: hidden;
}

.nhc-models__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    scrollbar-width: none;
}

.nhc-models__track::-webkit-scrollbar {
    display: none;
}

.nhc-model-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--nhc-white);
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.nhc-model-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Image carousel within card */
.nhc-card-carousel {
    position: relative;
    height: 280px;
    background: var(--nhc-light-gray);
    overflow: hidden;
}

.nhc-card-carousel__slide {
    position: absolute;
    inset: 0;
    display: none;
}

.nhc-card-carousel__slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nhc-card-carousel__slide img {
    width: 100%;
    height: 100%;
}

.nhc-card-carousel__slide img.nhc-img-cover {
    object-fit: cover;
}

.nhc-card-carousel__slide img.nhc-img-contain {
    object-fit: contain;
    background: var(--nhc-light-gray);
}

/* Card carousel prev/next arrows */
.nhc-card-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.nhc-card-nav:hover {
    background: var(--nhc-coral);
    border-color: var(--nhc-coral);
}

.nhc-card-nav--prev { left: 8px; }
.nhc-card-nav--next { right: 8px; }

.nhc-card-carousel__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.nhc-card-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 0;
    transition: all 0.2s;
}

.nhc-card-carousel__dot.active {
    background: var(--nhc-coral);
    border-color: var(--nhc-coral);
}

.nhc-model-card__body {
    padding: 16px 20px;
}

.nhc-model-card__name {
    font-size: 18px;
    font-weight: 500;
    color: var(--nhc-heading);
    margin-bottom: 6px;
}

.nhc-model-card__specs {
    font-size: 14px;
    color: var(--nhc-body-text-light);
    margin-bottom: 8px;
}

.nhc-model-card__price {
    font-size: 16px;
    font-weight: 600;
    color: var(--nhc-coral);
    margin-bottom: 10px;
}

.nhc-model-card__cta {
    font-size: 14px;
    color: var(--nhc-blue);
    font-weight: 500;
}

/* Scroll arrows */
.nhc-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--nhc-white);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 18px;
    color: var(--nhc-heading);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.nhc-scroll-arrow:hover {
    background: var(--nhc-coral);
    color: var(--nhc-white);
    border-color: var(--nhc-coral);
}

.nhc-scroll-arrow--left { left: -8px; }
.nhc-scroll-arrow--right { right: -8px; }

/* === §6 LOCATION & DRIVE TIMES === */
.nhc-location {
    background: var(--nhc-white);
}

.nhc-location h2 {
    text-align: center;
}

.nhc-location .nhc-separator {
    margin-left: auto;
    margin-right: auto;
}

.nhc-map-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.nhc-map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.nhc-drive-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
}

.nhc-drive-table th {
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nhc-body-text-light);
    padding: 10px 0;
    border-bottom: 2px solid #eee;
}

.nhc-drive-table td {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 17px;
}

.nhc-drive-table td:first-child {
    font-weight: 500;
    color: var(--nhc-heading);
}

.nhc-drive-table td:nth-child(2) {
    color: var(--nhc-blue);
    font-weight: 600;
    text-align: right;
    font-size: 17px;
}

.nhc-drive-table td:nth-child(3) {
    text-align: right;
    padding-left: 16px;
}

.nhc-drive-table a {
    font-size: 14px;
    color: var(--nhc-blue);
    font-weight: 500;
}

/* === §7 NEIGHBORHOOD AMENITIES (TABS) === */
.nhc-amenities {
    background: var(--nhc-light-gray);
}

.nhc-amenities h2 {
    text-align: center;
}

.nhc-amenities .nhc-separator {
    margin-left: auto;
    margin-right: auto;
}

.nhc-tab-row {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #ddd;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.nhc-tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-family: var(--nhc-font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--nhc-body-text-light);
    transition: all 0.15s;
}

.nhc-tab-btn:hover {
    color: var(--nhc-heading);
}

.nhc-tab-btn.active {
    color: var(--nhc-heading);
    border-bottom-color: var(--nhc-coral);
}

.nhc-tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.nhc-tab-panel.active {
    display: block;
}

.nhc-tab-panel p {
    font-size: 17px;
    line-height: 1.8;
}

.nhc-local-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nhc-local-item:last-child {
    border-bottom: none;
}

.nhc-local-item strong {
    color: var(--nhc-heading);
}

/* HOA & Tax tables within tabs */
.nhc-info-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.nhc-info-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 17px;
}

.nhc-info-table td:first-child {
    font-weight: 500;
    color: var(--nhc-heading);
    width: 220px;
}

/* === §8 FAQ === */
.nhc-faq {
    background: var(--nhc-white);
}

.nhc-faq-item {
    border-bottom: 1px solid #e5e7eb;
    max-width: 800px;
    margin: 0 auto;
}

.nhc-faq-item:last-child {
    border-bottom: none;
}

.nhc-faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--nhc-font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--nhc-heading);
    gap: 16px;
    line-height: 1.4;
}

.nhc-faq-toggle:hover {
    color: var(--nhc-blue);
}

.nhc-faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--nhc-coral);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.nhc-faq-item.open .nhc-faq-icon {
    transform: rotate(45deg);
}

.nhc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.nhc-faq-item.open .nhc-faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
}

.nhc-faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--nhc-body-text);
    margin: 0;
}

/* === §9 CONTACT === */
.nhc-contact {
    background: var(--nhc-dark);
    color: var(--nhc-white);
}

.nhc-contact h2 {
    color: var(--nhc-white);
}

.nhc-contact-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}

.nhc-contact-divider {
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    text-align: center;
    align-self: center;
}

/* Contact form */
.nhc-form {
    max-width: 100%;
}

.nhc-form__field {
    margin-bottom: 16px;
}

.nhc-form__field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}

.nhc-form__field input,
.nhc-form__field textarea,
.nhc-form__field select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--nhc-white);
    font-family: var(--nhc-font-primary);
    font-size: 15px;
    transition: border-color 0.2s;
}

.nhc-form__field input:focus,
.nhc-form__field textarea:focus,
.nhc-form__field select:focus {
    outline: none;
    border-color: var(--nhc-coral);
}

.nhc-form__field textarea {
    resize: vertical;
    min-height: 80px;
}

.nhc-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.nhc-form__status {
    margin-top: 12px;
    font-size: 14px;
}

.nhc-form__status--success {
    color: #66cc66;
}

.nhc-form__status--error {
    color: var(--nhc-coral);
}

/* Calendly side */
.nhc-contact-calendly {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.nhc-contact-calendly p {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    margin-bottom: 28px;
}

.nhc-contact-calendly .nhc-btn {
    font-size: 18px;
    padding: 18px 40px;
}

.nhc-contact-info {
    margin-top: 32px;
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 2;
}

.nhc-contact-info a {
    color: var(--nhc-coral);
    font-weight: 500;
}

/* === §10 YOUTUBE === */
.nhc-youtube {
    background: var(--nhc-dark);
    text-align: center;
}

.nhc-youtube h2 {
    color: var(--nhc-white);
}

.nhc-youtube__embed {
    max-width: 800px;
    margin: 32px auto 0;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    cursor: pointer;
    background: #000;
}

.nhc-youtube__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nhc-youtube__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nhc-youtube__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0.85;
}

.nhc-youtube__embed:hover .nhc-youtube__play {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* === EXPLORE OTHER COMMUNITIES === */
.nhc-explore {
    background: var(--nhc-light-gray);
}

.nhc-explore__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.nhc-explore-card {
    background: var(--nhc-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.nhc-explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
}

.nhc-explore-card__img {
    height: 160px;
    background: var(--nhc-dark);
    overflow: hidden;
}

.nhc-explore-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nhc-explore-card__body {
    padding: 16px;
}

.nhc-explore-card__name {
    font-size: 16px;
    font-weight: 500;
    color: var(--nhc-heading);
    margin-bottom: 4px;
}

.nhc-explore-card__meta {
    font-size: 13px;
    color: var(--nhc-body-text-light);
}

.nhc-explore-card__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--nhc-coral);
    margin-top: 6px;
}

.nhc-explore-card__status {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-top: 8px;
}

.nhc-status--now_selling   { background: #e6f4ea; color: #1e7e34; }
.nhc-status--coming_soon   { background: #fff3cd; color: #856404; }
.nhc-status--grand_opening { background: #e7f6ff; color: #0067ff; }
.nhc-status--sold_out      { background: #f8d7da; color: #721c24; }

/* === DISCLAIMER === */
.nhc-disclaimer {
    background: var(--nhc-footer-bg);
    padding: 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nhc-disclaimer p {
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
}

/* === §11 FOOTER === */
.nhc-footer {
    background: var(--nhc-footer-bg);
    padding: 40px 20px;
    text-align: center;
}

.nhc-footer__nav {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nhc-footer__link {
    color: var(--nhc-coral);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.nhc-footer__link:hover {
    color: var(--nhc-white);
    text-decoration: none;
}

.nhc-footer__sep {
    color: rgba(255,255,255,0.2);
    margin: 0 16px;
    font-size: 16px;
}

.nhc-footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.nhc-footer a {
    color: rgba(255,255,255,0.6);
}

.nhc-footer a:hover {
    color: var(--nhc-coral);
}

/* === LIGHTBOX === */
.nhc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.nhc-lightbox.active {
    display: flex;
}

.nhc-lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: default;
}

.nhc-lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--nhc-white);
    font-size: 14px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 8px 20px;
    border-radius: 4px;
}

.nhc-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--nhc-white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.nhc-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.nhc-lightbox__nav:hover {
    background: var(--nhc-coral);
}

.nhc-lightbox__nav--prev { left: 20px; }
.nhc-lightbox__nav--next { right: 20px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 32px; }

    .nhc-model-card {
        flex: 0 0 calc(50% - 12px);
    }

    .nhc-contact-grid {
        grid-template-columns: 1fr;
    }

    .nhc-contact-divider {
        padding: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; letter-spacing: -1px; }
    h4 { font-size: 28px; }

    .nhc-section {
        padding: 28px 16px;
    }

    .nhc-hero {
        min-height: 400px;
    }

    .nhc-hero__content {
        padding: 60px 16px;
    }

    .nhc-topnav__inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .nhc-facts__inner {
        gap: 16px 24px;
    }

    .nhc-model-card {
        flex: 0 0 85%;
    }

    .nhc-tab-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .nhc-tab-btn {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 14px;
    }

    .nhc-drive-table td:nth-child(3) {
        display: none;
    }

    .nhc-explore__grid {
        grid-template-columns: 1fr 1fr;
    }

    .nhc-footer__sep {
        margin: 0 8px;
    }

    .nhc-footer__link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 30px; }

    .nhc-model-card {
        flex: 0 0 92%;
    }

    .nhc-explore__grid {
        grid-template-columns: 1fr;
    }

    .nhc-hero__ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === PRINT === */
@media print {
    body.nhc-page {
        background: white;
        color: black;
    }

    .nhc-hero {
        background: white !important;
        border-bottom: 2px solid #333;
        min-height: auto;
    }

    .nhc-hero__overlay,
    .nhc-hero__bg { display: none; }

    .nhc-hero h1, .nhc-hero h2, .nhc-hero h3 {
        color: black !important;
    }

    .nhc-section {
        background: white !important;
        color: black !important;
    }

    .nhc-tab-panel { display: block !important; }
    .nhc-tab-row { display: none; }

    .nhc-contact,
    .nhc-youtube,
    .nhc-lightbox,
    .nhc-explore {
        display: none;
    }
}

/* === INDEX PAGE === */
.nhc-index-hero {
    background: var(--nhc-dark);
    border-bottom: 10px solid var(--nhc-coral);
    padding: 80px 20px;
    text-align: center;
}

.nhc-index-hero h1 {
    color: var(--nhc-white);
    margin-bottom: 16px;
}

.nhc-index-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.nhc-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    max-width: var(--nhc-max-width);
    margin: 0 auto;
    padding: 60px 20px;
}
