:root {
    --nh-forest-900: #1f3a2d;
    --nh-forest-800: #29523f;
    --nh-gold-500: #c9a24a;
    --nh-gold-400: #d9b968;
    --nh-sand-50: #f8f5ef;
    --nh-sand-100: #f2ebdf;
    --nh-text-900: #243127;
    --nh-text-700: #3f4f42;
}

html,
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--nh-text-900);
    background: linear-gradient(180deg, var(--nh-sand-50) 0%, #ffffff 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

a {
    color: var(--nh-forest-800);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--nh-forest-900);
}

.footer .social-links {
    gap: 10px;
}

.footer .social-link {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    border-radius: 999px;
}

.footer .social-link svg {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    max-width: 10px !important;
    max-height: 10px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--nh-text-900);
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.navbar-menu .nav-link,
.navbar-menu .nav-link:visited {
    color: #f7f7f2 !important;
}

.navbar-menu .nav-link:hover {
    color: #ffffff !important;
}

.navbar-menu .nav-link.active {
    color: var(--nh-gold-400) !important;
}

.navbar-menu .nav-link .nav-text {
    color: inherit !important;
}

.btn-primary {
    color: #fff;
    background-color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    border-radius: 10px;
    padding-inline: 1rem;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-color: var(--nh-forest-900);
    border-color: var(--nh-forest-900);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31, 58, 45, 0.24);
}

.btn-outline-primary {
    color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    border-radius: 10px;
    padding-inline: 1rem;
    font-weight: 600;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--nh-forest-800);
    border-color: var(--nh-forest-800);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(31, 58, 45, 0.18);
}

.btn:focus-visible,
a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 185, 104, 0.35);
}

/* ===== Scroll reveal animation ===== */
.nh-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.nh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .nh-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== Shared section layout ===== */
.nh-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.nh-section--light {
    background: var(--nh-sand-100);
    border-radius: 32px;
    max-width: 1240px;
}

.nh-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.nh-section__header h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.nh-section__header p {
    color: var(--nh-text-700);
    font-size: 1.05rem;
}

.nh-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 185, 104, 0.16);
    color: var(--nh-gold-500);
    border: 1px solid rgba(217, 185, 104, 0.35);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.nh-badge--dark {
    background: rgba(31, 58, 45, 0.08);
    color: var(--nh-forest-800);
    border-color: rgba(31, 58, 45, 0.18);
}

.nh-link {
    font-weight: 600;
    color: var(--nh-forest-800);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.nh-link:hover {
    border-color: var(--nh-forest-800);
}

/* ===== Hero ===== */
.nh-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1240px;
    margin: 1.5rem auto 0;
    padding: 4rem 2.5rem;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--nh-forest-900) 0%, var(--nh-forest-800) 60%, #163627 100%);
    color: #fff;
}

.nh-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(217, 185, 104, 0.25), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(217, 185, 104, 0.12), transparent 50%);
    pointer-events: none;
}

.nh-hero__content {
    position: relative;
    flex: 1.1;
    z-index: 1;
}

.nh-hero__content h1 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin-bottom: 1.1rem;
}

.nh-hero__content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 1.75rem;
}

.nh-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.nh-hero .btn-outline-primary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.nh-hero .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.nh-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.nh-hero__image {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: center;
}

.nh-hero__image img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ===== Proof bar ===== */
.nh-proof {
    max-width: 1180px;
    margin: 3.5rem auto 0;
    padding: 2.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(31, 58, 45, 0.08);
}

.nh-proof__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.nh-proof__item strong {
    font-size: 1.6rem;
    color: var(--nh-forest-800);
}

.nh-proof__item span {
    color: var(--nh-text-700);
    font-size: 0.9rem;
}

/* ===== Categories ===== */
.nh-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nh-category-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    text-decoration: none;
    color: var(--nh-text-900);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nh-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 58, 45, 0.14);
    border-color: var(--nh-gold-400);
}

.nh-category-card__icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.nh-category-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.nh-category-card p {
    color: var(--nh-text-700);
    font-size: 0.92rem;
    margin: 0;
}

/* ===== Product cards (home highlights) ===== */
.nh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.nh-product-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

.nh-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(31, 58, 45, 0.14);
}

.nh-product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--nh-gold-500);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 24px rgba(31, 58, 45, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(31, 58, 45, 0.12);
}

.product-card .card {
    border: none;
}

.product-card .price {
    font-weight: 700;
    color: var(--nh-forest-800);
}

.nh-product-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: var(--nh-sand-50);
    padding: 1.25rem;
    box-sizing: border-box;
}

.nh-product-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.nh-product-card__body h3 {
    font-size: 1.05rem;
    margin: 0;
}

.nh-product-card__body p {
    color: var(--nh-text-700);
    font-size: 0.88rem;
    flex: 1;
    margin: 0;
}

.nh-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.nh-product-card__footer strong {
    color: var(--nh-forest-800);
    font-size: 1.05rem;
}

/* ===== Brand story ===== */
.nh-story {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nh-story__image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nh-story__image img {
    max-width: 100%;
    border-radius: 24px;
}

.nh-story__content {
    flex: 1.1;
}

.nh-story__content h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    margin-bottom: 1rem;
}

.nh-story__content p {
    color: var(--nh-text-700);
    margin-bottom: 1.25rem;
}

.nh-story__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nh-story__list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--nh-text-700);
}

.nh-story__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nh-gold-500);
    font-weight: 700;
}

/* ===== Testimonials ===== */
.nh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.nh-testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(31, 58, 45, 0.08);
    box-shadow: 0 10px 28px rgba(31, 58, 45, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.nh-testimonial__stars {
    color: var(--nh-gold-500);
    letter-spacing: 0.1em;
}

.nh-testimonial p {
    color: var(--nh-text-900);
    font-style: italic;
    margin: 0;
}

.nh-testimonial strong {
    margin-top: 0.5rem;
}

.nh-testimonial span {
    color: var(--nh-text-700);
    font-size: 0.85rem;
}

/* ===== Newsletter ===== */
.nh-newsletter {
    max-width: 1180px;
    margin: 1rem auto 0;
    padding: 3rem 2.5rem;
    border-radius: 28px;
    background: var(--nh-sand-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nh-newsletter h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.nh-newsletter p {
    color: var(--nh-text-700);
    margin: 0;
    max-width: 420px;
}

.nh-newsletter__form {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.nh-newsletter__form .form-control {
    border-radius: 10px;
}

/* ===== CTA ===== */
.nh-cta {
    max-width: 1180px;
    margin: 4rem auto 5rem;
    padding: 3rem 2.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--nh-forest-900), var(--nh-forest-800));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.nh-cta h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.nh-cta p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .nh-hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .nh-hero__content p {
        margin-inline: auto;
    }

    .nh-hero__actions,
    .nh-hero__badges {
        justify-content: center;
    }

    .nh-proof {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nh-story {
        flex-direction: column;
        text-align: center;
    }

    .nh-story__list {
        text-align: left;
    }

    .nh-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nh-newsletter,
    .nh-cta {
        flex-direction: column;
        text-align: center;
    }

    .nh-newsletter__form {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .nh-categories-grid,
    .nh-products-grid {
        grid-template-columns: 1fr;
    }
}

