/**
 * Nest N Thrive - V2 Aura Design System
 * Version: 2.0.0
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    /* Colors */
    --nnt-forest: #2D5A47;
    --nnt-forest-dark: #1e3d30;
    --nnt-forest-light: #3d7a5f;
    --nnt-cream: #FDF8F4;
    --nnt-sage: #E8F0EC;
    
    /* Stone Palette */
    --nnt-stone-50: #FAFAF9;
    --nnt-stone-100: #F5F5F4;
    --nnt-stone-200: #E7E5E4;
    --nnt-stone-300: #D6D3D1;
    --nnt-stone-400: #A8A29E;
    --nnt-stone-500: #78716C;
    --nnt-stone-600: #57534E;
    --nnt-stone-700: #44403C;
    --nnt-stone-800: #292524;
    --nnt-stone-900: #1C1917;
    
    /* Typography */
    --nnt-font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --nnt-container-max: 1280px;
    --nnt-container-narrow: 768px;
    
    /* Transitions */
    --nnt-transition-fast: 150ms ease;
    --nnt-transition: 200ms ease;
    --nnt-transition-slow: 300ms ease;
    
    /* Shadows */
    --nnt-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --nnt-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --nnt-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --nnt-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* ============================================================
   BASE STYLES
   ============================================================ */
body {
    font-family: var(--nnt-font-sans);
    color: var(--nnt-stone-800);
    background: #fff;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.nnt-container {
    width: 100%;
    max-width: var(--nnt-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nnt-container--narrow {
    max-width: var(--nnt-container-narrow);
}

/* Grids */
.nnt-grid {
    display: grid;
    gap: 1.5rem;
}

.nnt-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.nnt-grid--3 {
    grid-template-columns: repeat(1, 1fr);
}

.nnt-grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .nnt-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nnt-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nnt-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nnt-grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .nnt-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Scroll Container */
.nnt-scroll-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.nnt-scroll-container > * {
    flex: 0 0 280px;
}

.nnt-hide-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nnt-hide-scroll::-webkit-scrollbar {
    display: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.nnt-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .nnt-section {
        padding: 5rem 0;
    }
}

.nnt-section--white {
    background: #fff;
}

.nnt-section--stone {
    background: var(--nnt-stone-50);
}

.nnt-section--cream {
    background: var(--nnt-cream);
}

.nnt-section--forest {
    background: var(--nnt-forest);
    color: #fff;
}

.nnt-section--hero {
    background: var(--nnt-cream);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .nnt-section--hero {
        padding: 6rem 0;
    }
}

/* Section Headers */
.nnt-section__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .nnt-section__header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.nnt-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .nnt-section__title {
        font-size: 1.875rem;
    }
}

.nnt-section__subtitle {
    color: var(--nnt-stone-500);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.nnt-section__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nnt-forest);
    text-decoration: none;
    transition: color var(--nnt-transition);
}

.nnt-section__link:hover {
    color: var(--nnt-forest-dark);
}

.nnt-section__header--centered {
    text-align: center;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .nnt-section__header--centered {
        flex-direction: row;
        text-align: left;
        align-items: flex-end;
    }
}

/* Utility classes */
.nnt-mb-12 {
    margin-bottom: 3rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.nnt-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nnt-stone-100);
}

.nnt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nnt-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nnt-header__logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--nnt-forest);
    color: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nnt-header__logo-text {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--nnt-stone-900);
}

.nnt-header__nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnt-header__nav {
        display: flex;
    }
}

.nnt-header__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nnt-stone-600);
    text-decoration: none;
    transition: color var(--nnt-transition);
}

.nnt-header__nav-link:hover {
    color: var(--nnt-stone-900);
}

.nnt-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nnt-header__search {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--nnt-stone-600);
    cursor: pointer;
    transition: color var(--nnt-transition);
}

.nnt-header__search:hover {
    color: var(--nnt-stone-900);
}

.nnt-header__cta {
    display: none;
    padding: 0.5rem 1rem;
    background: var(--nnt-forest);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background var(--nnt-transition);
}

.nnt-header__cta:hover {
    background: var(--nnt-forest-dark);
}

@media (min-width: 640px) {
    .nnt-header__cta {
        display: inline-flex;
    }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

/* Hamburger Toggle Button */
.nnt-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.nnt-header__menu-toggle:hover {
    background: var(--nnt-stone-100);
}

@media (min-width: 1024px) {
    .nnt-header__menu-toggle {
        display: none;
    }
}

/* Hamburger Icon */
.nnt-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.25rem;
    height: 1rem;
    position: relative;
}

.nnt-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nnt-stone-700);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.nnt-hamburger__line:nth-child(1) {
    top: 0;
}

.nnt-hamburger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nnt-hamburger__line:nth-child(3) {
    bottom: 0;
}

/* Hamburger Animation - Open State */
.nnt-header__menu-toggle[aria-expanded="true"] .nnt-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nnt-header__menu-toggle[aria-expanded="true"] .nnt-hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.nnt-header__menu-toggle[aria-expanded="true"] .nnt-hamburger__line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nnt-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    visibility: hidden;
}

.nnt-mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

/* Backdrop */
.nnt-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nnt-mobile-menu.is-open .nnt-mobile-menu__backdrop {
    opacity: 1;
}

/* Panel */
.nnt-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
}

@media (min-width: 480px) {
    .nnt-mobile-menu__panel {
        max-width: 380px;
    }
}

.nnt-mobile-menu.is-open .nnt-mobile-menu__panel {
    transform: translateX(0);
}

/* Panel Header */
.nnt-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--nnt-stone-100);
}

.nnt-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background: var(--nnt-stone-100);
    border: none;
    border-radius: 50%;
    color: var(--nnt-stone-600);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nnt-mobile-menu__close:hover {
    background: var(--nnt-stone-200);
    color: var(--nnt-stone-900);
}

/* Navigation Links */
.nnt-mobile-menu__nav {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.nnt-mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--nnt-stone-700);
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateX(20px);
}

.nnt-mobile-menu.is-open .nnt-mobile-menu__link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for links */
.nnt-mobile-menu.is-open .nnt-mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.nnt-mobile-menu.is-open .nnt-mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.nnt-mobile-menu.is-open .nnt-mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.nnt-mobile-menu.is-open .nnt-mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.nnt-mobile-menu.is-open .nnt-mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }

.nnt-mobile-menu__link:hover {
    background: var(--nnt-stone-50);
    color: var(--nnt-forest);
}

.nnt-mobile-menu__link i,
.nnt-mobile-menu__link svg {
    color: var(--nnt-forest);
    flex-shrink: 0;
}

/* Footer */
.nnt-mobile-menu__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--nnt-stone-100);
    background: var(--nnt-stone-50);
}

.nnt-mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--nnt-forest);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: background 0.2s ease;
    margin-bottom: 1rem;
}

.nnt-mobile-menu__cta:hover {
    background: var(--nnt-forest-dark, #2C332A);
}

.nnt-mobile-menu__secondary {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.nnt-mobile-menu__secondary a {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nnt-mobile-menu__secondary a:hover {
    color: var(--nnt-forest);
}

/* Body scroll lock when menu is open */
body.nnt-menu-open {
    overflow: hidden;
}

/* Hide desktop nav on tablet/mobile, show hamburger */
@media (max-width: 1023px) {
    .nnt-header__nav {
        display: none !important;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.nnt-footer {
    background: var(--nnt-stone-900);
    color: var(--nnt-stone-400);
    padding: 4rem 0 2rem;
}

.nnt-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .nnt-footer__grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.nnt-footer__brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .nnt-footer__brand {
        grid-column: span 1;
    }
}

.nnt-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nnt-footer__brand-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--nnt-forest);
    color: #fff;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nnt-footer__brand-name {
    font-weight: 600;
    color: #fff;
}

.nnt-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nnt-footer__social {
    display: flex;
    gap: 1rem;
}

.nnt-footer__social-link {
    color: var(--nnt-stone-400);
    transition: color var(--nnt-transition);
}

.nnt-footer__social-link:hover {
    color: #fff;
}

.nnt-footer__column-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nnt-stone-500);
    margin-bottom: 1rem;
}

.nnt-footer__links {
    list-style: none;
}

.nnt-footer__link {
    display: block;
    font-size: 0.875rem;
    color: var(--nnt-stone-400);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color var(--nnt-transition);
}

.nnt-footer__link:hover {
    color: #fff;
}

.nnt-footer__bottom {
    border-top: 1px solid var(--nnt-stone-800);
    padding-top: 2rem;
    font-size: 0.75rem;
    text-align: center;
}

.nnt-footer__disclosure {
    margin-top: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.nnt-hero {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nnt-hero {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.nnt-hero__content {
    max-width: 36rem;
}

.nnt-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: var(--nnt-sage);
    color: var(--nnt-forest);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.nnt-hero__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--nnt-stone-900);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .nnt-hero__title {
        font-size: 3rem;
    }
}

.nnt-hero__title-accent {
    color: var(--nnt-forest);
}

.nnt-hero__desc {
    font-size: 1.125rem;
    color: var(--nnt-stone-600);
    line-height: 1.7;
}

.nnt-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.nnt-hero__image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--nnt-shadow-lg);
}

.nnt-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-hero__floating-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--nnt-shadow-lg);
    max-width: 240px;
    z-index: 10;
}

@media (max-width: 1023px) {
    .nnt-hero__floating-card {
        bottom: 1rem;
        left: 1rem;
        max-width: 200px;
        padding: 0.75rem;
    }
}

@media (max-width: 640px) {
    .nnt-hero__floating-card {
        display: none;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.nnt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all var(--nnt-transition);
}

.nnt-btn--primary {
    background: var(--nnt-forest);
    color: #fff;
}

.nnt-btn--primary:hover {
    background: var(--nnt-forest-dark);
}

.nnt-btn--secondary {
    background: transparent;
    color: var(--nnt-stone-700);
    border: 1px solid var(--nnt-stone-300);
}

.nnt-btn--secondary:hover {
    background: var(--nnt-stone-100);
    border-color: var(--nnt-stone-400);
}

/* ============================================================
   CARDS - SPACE/ROOM
   ============================================================ */
.nnt-card-space {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
}

.nnt-card-space__image {
    position: absolute;
    inset: 0;
}

.nnt-card-space__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-card-space__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
}

.nnt-card-space__title {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nnt-card-space__desc {
    position: absolute;
    bottom: 0.75rem;
    left: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   CARDS - GOAL
   ============================================================ */
.nnt-card-goal {
    display: block;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--nnt-stone-200);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all var(--nnt-transition);
}

.nnt-card-goal:hover {
    border-color: var(--nnt-forest);
    box-shadow: var(--nnt-shadow-md);
}

.nnt-card-goal__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--nnt-sage);
    color: var(--nnt-forest);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all var(--nnt-transition);
}

.nnt-card-goal:hover .nnt-card-goal__icon {
    background: var(--nnt-forest);
    color: #fff;
}

.nnt-card-goal__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-bottom: 0.25rem;
}

.nnt-card-goal__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.5;
}

/* ============================================================
   CARDS - REVIEW/COLLECTION
   ============================================================ */
.nnt-card-review {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--nnt-stone-200);
    transition: all var(--nnt-transition);
}

.nnt-card-review:hover {
    border-color: var(--nnt-stone-300);
    box-shadow: var(--nnt-shadow-md);
}

.nnt-card-review__image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--nnt-stone-100);
}

.nnt-card-review__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-card-review__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.nnt-card-review__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    padding: 1rem 1rem 0.5rem;
    line-height: 1.4;
}

.nnt-card-review__title a {
    text-decoration: none;
    color: inherit;
}

.nnt-card-review__stars {
    display: flex;
    gap: 0.125rem;
    padding: 0 1rem;
    color: #F59E0B;
}

.nnt-card-review__stars svg {
    fill: currentColor;
}

.nnt-card-review__excerpt {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    padding: 0.75rem 1rem 0;
    line-height: 1.5;
}

.nnt-card-review__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--nnt-forest);
    padding: 1rem;
}

/* ============================================================
   CARDS - GUIDE
   ============================================================ */
.nnt-card-guide {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--nnt-stone-200);
    box-shadow: var(--nnt-shadow-sm);
    transition: all var(--nnt-transition);
}

.nnt-card-guide:hover {
    box-shadow: var(--nnt-shadow-md);
    transform: translateY(-2px);
    border-color: var(--nnt-stone-300);
}

.nnt-card-guide__image {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--nnt-stone-100);
}

.nnt-card-guide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nnt-transition-slow);
}

.nnt-card-guide:hover .nnt-card-guide__image img {
    transform: scale(1.05);
}

.nnt-card-guide__tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: #fff;
    color: var(--nnt-stone-700);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
}

.nnt-card-guide__content {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.nnt-card-guide__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color var(--nnt-transition);
}

.nnt-card-guide:hover .nnt-card-guide__title {
    color: var(--nnt-forest);
}

.nnt-card-guide__excerpt {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.5;
    flex-grow: 1;
}

.nnt-card-guide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nnt-forest);
    margin-top: 0.75rem;
    transition: gap var(--nnt-transition);
}

.nnt-card-guide:hover .nnt-card-guide__link {
    gap: 0.5rem;
}

/* ============================================================
   GUIDES MASONRY GRID - V2 Large Cards
   ============================================================ */
.nnt-guides-masonry {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nnt-guides-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nnt-guides-masonry {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, minmax(280px, auto));
    }
}

.nnt-guide-masonry-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-200);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 1rem;
}

.nnt-guide-masonry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

/* Featured card (3rd card) - spans 2 rows */
.nnt-guide-masonry-card--featured {
    grid-row: span 2;
}

@media (max-width: 1023px) {
    .nnt-guide-masonry-card--featured {
        grid-row: span 1;
    }
}

/* Image container with proper aspect ratio */
.nnt-guide-masonry-card__image {
    position: relative;
    flex: 1;
    min-height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--nnt-stone-100);
}

.nnt-guide-masonry-card--featured .nnt-guide-masonry-card__image {
    min-height: 100%;
    flex: 1;
}

.nnt-guide-masonry-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nnt-guide-masonry-card:hover .nnt-guide-masonry-card__image img {
    transform: scale(1.03);
}

/* Tag badge */
.nnt-guide-masonry-card__tag {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--nnt-stone-600);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
}

/* Content section */
.nnt-guide-masonry-card__content {
    padding: 1rem 0 0.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nnt-guide-masonry-card__title {
    font-family: var(--nnt-font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--nnt-stone-900);
    margin: 0;
    line-height: 1.3;
}

.nnt-guide-masonry-card:hover .nnt-guide-masonry-card__title {
    color: var(--nnt-forest);
}

.nnt-guide-masonry-card__excerpt {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.5;
    margin: 0;
}

.nnt-guide-masonry-card__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--nnt-forest);
    margin-top: 0.5rem;
}

.nnt-guide-masonry-card:hover .nnt-guide-masonry-card__link {
    color: var(--nnt-forest-dark, #2C332A);
}

/* ============================================================
   CARDS - DEAL
   ============================================================ */
.nnt-card-deal {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--nnt-stone-200);
    border-radius: 0.75rem;
    transition: all var(--nnt-transition);
}

.nnt-card-deal:hover {
    border-color: var(--nnt-stone-300);
    box-shadow: var(--nnt-shadow-md);
}

.nnt-card-deal__image {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    background: var(--nnt-stone-100);
    border-radius: 0.5rem;
    overflow: hidden;
}

.nnt-card-deal__badge {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: #FEF2F2;
    color: #DC2626;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.25rem;
    margin-bottom: 0.375rem;
}

.nnt-card-deal__title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nnt-stone-900);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.nnt-card-deal__desc {
    font-size: 0.8125rem;
    color: var(--nnt-stone-500);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.nnt-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--nnt-stone-400);
    margin-bottom: 1.5rem;
}

.nnt-breadcrumbs a {
    color: var(--nnt-stone-500);
    text-decoration: none;
    transition: color var(--nnt-transition);
}

.nnt-breadcrumbs a:hover {
    color: var(--nnt-stone-700);
}

.nnt-breadcrumbs__current {
    color: var(--nnt-stone-600);
}

/* ============================================================
   TRUST BLOCK
   ============================================================ */
.nnt-trust {
    text-align: center;
}

.nnt-trust__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .nnt-trust__title {
        font-size: 1.875rem;
    }
}

.nnt-trust__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnt-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nnt-trust__item {
    text-align: center;
}

.nnt-trust__icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.nnt-trust__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.nnt-trust__heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.nnt-trust__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.nnt-newsletter {
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
}

.nnt-newsletter__icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--nnt-sage);
    color: var(--nnt-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.nnt-newsletter__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-bottom: 0.5rem;
}

.nnt-newsletter__desc {
    color: var(--nnt-stone-500);
    margin-bottom: 1.5rem;
}

.nnt-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .nnt-newsletter__form {
        flex-direction: row;
    }
}

.nnt-newsletter__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--nnt-stone-300);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: border-color var(--nnt-transition);
}

.nnt-newsletter__input:focus {
    outline: none;
    border-color: var(--nnt-forest);
}

.nnt-newsletter__button {
    padding: 0.75rem 1.5rem;
    background: var(--nnt-forest);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background var(--nnt-transition);
}

.nnt-newsletter__button:hover {
    background: var(--nnt-forest-dark);
}

.nnt-newsletter__privacy {
    font-size: 0.75rem;
    color: var(--nnt-stone-400);
    margin-top: 1rem;
}

/* ============================================================
   CONTENT STYLES
   ============================================================ */
.nnt-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--nnt-stone-700);
}

.nnt-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.nnt-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.nnt-content p {
    margin-bottom: 1.25rem;
}

.nnt-content ul, .nnt-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.nnt-content li {
    margin-bottom: 0.5rem;
}

.nnt-content a {
    color: var(--nnt-forest);
    text-decoration: underline;
}

.nnt-content a:hover {
    color: var(--nnt-forest-dark);
}

.nnt-content img {
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.nnt-content blockquote {
    border-left: 4px solid var(--nnt-forest);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--nnt-stone-600);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.nnt-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nnt-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.nnt-delay-100 { transition-delay: 100ms; }
.nnt-delay-200 { transition-delay: 200ms; }
.nnt-delay-300 { transition-delay: 300ms; }
.nnt-delay-400 { transition-delay: 400ms; }

/* Hover effects */
.nnt-hover-lift {
    transition: transform var(--nnt-transition), box-shadow var(--nnt-transition);
}

.nnt-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--nnt-shadow-lg);
}

/* Image zoom */
.nnt-img-zoom-container {
    overflow: hidden;
}

.nnt-img-zoom {
    transition: transform 0.5s ease;
}

.group:hover .nnt-img-zoom {
    transform: scale(1.05);
}

/* ============================================================
   COLLECTION PAGE COMPONENTS
   ============================================================ */

/* Collection Hero */
.nnt-collection-hero {
    padding: 8rem 0 3rem;
    background: var(--nnt-stone-50);
}

.nnt-collection-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nnt-collection-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.nnt-collection-hero__content {
    max-width: 600px;
}

.nnt-collection-hero__title {
    font-family: var(--nnt-font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--nnt-stone-900);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.nnt-collection-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nnt-stone-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.nnt-collection-hero__meta-dot {
    width: 4px;
    height: 4px;
    background: var(--nnt-stone-300);
    border-radius: 50%;
}

.nnt-collection-hero__desc {
    font-size: 1.125rem;
    color: var(--nnt-stone-500);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.nnt-collection-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nnt-collection-hero__disclosure {
    font-size: 0.6875rem;
    color: var(--nnt-stone-400);
    font-style: italic;
}

.nnt-collection-hero__image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--nnt-shadow-xl);
    border: 1px solid var(--nnt-stone-100);
}

.nnt-collection-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-collection-hero__tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--nnt-shadow-sm);
    border: 1px solid var(--nnt-stone-200);
}

.nnt-collection-hero__tag span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--nnt-stone-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Breadcrumbs Dark */
.nnt-breadcrumbs--dark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--nnt-stone-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.nnt-breadcrumbs--dark a {
    color: var(--nnt-stone-400);
    text-decoration: none;
    transition: color var(--nnt-transition);
}

.nnt-breadcrumbs--dark a:hover {
    color: var(--nnt-stone-900);
}

.nnt-breadcrumbs--dark span {
    color: var(--nnt-forest);
}

.nnt-breadcrumbs--dark i,
.nnt-breadcrumbs--dark svg {
    width: 0.75rem;
    height: 0.75rem;
}

/* Short List Grid */
.nnt-shortlist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem; /* Space for the "Best Overall" badge that overflows */
    overflow: visible;
}

@media (min-width: 768px) {
    .nnt-shortlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Short List Card */
.nnt-shortlist-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-200);
    box-shadow: var(--nnt-shadow-sm);
    transition: all var(--nnt-transition);
    display: flex;
    flex-direction: column;
    overflow: visible; /* Allow badge to overflow */
}

.nnt-shortlist-card:hover {
    box-shadow: var(--nnt-shadow-lg);
}

.nnt-shortlist-card--featured {
    border-color: var(--nnt-forest);
}

.nnt-shortlist-card__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nnt-forest);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: var(--nnt-shadow-sm);
    white-space: nowrap;
}

.nnt-shortlist-card__image {
    aspect-ratio: 4 / 3;
    background: var(--nnt-stone-100);
    overflow: hidden;
    border-radius: 1rem 1rem 0 0; /* Keep image corners rounded */
}

.nnt-shortlist-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nnt-shortlist-card:hover .nnt-shortlist-card__image img {
    transform: scale(1.05);
}

.nnt-shortlist-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nnt-shortlist-card__placeholder i,
.nnt-shortlist-card__placeholder svg {
    width: 3rem;
    height: 3rem;
    color: var(--nnt-stone-300);
}

.nnt-shortlist-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nnt-shortlist-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin: 0 0 0.25rem;
}

.nnt-shortlist-card__subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--nnt-stone-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
}

.nnt-shortlist-card__rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 1rem;
}

.nnt-star {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--nnt-stone-200);
}

.nnt-star--filled {
    color: #EAB308;
    fill: #EAB308;
}

.nnt-star--sm {
    width: 0.75rem;
    height: 0.75rem;
}

.nnt-shortlist-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.nnt-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.nnt-feature i,
.nnt-feature svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.nnt-feature--pro {
    color: var(--nnt-stone-600);
}

.nnt-feature--pro i,
.nnt-feature--pro svg {
    color: var(--nnt-forest);
}

.nnt-feature--con {
    color: var(--nnt-stone-400);
}

.nnt-feature--con i,
.nnt-feature--con svg {
    color: var(--nnt-stone-300);
}

.nnt-shortlist-card__cta {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: transparent;
    border: 1px solid var(--nnt-stone-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--nnt-transition);
}

.nnt-shortlist-card__cta:hover {
    background: var(--nnt-stone-900);
    border-color: var(--nnt-stone-900);
    color: #fff;
}

/* How We Chose Box */
.nnt-how-we-chose {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-200);
    box-shadow: var(--nnt-shadow-sm);
}

@media (min-width: 768px) {
    .nnt-how-we-chose {
        padding: 2.5rem;
    }
}

.nnt-how-we-chose__title {
    font-family: var(--nnt-font-heading);
    font-size: 1.5rem;
    color: var(--nnt-stone-900);
    margin: 0 0 1rem;
}

.nnt-how-we-chose__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.nnt-how-we-chose__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nnt-how-we-chose__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nnt-how-we-chose__item {
    display: flex;
    gap: 0.75rem;
}

.nnt-how-we-chose__icon {
    width: 2rem;
    height: 2rem;
    background: var(--nnt-stone-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--nnt-forest);
}

.nnt-how-we-chose__icon i,
.nnt-how-we-chose__icon svg {
    width: 1rem;
    height: 1rem;
}

.nnt-how-we-chose__item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin: 0 0 0.25rem;
}

.nnt-how-we-chose__item p {
    font-size: 0.75rem;
    color: var(--nnt-stone-500);
    margin: 0;
}

/* Comparison Table */
.nnt-comparison-table-wrapper {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-200);
    overflow: hidden;
    box-shadow: var(--nnt-shadow-sm);
}

.nnt-comparison-table {
    width: 100%;
    text-align: left;
    font-size: 0.875rem;
    border-collapse: collapse;
    white-space: nowrap;
}

.nnt-comparison-table thead {
    background: var(--nnt-stone-50);
    border-bottom: 1px solid var(--nnt-stone-200);
}

.nnt-comparison-table th {
    padding: 1rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
}

.nnt-comparison-table th:first-child {
    padding-left: 1.5rem;
}

.nnt-comparison-table th:last-child {
    padding-right: 1.5rem;
}

.nnt-comparison-table tbody tr {
    border-bottom: 1px solid var(--nnt-stone-100);
    transition: background var(--nnt-transition);
}

.nnt-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.nnt-comparison-table tbody tr:hover {
    background: var(--nnt-stone-50);
}

.nnt-comparison-table td {
    padding: 1rem;
    color: var(--nnt-stone-500);
}

.nnt-comparison-table td:first-child {
    padding-left: 1.5rem;
}

.nnt-comparison-table td:last-child {
    padding-right: 1.5rem;
}

.nnt-comparison-table__product {
    font-weight: 500;
    color: var(--nnt-stone-900) !important;
}

.nnt-comparison-table__rating {
    display: flex;
    gap: 0.125rem;
}

.nnt-comparison-table__price {
    font-weight: 500;
    color: var(--nnt-stone-900) !important;
}

/* Detailed Pick */
.nnt-detailed-pick {
    margin-bottom: 3rem;
}

.nnt-detailed-pick__header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .nnt-detailed-pick__header {
        grid-template-columns: 1fr 1fr;
    }
}

.nnt-detailed-pick__image {
    aspect-ratio: 4 / 3;
    background: var(--nnt-stone-100);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--nnt-stone-200);
}

.nnt-detailed-pick__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-detailed-pick__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nnt-detailed-pick__placeholder i,
.nnt-detailed-pick__placeholder svg {
    width: 4rem;
    height: 4rem;
    color: var(--nnt-stone-300);
}

.nnt-detailed-pick__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nnt-detailed-pick__badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--nnt-stone-100);
    color: var(--nnt-stone-600);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.nnt-detailed-pick__title {
    font-family: var(--nnt-font-heading);
    font-size: 1.75rem;
    color: var(--nnt-stone-900);
    margin: 0 0 0.75rem;
}

.nnt-detailed-pick__desc {
    font-size: 0.9375rem;
    color: var(--nnt-stone-500);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.nnt-detailed-pick__analysis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnt-detailed-pick__analysis {
        grid-template-columns: 1fr 1fr;
    }
}

/* Pros/Cons Box */
.nnt-pros-cons-box {
    background: var(--nnt-stone-50);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-100);
}

.nnt-pros-cons-box__section {
    margin-bottom: 1rem;
}

.nnt-pros-cons-box__section:last-child {
    margin-bottom: 0;
}

.nnt-pros-cons-box__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nnt-stone-900);
    margin: 0 0 0.75rem;
}

.nnt-pros-cons-box__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nnt-pros-cons-box__list .nnt-feature {
    font-size: 0.875rem;
}

/* Why We Recommend */
.nnt-detailed-pick__why {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nnt-detailed-pick__why h4 {
    font-family: var(--nnt-font-heading);
    font-size: 1.25rem;
    color: var(--nnt-stone-900);
    margin: 0 0 0.75rem;
}

.nnt-detailed-pick__why p {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.7;
    margin: 0;
}

.nnt-detailed-pick__divider {
    width: 100%;
    height: 1px;
    background: var(--nnt-stone-200);
    margin: 3rem 0;
}

/* Related Card */
.nnt-related-card {
    display: block;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid var(--nnt-stone-200);
    text-decoration: none;
    transition: all var(--nnt-transition);
}

.nnt-related-card:hover {
    border-color: var(--nnt-stone-300);
}

.nnt-related-card__image {
    aspect-ratio: 16 / 10;
    background: var(--nnt-stone-100);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.nnt-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnt-related-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--nnt-stone-100);
}

.nnt-related-card__type {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nnt-stone-400);
    margin-bottom: 0.5rem;
}

.nnt-related-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--nnt-stone-900);
    margin: 0 0 0.5rem;
    transition: color var(--nnt-transition);
}

.nnt-related-card:hover .nnt-related-card__title {
    color: var(--nnt-forest);
}

.nnt-related-card__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.5;
    margin: 0;
}

/* Button Variants */
.nnt-btn--outline {
    background: #fff;
    border: 1px solid var(--nnt-stone-200);
    color: var(--nnt-stone-700);
}

.nnt-btn--outline:hover {
    background: var(--nnt-stone-50);
    border-color: var(--nnt-stone-300);
}

.nnt-btn--dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nnt-stone-900);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--nnt-transition);
}

.nnt-btn--dark:hover {
    background: var(--nnt-forest);
}

/* Section border modifier */
.nnt-section--border {
    border-top: 1px solid var(--nnt-stone-100);
    border-bottom: 1px solid var(--nnt-stone-100);
}

/* Centered title */
.nnt-section__title--centered {
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* About Hero */
.nnt-about-hero {
    padding: 8rem 0 4rem;
    background: #fff;
    border-bottom: 1px solid var(--nnt-stone-100);
}

.nnt-about-hero__title {
    font-family: var(--nnt-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--nnt-stone-900);
    line-height: 1;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.025em;
}

.nnt-about-hero__desc {
    font-size: 1.25rem;
    color: var(--nnt-stone-500);
    line-height: 1.7;
    font-weight: 300;
    max-width: 40rem;
}

/* Prose */
.nnt-prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--nnt-stone-600);
}

.nnt-prose h2 {
    font-family: var(--nnt-font-serif);
    font-size: 2rem;
    color: var(--nnt-stone-900);
    margin-bottom: 1.5rem;
}

.nnt-prose p {
    margin-bottom: 1.5rem;
}

.nnt-prose strong {
    color: var(--nnt-stone-900);
    font-weight: 600;
}

/* Process Cards */
.nnt-process-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--nnt-stone-200);
    box-shadow: var(--nnt-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nnt-process-card__number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--nnt-stone-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nnt-forest);
}

.nnt-process-card__number span {
    font-family: var(--nnt-font-serif);
    font-size: 1.25rem;
}

.nnt-process-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-bottom: 0.5rem;
}

.nnt-process-card__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.6;
}

/* Check Items */
.nnt-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--nnt-stone-600);
}

/* Transparency Block */
.nnt-transparency-block {
    background: var(--nnt-stone-50);
    border: 1px solid var(--nnt-stone-200);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.nnt-transparency-block__icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    opacity: 0.05;
    pointer-events: none;
    color: var(--nnt-forest);
}

.nnt-transparency-block__content {
    position: relative;
    z-index: 1;
}

.nnt-transparency-block__content h3 {
    font-family: var(--nnt-font-serif);
    font-size: 1.25rem;
    color: var(--nnt-stone-900);
    margin-bottom: 1rem;
}

.nnt-transparency-block__content p {
    font-size: 0.875rem;
    color: var(--nnt-stone-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.nnt-transparency-block__content p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact Hero */
.nnt-contact-hero {
    padding: 8rem 0 3rem;
    background: #fff;
    border-bottom: 1px solid var(--nnt-stone-100);
}

.nnt-contact-hero__title {
    font-family: var(--nnt-font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--nnt-stone-900);
    line-height: 1;
    margin: 1rem 0 1rem;
    letter-spacing: -0.025em;
}

.nnt-contact-hero__desc {
    font-size: 1.25rem;
    color: var(--nnt-stone-500);
    line-height: 1.6;
    font-weight: 300;
    max-width: 32rem;
}

/* Contact Cards */
.nnt-contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(var(--nnt-stone-200), 0.6);
    box-shadow: var(--nnt-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nnt-contact-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--nnt-stone-50);
    border: 1px solid var(--nnt-stone-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nnt-forest);
}

.nnt-contact-card__title {
    font-weight: 600;
    color: var(--nnt-stone-900);
    margin-bottom: 0.25rem;
}

.nnt-contact-card__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.6;
}

/* Contact Grid */
.nnt-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .nnt-contact-grid {
        grid-template-columns: 7fr 5fr;
        gap: 5rem;
    }
}

/* Contact Form Card */
.nnt-contact-form-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--nnt-stone-200);
    box-shadow: var(--nnt-shadow-sm);
}

@media (min-width: 768px) {
    .nnt-contact-form-card {
        padding: 2.5rem;
    }
}

.nnt-contact-form-card__title {
    font-family: var(--nnt-font-serif);
    font-size: 1.75rem;
    color: var(--nnt-stone-900);
    margin-bottom: 2rem;
}

/* Form Styles */
.nnt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nnt-form-row--2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nnt-form-row--2col {
        grid-template-columns: 1fr 1fr;
    }
}

.nnt-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nnt-form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nnt-stone-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nnt-form-input,
.nnt-form-textarea,
.nnt-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: var(--nnt-stone-50);
    border: 1px solid var(--nnt-stone-200);
    color: var(--nnt-stone-900);
    font-size: 1rem;
    transition: border-color var(--nnt-transition), box-shadow var(--nnt-transition);
}

.nnt-form-input::placeholder,
.nnt-form-textarea::placeholder {
    color: var(--nnt-stone-400);
}

.nnt-form-input:focus,
.nnt-form-textarea:focus,
.nnt-form-select:focus {
    outline: none;
    border-color: var(--nnt-forest);
    box-shadow: 0 0 0 2px rgba(45, 90, 71, 0.1);
}

.nnt-form-textarea {
    resize: none;
    min-height: 8rem;
}

.nnt-select-wrapper {
    position: relative;
}

.nnt-form-select {
    appearance: none;
    cursor: pointer;
}

.nnt-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--nnt-stone-400);
    pointer-events: none;
}

.nnt-form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #dc2626;
}

.nnt-btn--full-mobile {
    width: 100%;
}

@media (min-width: 640px) {
    .nnt-btn--full-mobile {
        width: auto;
    }
}

/* Contact Policy */
.nnt-contact-policy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nnt-contact-policy__title {
    font-family: var(--nnt-font-serif);
    font-size: 1.5rem;
    color: var(--nnt-stone-900);
}

.nnt-contact-policy__intro {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.6;
}

.nnt-policy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nnt-policy-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.nnt-policy-item__icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #fef2f2;
    color: rgba(127, 29, 29, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.nnt-policy-item__title {
    font-family: var(--nnt-font-serif);
    font-size: 1.125rem;
    color: var(--nnt-stone-900);
    margin-bottom: 0.25rem;
}

.nnt-policy-item__desc {
    font-size: 0.875rem;
    color: var(--nnt-stone-500);
    line-height: 1.6;
}

.nnt-divider {
    border: none;
    height: 1px;
    background: var(--nnt-stone-200);
    margin: 0.5rem 0;
}

.nnt-pr-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(45, 90, 71, 0.05);
    border: 1px solid rgba(45, 90, 71, 0.1);
    border-radius: 0.75rem;
}

.nnt-pr-note p {
    font-size: 0.75rem;
    color: var(--nnt-stone-600);
    line-height: 1.6;
}

.nnt-pr-note strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 767px) {
    .nnt-hero__image {
        order: -1;
    }
    
    .nnt-comparison-table-wrapper {
        overflow-x: auto;
    }
}
