/* ============================================
   PALMER NUTRITION — LUXURY REDESIGN
   ============================================ */

/* --- Tokens --- */
:root {
    /* Palette */
    --ink            : #0e0e0e;
    --ink-soft       : #1c1c1c;
    --ink-mid        : #2a2a2a;
    --stone          : #f2ede8;
    --stone-mid      : #e8e1d9;
    --gold           : #c9a96e;
    --gold-light     : #dfc49a;
    --white          : #ffffff;
    --off-white      : #faf8f5;

    /* Type */
    --font-serif     : 'Cormorant Garamond', Georgia, serif;
    --font-sans      : 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-pad    : 7rem;
    --section-pad-sm : 4rem;

    /* Transitions */
    --ease           : cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing : border-box;
    margin     : 0;
    padding    : 0;
}

html {
    scroll-behavior : smooth;
}

body {
    font-family            : var(--font-sans);
    background-color       : var(--off-white);
    color                  : var(--ink);
    line-height            : 1.6;
    -webkit-font-smoothing : antialiased;
}

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

.container {
    max-width : 1200px;
    margin    : 0 auto;
    padding   : 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    background-color : var(--white);
    border-bottom    : 1px solid rgba(0, 0, 0, 0.06);
    position         : sticky;
    top              : 0;
    z-index          : 200;
    padding          : 0;
}

.nav-content {
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    height          : 72px;
}

.logo-link {
    display         : flex;
    align-items     : center;
    text-decoration : none;
}

.logo-img {
    height     : 52px;
    width      : auto;
    transition : opacity 0.3s var(--ease);
}

.logo-img:hover {
    opacity : 0.7;
}

.nav-links {
    display     : flex;
    align-items : center;
    gap         : 2.5rem;
}

.nav-link {
    font-family     : var(--font-sans);
    font-size       : 0.875rem;
    font-weight     : 500;
    letter-spacing  : 0.04em;
    text-transform  : uppercase;
    color           : var(--ink-mid);
    text-decoration : none;
    transition      : color 0.2s var(--ease);
    position        : relative;
}

.nav-link::after {
    content    : '';
    position   : absolute;
    bottom     : -3px;
    left       : 0;
    width      : 0;
    height     : 1px;
    background : var(--gold);
    transition : width 0.3s var(--ease);
}

.nav-link:hover {
    color : var(--ink);
}

.nav-link:hover::after {
    width : 100%;
}

.btn-primary-nav {
    font-family      : var(--font-sans);
    font-size        : 0.8rem;
    font-weight      : 600;
    letter-spacing   : 0.08em;
    text-transform   : uppercase;
    color            : var(--white);
    background-color : var(--ink);
    text-decoration  : none;
    padding          : 0.6rem 1.4rem;
    border           : 1px solid var(--ink);
    transition       : background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary-nav:hover {
    background-color : transparent;
    color            : var(--ink);
}

/* Hamburger */
.menu-toggle {
    display        : none;
    flex-direction : column;
    background     : none;
    border         : none;
    cursor         : pointer;
    padding        : 0.5rem;
    gap            : 5px;
}

.menu-toggle span {
    width            : 22px;
    height           : 1.5px;
    background-color : var(--ink);
    transition       : all 0.3s var(--ease);
    display          : block;
}

.menu-toggle.active span:nth-child(1) {
    transform : rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity : 0;
}

.menu-toggle.active span:nth-child(3) {
    transform : rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   LUXURY BUTTON
   ============================================ */
.btn-luxury {
    display          : inline-flex;
    align-items      : center;
    gap              : 0.75rem;
    font-family      : var(--font-sans);
    font-size        : 0.85rem;
    font-weight      : 600;
    letter-spacing   : 0.1em;
    text-transform   : uppercase;
    color            : var(--white);
    background-color : var(--ink);
    text-decoration  : none;
    padding          : 1rem 2rem;
    border           : 1px solid var(--ink);
    transition       : background 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}

.btn-luxury:hover {
    background-color : var(--gold);
    border-color     : var(--gold);
    color            : var(--white);
    gap              : 1.1rem;
}

.btn-luxury svg {
    transition  : transform 0.3s var(--ease);
    flex-shrink : 0;
}

.btn-luxury:hover svg {
    transform : translateX(3px);
}

.btn-luxury-outline {
    background-color : transparent;
    color            : var(--ink);
    border-color     : var(--ink);
}

.btn-luxury-outline:hover {
    background-color : var(--ink);
    color            : var(--white);
}

/* ============================================
   SHARED TYPOGRAPHY
   ============================================ */
.section-eyebrow {
    font-family    : var(--font-sans);
    font-size      : 0.75rem;
    font-weight    : 600;
    letter-spacing : 0.2em;
    text-transform : uppercase;
    color          : var(--gold);
    display        : flex;
    align-items    : center;
    gap            : 0.75rem;
    margin-bottom  : 1.5rem;
}

.section-eyebrow::before {
    content     : '';
    width       : 2rem;
    height      : 1px;
    background  : var(--gold);
    flex-shrink : 0;
}

.section-eyebrow.light {
    color : var(--gold-light);
}

.section-eyebrow.light::before {
    background : var(--gold-light);
}

.section-title-serif {
    font-family    : var(--font-serif);
    font-size      : clamp(2.2rem, 4vw, 3.4rem);
    font-weight    : 300;
    line-height    : 1.15;
    color          : var(--ink);
    letter-spacing : -0.01em;
}

.section-title-serif em {
    font-style  : italic;
    font-weight : 300;
    color       : var(--gold);
}

.section-title-serif.light {
    color : var(--stone);
}

.section-title-serif.light em {
    color : var(--gold-light);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-item {
    opacity    : 0;
    transform  : translateY(28px);
    transition : opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-item.revealed {
    opacity   : 1;
    transform : translateY(0);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background-color : var(--ink);
    color            : var(--white);
    padding          : 7rem 0 6rem;
    position         : relative;
    overflow         : hidden;
}

.hero-bg-text {
    position       : absolute;
    bottom         : -2rem;
    right          : -1rem;
    font-family    : var(--font-serif);
    font-size      : clamp(8rem, 18vw, 18rem);
    font-weight    : 600;
    color          : rgba(255, 255, 255, 0.025);
    line-height    : 1;
    pointer-events : none;
    user-select    : none;
    letter-spacing : -0.02em;
}

.hero-layout {
    display               : grid;
    grid-template-columns : 1fr auto;
    gap                   : 4rem;
    align-items           : end;
}

.hero-content {
    max-width : 680px;
}

.hero-eyebrow {
    font-family    : var(--font-sans);
    font-size      : 0.75rem;
    font-weight    : 500;
    letter-spacing : 0.18em;
    text-transform : uppercase;
    color          : var(--gold);
    display        : flex;
    align-items    : center;
    gap            : 0.75rem;
    margin-bottom  : 2rem;
}

.eyebrow-line {
    display    : inline-block;
    width      : 2rem;
    height     : 1px;
    background : var(--gold);
}

.hero-title {
    font-family    : var(--font-serif);
    font-size      : clamp(2.8rem, 5.5vw, 5rem);
    font-weight    : 300;
    line-height    : 1.1;
    letter-spacing : -0.02em;
    margin-bottom  : 1.75rem;
    color          : var(--white);
}

.hero-title em {
    font-style : italic;
    color      : var(--gold);
}

.hero-title-light {
    color       : rgba(255, 255, 255, 0.55);
    font-weight : 300;
}

.hero-subtitle {
    font-size     : 1.05rem;
    line-height   : 1.75;
    color         : rgba(255, 255, 255, 0.65);
    margin-bottom : 2.5rem;
    max-width     : 500px;
}

.cta-subtext {
    margin-top     : 1rem;
    font-size      : 0.8rem;
    color          : rgba(255, 255, 255, 0.4);
    letter-spacing : 0.02em;
}

/* Hero stats */
.hero-stat-block {
    display        : flex;
    flex-direction : column;
    gap            : 0;
    border         : 1px solid rgba(255, 255, 255, 0.1);
    padding        : 2rem 2.5rem;
    align-self     : end;
    margin-bottom  : 0.5rem;
    min-width      : 180px;
}

.stat-item {
    text-align : center;
    padding    : 1.5rem 0;
}

.stat-number {
    font-family   : var(--font-serif);
    font-size     : 3rem;
    font-weight   : 300;
    color         : var(--white);
    line-height   : 1;
    margin-bottom : 0.4rem;
}

.stat-number span {
    font-size : 1.8rem;
    color     : var(--gold);
}

.stat-label {
    font-size      : 0.7rem;
    letter-spacing : 0.12em;
    text-transform : uppercase;
    color          : rgba(255, 255, 255, 0.45);
    font-weight    : 500;
}

.stat-divider {
    height     : 1px;
    background : rgba(255, 255, 255, 0.1);
    margin     : 0 -2.5rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position       : absolute;
    bottom         : 2rem;
    left           : 2.5rem;
    display        : flex;
    flex-direction : column;
    align-items    : center;
    gap            : 0.75rem;
    opacity        : 0.35;
}

.hero-scroll-indicator span {
    font-size      : 0.65rem;
    letter-spacing : 0.2em;
    text-transform : uppercase;
    color          : var(--white);
    font-family    : var(--font-sans);
    writing-mode   : vertical-lr;
}

.scroll-line {
    width      : 1px;
    height     : 3rem;
    background : linear-gradient(to bottom, var(--white), transparent);
    animation  : scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity   : 0.4;
        transform : scaleY(1);
    }
    50% {
        opacity   : 0.9;
        transform : scaleY(0.6);
    }
}

/* ============================================
   TRUTH / PROBLEMS
   ============================================ */
.truth {
    padding          : var(--section-pad) 0;
    background-color : var(--off-white);
}

.truth-layout {
    display               : grid;
    grid-template-columns : 1fr 2fr;
    gap                   : 5rem;
    align-items           : start;
}

.truth-header {
    position : sticky;
    top      : 5rem;
}

.truth-cards {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 1.5px;
    background            : var(--stone-mid);
    border                : 1.5px solid var(--stone-mid);
}

.truth-card {
    background : var(--off-white);
    padding    : 2.5rem;
    transition : background 0.3s var(--ease);
}

.truth-card:hover {
    background : var(--white);
}

.truth-card-number {
    font-family   : var(--font-serif);
    font-size     : 3rem;
    font-weight   : 300;
    color         : var(--stone-mid);
    line-height   : 1;
    margin-bottom : 1.25rem;
    transition    : color 0.3s var(--ease);
}

.truth-card:hover .truth-card-number {
    color : var(--gold);
}

.truth-card h3 {
    font-family   : var(--font-serif);
    font-size     : 1.35rem;
    font-weight   : 500;
    color         : var(--ink);
    margin-bottom : 0.75rem;
    line-height   : 1.3;
}

.truth-card p {
    font-size   : 0.9rem;
    line-height : 1.75;
    color       : #5a5a5a;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding          : 0;
    background-color : var(--off-white);
}

.philosophy-inner {
    background-color : var(--ink-soft);
    padding          : var(--section-pad) 0;
}

.philosophy-layout {
    display               : grid;
    grid-template-columns : 1fr 1.4fr;
    gap                   : 6rem;
    align-items           : start;
}

.philosophy-pull {
    font-family : var(--font-serif);
    font-size   : clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight : 300;
    font-style  : italic;
    line-height : 1.4;
    color       : rgba(255, 255, 255, 0.7);
    border      : none;
    position    : sticky;
    top         : 6rem;
}

.philosophy-pull em {
    color      : var(--gold-light);
    font-style : normal;
}

.philosophy-body {
    font-size     : 1.05rem;
    line-height   : 1.8;
    color         : rgba(255, 255, 255, 0.6);
    margin-bottom : 3rem;
}

.philosophy-pillars {
    display        : flex;
    flex-direction : column;
    gap            : 2rem;
}

.pillar {
    display        : flex;
    gap            : 1.25rem;
    padding-bottom : 2rem;
    border-bottom  : 1px solid rgba(255, 255, 255, 0.07);
}

.pillar:last-child {
    border-bottom  : none;
    padding-bottom : 0;
}

.pillar-marker {
    width       : 3px;
    height      : auto;
    min-height  : 2rem;
    background  : var(--gold);
    flex-shrink : 0;
    margin-top  : 0.2rem;
}

.pillar h4 {
    font-family    : var(--font-sans);
    font-size      : 0.8rem;
    font-weight    : 600;
    letter-spacing : 0.1em;
    text-transform : uppercase;
    color          : var(--gold-light);
    margin-bottom  : 0.5rem;
}

.pillar p {
    font-size   : 0.9rem;
    line-height : 1.7;
    color       : rgba(255, 255, 255, 0.55);
}

/* ============================================
   ABOUT / CREDENTIALS
   ============================================ */
.about {
    padding          : var(--section-pad) 0;
    background-color : var(--off-white);
}

.about-layout {
    display               : grid;
    grid-template-columns : 1fr 1.3fr;
    gap                   : 6rem;
    align-items           : start;
}

.about-image-frame {
    position : sticky;
    top      : 5rem;
}

.about-photo {
    width           : 100%;
    aspect-ratio    : 3/4;
    object-fit      : cover;
    object-position : top;
    filter          : grayscale(15%);
    transition      : filter 0.5s var(--ease);
}

.about-photo:hover {
    filter : grayscale(0%);
}

.about-image-label {
    display        : flex;
    flex-direction : column;
    gap            : 0.2rem;
    padding        : 1.25rem 1.5rem;
    background     : var(--ink);
    margin-top     : 0;
}

.label-name {
    font-family : var(--font-serif);
    font-size   : 1.2rem;
    font-weight : 500;
    color       : var(--white);
}

.label-title {
    font-size      : 0.72rem;
    letter-spacing : 0.12em;
    text-transform : uppercase;
    color          : var(--gold);
    font-weight    : 500;
}

.about-intro {
    font-size     : 1.05rem;
    line-height   : 1.8;
    color         : #5a5a5a;
    margin-bottom : 2.5rem;
}

.credential-list {
    display        : flex;
    flex-direction : column;
    gap            : 1.75rem;
}

.credential {
    padding-left : 1.5rem;
    border-left  : 2px solid var(--stone-mid);
    transition   : border-color 0.3s var(--ease);
}

.credential:hover {
    border-left-color : var(--gold);
}

.credential-tag {
    font-family    : var(--font-sans);
    font-size      : 0.72rem;
    font-weight    : 700;
    letter-spacing : 0.14em;
    text-transform : uppercase;
    color          : var(--gold);
    margin-bottom  : 0.5rem;
}

.credential p {
    font-size   : 0.9rem;
    line-height : 1.7;
    color       : #5a5a5a;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding          : var(--section-pad) 0;
    background-color : var(--stone);
}

.testimonials-header {
    margin-bottom : 4rem;
}

.testimonials-grid {
    display               : grid;
    grid-template-columns : 1fr 1fr;
    gap                   : 2px;
    background            : var(--stone-mid);
}

.testimonial {
    background : var(--stone);
    padding    : 3.5rem;
    transition : background 0.3s var(--ease);
}

.testimonial:hover {
    background : var(--white);
}

.testimonial-body {
    margin-bottom : 2.5rem;
}

.testimonial-body p {
    font-family : var(--font-serif);
    font-size   : clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight : 400;
    line-height : 1.75;
    color       : var(--ink-mid);
    font-style  : italic;
}

.testimonial-footer {
    padding-top : 2rem;
    border-top  : 1px solid var(--stone-mid);
}

.testimonial-name {
    font-family    : var(--font-sans);
    font-size      : 0.85rem;
    font-weight    : 600;
    letter-spacing : 0.05em;
    color          : var(--ink);
    margin-bottom  : 0.2rem;
}

.testimonial-role {
    font-size      : 0.78rem;
    color          : #888;
    letter-spacing : 0.03em;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    background : var(--off-white);
}

.process-inner {
    background : var(--ink);
    padding    : var(--section-pad) 0;
}

.process-header {
    margin-bottom : 4.5rem;
}

.process-steps {
    display               : grid;
    grid-template-columns : 1fr auto 1fr auto 1fr;
    gap                   : 0;
    align-items           : start;
}

.process-step {
    padding    : 2rem;
    border     : 1px solid rgba(255, 255, 255, 0.07);
    background : rgba(255, 255, 255, 0.02);
    transition : background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.process-step:hover {
    background   : rgba(201, 169, 110, 0.06);
    border-color : rgba(201, 169, 110, 0.25);
}

.step-num {
    font-family   : var(--font-serif);
    font-size     : 3.5rem;
    font-weight   : 300;
    color         : rgba(255, 255, 255, 0.08);
    line-height   : 1;
    margin-bottom : 1.25rem;
    transition    : color 0.3s var(--ease);
}

.process-step:hover .step-num {
    color : var(--gold);
}

.process-step h3 {
    font-family   : var(--font-serif);
    font-size     : 1.4rem;
    font-weight   : 400;
    color         : var(--white);
    margin-bottom : 0.75rem;
}

.process-step p {
    font-size   : 0.875rem;
    line-height : 1.75;
    color       : rgba(255, 255, 255, 0.5);
}

.process-connector {
    width      : 1px;
    height     : 2rem;
    background : rgba(255, 255, 255, 0.1);
    align-self : center;
    margin     : 0 1.5rem;
}

/* ============================================
   TOOL PROMO
   ============================================ */
.tool-promo {
    padding    : var(--section-pad) 0;
    background : var(--off-white);
}

.tool-layout {
    display               : grid;
    grid-template-columns : 1fr 1.2fr;
    gap                   : 6rem;
    align-items           : center;
}

/* Mock calculator card */
.tool-card-mock {
    background : var(--white);
    border     : 1px solid var(--stone-mid);
    padding    : 2.5rem;
    max-width  : 380px;
    box-shadow : 0 20px 60px rgba(0, 0, 0, 0.06);
}

.mock-row {
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    padding         : 0.9rem 0;
    border-bottom   : 1px solid var(--stone);
}

.mock-label {
    font-size      : 0.75rem;
    letter-spacing : 0.08em;
    text-transform : uppercase;
    font-weight    : 600;
    color          : #999;
}

.mock-value {
    font-size   : 0.875rem;
    font-weight : 500;
    color       : var(--ink);
}

.mock-divider {
    height     : 1.5px;
    background : var(--stone-mid);
    margin     : 1.5rem 0;
}

.mock-result {
    display         : flex;
    justify-content : space-between;
    align-items     : baseline;
    padding         : 0.75rem 0;
}

.mock-result.accent .mock-result-label {
    color : var(--gold);
}

.mock-result.accent .mock-result-value {
    color : var(--gold);
}

.mock-result-label {
    font-size      : 0.75rem;
    letter-spacing : 0.08em;
    text-transform : uppercase;
    font-weight    : 600;
    color          : #999;
}

.mock-result-value {
    font-family : var(--font-serif);
    font-size   : 2rem;
    font-weight : 300;
    color       : var(--ink);
    line-height : 1;
}

.mock-result-value small {
    font-size   : 0.75rem;
    font-family : var(--font-sans);
    font-weight : 500;
    color       : #aaa;
    margin-left : 0.25rem;
}

.tool-badge {
    display        : inline-block;
    font-size      : 0.68rem;
    font-weight    : 700;
    letter-spacing : 0.2em;
    text-transform : uppercase;
    color          : var(--white);
    background     : var(--gold);
    padding        : 0.35rem 0.85rem;
    margin-bottom  : 1.5rem;
}

.tool-text p {
    font-size     : 0.95rem;
    line-height   : 1.8;
    color         : #5a5a5a;
    margin-bottom : 2rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding    : var(--section-pad) 0;
    background : var(--ink);
    text-align : center;
}

.final-cta-content {
    max-width : 700px;
    margin    : 0 auto;
}

.final-cta-title {
    font-family    : var(--font-serif);
    font-size      : clamp(2.5rem, 5vw, 4.5rem);
    font-weight    : 300;
    line-height    : 1.15;
    color          : var(--white);
    letter-spacing : -0.02em;
    margin-bottom  : 1.5rem;
}

.final-cta-title em {
    font-style : italic;
    color      : var(--gold);
}

.final-cta-body {
    font-size     : 1rem;
    line-height   : 1.75;
    color         : rgba(255, 255, 255, 0.55);
    margin-bottom : 2.5rem;
}

.final-cta-note {
    margin-top     : 1.25rem;
    font-size      : 0.75rem;
    letter-spacing : 0.1em;
    color          : rgba(255, 255, 255, 0.3);
    text-transform : uppercase;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrapper {
    background-color : var(--off-white);
    border-bottom    : 1px solid var(--stone-mid);
    padding          : 0.9rem 0;
}

.breadcrumb {
    display     : flex;
    align-items : center;
    flex-wrap   : wrap;
    gap         : 0.4rem;
}

.breadcrumb-link {
    font-size       : 0.75rem;
    font-weight     : 500;
    letter-spacing  : 0.06em;
    text-transform  : uppercase;
    color           : #aaa;
    text-decoration : none;
    transition      : color 0.2s var(--ease);
}

.breadcrumb-link:hover {
    color : var(--gold);
}

.breadcrumb-separator {
    color       : var(--stone-mid);
    font-size   : 1rem;
    line-height : 1;
}

.breadcrumb-current {
    font-size      : 0.75rem;
    font-weight    : 600;
    letter-spacing : 0.06em;
    text-transform : uppercase;
    color          : var(--ink-mid);
}

/* ============================================
   ARTICLE (LONG-FORM) PAGES
   ============================================ */
.page-container {
    max-width : 780px;
    margin    : 0 auto;
    padding   : 5rem 2rem 7rem;
}

.page-header {
    margin-bottom  : 3.5rem;
    padding-bottom : 3rem;
    border-bottom  : 1px solid var(--stone-mid);
}

.page-header h1 {
    font-family    : var(--font-serif);
    font-size      : clamp(2.2rem, 4vw, 3.4rem);
    font-weight    : 300;
    color          : var(--ink);
    line-height    : 1.15;
    letter-spacing : -0.015em;
    margin-bottom  : 1rem;
}

.page-header h1 em {
    font-style : italic;
    color      : var(--gold);
}

.page-header p {
    font-family : var(--font-serif);
    font-size   : 1.15rem;
    font-style  : italic;
    color       : #999;
    line-height : 1.7;
}

/* Article meta row (date, read time, category) */
.article-meta-row {
    display       : flex;
    flex-wrap     : wrap;
    align-items   : center;
    gap           : 0.75rem;
    margin-bottom : 1.5rem;
}

/* Article body prose */
.article-body {
    font-size   : 1rem;
    line-height : 1.9;
    color       : #3a3a3a;
}

.article-body h2 {
    font-family    : var(--font-serif);
    font-size      : 1.9rem;
    font-weight    : 400;
    color          : var(--ink);
    line-height    : 1.2;
    margin         : 3rem 0 1.25rem;
    letter-spacing : -0.01em;
}

.article-body h3 {
    font-family : var(--font-serif);
    font-size   : 1.35rem;
    font-weight : 500;
    color       : var(--ink);
    margin      : 2.25rem 0 0.85rem;
}

.article-body p {
    margin-bottom : 1.5rem;
}

.article-body p:last-child {
    margin-bottom : 0;
}

.article-body strong {
    font-weight : 600;
    color       : var(--ink);
}

.article-body em {
    font-style : italic;
    color      : var(--ink-mid);
}

.article-body a {
    color                 : var(--gold);
    text-decoration       : underline;
    text-decoration-color : rgba(201, 169, 110, 0.4);
    text-underline-offset : 3px;
    transition            : text-decoration-color 0.2s var(--ease);
}

.article-body a:hover {
    text-decoration-color : var(--gold);
}

.article-body ul,
.article-body ol {
    margin         : 1.25rem 0 1.75rem 1.5rem;
    display        : flex;
    flex-direction : column;
    gap            : 0.6rem;
}

.article-body li {
    font-size   : 0.975rem;
    line-height : 1.75;
    color       : #3a3a3a;
}

.article-body blockquote {
    margin      : 2.5rem 0;
    padding     : 1.5rem 2rem;
    border-left : 3px solid var(--gold);
    background  : var(--stone);
}

.article-body blockquote p {
    font-family   : var(--font-serif);
    font-size     : 1.2rem;
    font-style    : italic;
    color         : var(--ink-mid);
    margin-bottom : 0;
}

/* Article CTA box */
.article-cta {
    margin-top     : 4rem;
    padding        : 2.5rem;
    background     : var(--ink);
    display        : flex;
    flex-direction : column;
    gap            : 1rem;
}

.article-cta p {
    font-family : var(--font-serif);
    font-size   : 1.2rem;
    font-weight : 300;
    color       : rgba(255, 255, 255, 0.75);
    line-height : 1.6;
    margin      : 0;
}

.article-cta p em {
    color      : var(--gold-light);
    font-style : italic;
}

/* ============================================
   RESOURCES INDEX
   ============================================ */
.resources-container {
    max-width : 1280px;
    margin    : 0 auto;
    padding   : 5rem 2rem 6rem;
}

.resources-header {
    margin-bottom : 4rem;
    max-width     : 600px;
}

.resources-header h1 {
    font-family    : var(--font-serif);
    font-size      : clamp(2.2rem, 4vw, 3.5rem);
    font-weight    : 300;
    color          : var(--ink);
    line-height    : 1.15;
    letter-spacing : -0.01em;
    margin-bottom  : 0.75rem;
}

.resources-header h1 em {
    font-style : italic;
    color      : var(--gold);
}

.resources-header p {
    font-size   : 1rem;
    color       : #888;
    line-height : 1.6;
}

/* ============================================
   INFO CARD GRID (reusable comparison/highlight component)
   ============================================ */
.info-card-grid {
    display               : grid;
    grid-template-columns : repeat(3, 1fr);
    gap                   : 1.5px;
    background            : var(--stone-mid);
    margin                : 2rem 0 2.5rem;
}

.info-card {
    background : var(--off-white);
    padding    : 1.75rem;
    position   : relative;
}

.info-card::before {
    content    : '';
    position   : absolute;
    top        : 0;
    left       : 0;
    right      : 0;
    height     : 2px;
    background : var(--stone-mid);
}

.info-card--accent::before {
    background : var(--gold);
}

.info-card--dark::before {
    background : var(--ink-mid);
}

.info-card__label {
    font-family    : var(--font-sans);
    font-size      : 0.72rem;
    font-weight    : 700;
    letter-spacing : 0.12em;
    text-transform : uppercase;
    color          : var(--ink);
    margin-bottom  : 0.75rem;
}

.info-card--accent .info-card__label {
    color : var(--gold);
}

.info-card__body {
    font-size   : 0.875rem;
    line-height : 1.7;
    color       : #666;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color : #080808;
    border-top       : 1px solid rgba(255, 255, 255, 0.05);
    padding          : 3rem 0 2rem;
}

.footer-content {
    display         : flex;
    justify-content : space-between;
    align-items     : flex-start;
    margin-bottom   : 2.5rem;
    flex-wrap       : wrap;
    gap             : 2rem;
}

.footer-brand h3 {
    font-family   : var(--font-serif);
    font-size     : 1.3rem;
    font-weight   : 400;
    color         : var(--white);
    margin-bottom : 0.4rem;
}

.footer-brand p {
    font-size      : 0.8rem;
    color          : rgba(255, 255, 255, 0.35);
    letter-spacing : 0.03em;
}

.footer-links {
    display   : flex;
    gap       : 2rem;
    flex-wrap : wrap;
}

.footer-links a {
    font-size       : 0.78rem;
    letter-spacing  : 0.08em;
    text-transform  : uppercase;
    font-weight     : 500;
    color           : rgba(255, 255, 255, 0.4);
    text-decoration : none;
    transition      : color 0.2s var(--ease);
}

.footer-links a:hover {
    color : var(--gold);
}

.footer-bottom {
    padding-top : 2rem;
    border-top  : 1px solid rgba(255, 255, 255, 0.06);
    text-align  : center;
}

.footer-bottom p {
    font-size      : 0.75rem;
    color          : rgba(255, 255, 255, 0.2);
    letter-spacing : 0.05em;
}

.footer-legal {
    margin-top : 0.75rem;
}

.footer-legal a {
    color           : rgba(255, 255, 255, 0.4);
    text-decoration : none;
    transition      : color 0.3s ease;
}

.footer-legal a:hover {
    color : rgba(255, 255, 255, 0.75);
}

.footer-legal-sep {
    color  : rgba(255, 255, 255, 0.2);
    margin : 0 0.5rem;
}

/* Mobile overlay */
.menu-overlay {
    display    : none;
    position   : fixed;
    inset      : 0;
    background : rgba(0, 0, 0, 0.4);
    z-index    : 150;
}

.menu-overlay.active {
    display : block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width : 1024px) {
    .hero-layout {
        grid-template-columns : 1fr;
    }

    .hero-stat-block {
        flex-direction  : row;
        border          : 1px solid rgba(255, 255, 255, 0.1);
        padding         : 1.5rem 2rem;
        justify-content : space-around;
        margin-top      : 3rem;
    }

    .stat-divider {
        width  : 1px;
        height : auto;
        margin : 0;
    }

    .stat-item {
        padding : 0 1.5rem;
    }

    .truth-layout {
        grid-template-columns : 1fr;
        gap                   : 3rem;
    }

    .truth-header {
        position : static;
    }

    .truth-cards {
        grid-template-columns : 1fr 1fr;
    }

    .philosophy-layout {
        grid-template-columns : 1fr;
        gap                   : 3rem;
    }

    .philosophy-pull {
        position : static;
    }

    .about-layout {
        grid-template-columns : 1fr;
        gap                   : 3rem;
    }

    .about-image-frame {
        position  : static;
        max-width : 400px;
    }

    .testimonials-grid {
        grid-template-columns : 1fr;
    }

    .process-steps {
        grid-template-columns : 1fr;
        gap                   : 0;
    }

    .process-connector {
        width      : 2rem;
        height     : 1px;
        margin     : 0;
        align-self : auto;
        transform  : rotate(90deg);
        margin     : 1rem auto;
    }

    .tool-layout {
        grid-template-columns : 1fr;
        gap                   : 3rem;
    }

    .tool-card-mock {
        max-width : 100%;
    }
}

@media (max-width : 768px) {
    :root {
        --section-pad : 5rem;
    }

    .truth-cards {
        grid-template-columns : 1fr;
    }

    .hero-title {
        font-size : 2.4rem;
    }

    .hero-stat-block {
        flex-direction : column;
        padding        : 1.5rem;
    }

    .stat-divider {
        width  : 100%;
        height : 1px;
        margin : 0;
    }

    .stat-item {
        padding : 1.25rem 0;
    }

    .page-container {
        padding : 3.5rem 1.25rem 5rem;
    }

    .article-body h2 {
        font-size : 1.55rem;
        margin    : 2.25rem 0 1rem;
    }

    .article-body h3 {
        font-size : 1.2rem;
    }

    .article-cta {
        padding : 2rem 1.5rem;
    }

    .testimonial {
        padding : 2.5rem;
    }
}

@media (max-width : 640px) {
    :root {
        --section-pad : 4rem;
    }

    .menu-toggle {
        display : flex;
    }

    .nav-links {
        position       : fixed;
        top            : 0;
        right          : -100%;
        width          : 75%;
        max-width      : 300px;
        height         : 100vh;
        background     : var(--white);
        flex-direction : column;
        align-items    : flex-start;
        padding        : 6rem 2rem 2rem;
        box-shadow     : -4px 0 20px rgba(0, 0, 0, 0.12);
        transition     : right 0.35s var(--ease);
        z-index        : 180;
        gap            : 0;
    }

    .nav-links.active {
        right : 0;
    }

    .nav-link {
        display       : block;
        font-size     : 0.9rem;
        padding       : 1rem 0;
        border-bottom : 1px solid var(--stone);
        width         : 100%;
    }

    .nav-link::after {
        display : none;
    }

    .btn-primary-nav {
        margin-top : 1.5rem;
        width      : 100%;
        text-align : center;
        padding    : 0.85rem 1.5rem;
    }

    .hero {
        padding : 5rem 0 4rem;
    }

    .hero-bg-text {
        display : none;
    }

    .hero-scroll-indicator {
        display : none;
    }

    .container {
        padding : 0 1.25rem;
    }

    .truth-card {
        padding : 2rem 1.5rem;
    }

    .info-card-grid {
        grid-template-columns : 1fr;
    }

    .testimonial {
        padding : 2rem 1.5rem;
    }

    .process-step {
        padding : 1.5rem;
    }

    .philosophy-inner {
        padding : var(--section-pad) 0;
    }

    .pillar {
        gap : 1rem;
    }
}
