/* ============================================
   PUSHPANJALI DIET CARE — Base / Reset / Typography
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--color-text-primary);
    background-color: var(--color-warm-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
    font-weight: var(--fw-semibold);
}

h4 {
    font-size: var(--text-xl);
    font-weight: var(--fw-semibold);
}

h5 {
    font-size: var(--text-lg);
    font-weight: var(--fw-medium);
}

h6 {
    font-size: var(--text-md);
    font-weight: var(--fw-medium);
}

p {
    margin-bottom: var(--space-4);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
}

strong {
    font-weight: var(--fw-semibold);
}

em {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

/* ── Container ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ── Section Spacing ── */
.section {
    padding: var(--space-20) 0;
}

/* ── Section Titles ── */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--fw-bold);
    text-align: center;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    line-height: var(--lh-snug);
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-12);
    line-height: var(--lh-relaxed);
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fw-light { font-weight: var(--fw-light); }
.fw-regular { font-weight: var(--fw-regular); }
.fw-medium { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold { font-weight: var(--fw-bold); }

.text-primary { color: var(--color-primary); }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: var(--color-text-white); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden { display: none !important; }

/* ── Selection ── */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}
 
 / *   A c c e s s i b i l i t y   F o c u s   S t a t e s   * /  
 a : f o c u s - v i s i b l e ,   b u t t o n : f o c u s - v i s i b l e ,   i n p u t : f o c u s - v i s i b l e ,   t e x t a r e a : f o c u s - v i s i b l e   {   o u t l i n e :   2 p x   s o l i d   v a r ( - - c o l o r - g o l d ) ;   o u t l i n e - o f f s e t :   2 p x ;   }  
 