/*
Theme Name:  Igatpuri Theme
Theme URI:   https://igatpuri.org
Author:      igatpuri.org
Author URI:  https://igatpuri.org
Description: Purpose-built theme for igatpuri.org — zero page builder, full custom design system.
Version:     3.0.0
Requires PHP: 8.1
Requires at least: 6.4
Text Domain: igatpuri-theme
License:     GPL-2.0-or-later
*/

/* ════════════════════════════════════════════════════════════════════════════
   DESIGN TOKENS — :root
   ════════════════════════════════════════════════════════════════════════════ */
:root {
    /* ── Brand Colors ─────────────────────────────────────────────────────── */
    --igp-forest: #162a1f;
    /* Primary dark green */
    --igp-forest-mid: #234834;
    /* Medium forest green - used in stats bar */
    --igp-forest-lt: #2e5e45;
    /* Light forest green - hover states */
    --igp-forest-light: #2d5a3d;
    /* Card backgrounds */
    --igp-sage: #6b9e7a;
    /* Muted green text */
    --igp-sage-lt: #a8c9b1;
    /* Light sage - muted text on dark bg */
    --igp-cream: #f4ede0;
    /* Page background */
    --igp-cream-lt: #faf7f2;
    /* Very light cream */
    --igp-parchment: #ede6d3;
    /* Subtle background */
    --igp-amber: #c8722a;
    /* Primary CTA */
    --igp-amber-lt: #e8a55a;
    /* CTA hover - alias for amber-light */
    --igp-amber-light: #e08040;
    /* CTA hover */
    --igp-amber-pale: #fff3e0;
    /* Light accent bg */
    --igp-gold: #d4a853;
    /* Stars, highlights */

    /* ── Text Colors ──────────────────────────────────────────────────────── */
    --igp-text-dark: #18221c;
    /* Darkest text */
    --igp-text-mid: #3d5245;
    /* Medium value text */
    --igp-text-primary: #18221c;
    --igp-text-secondary: #4a5c4f;
    --igp-text-muted: #6b8474;
    --igp-text-on-dark: #f4ede0;
    --igp-text-on-amber: #ffffff;


    /* ── Tier Colors ──────────────────────────────────────────────────────── */
    --igp-tier-free: #6b8474;
    --igp-tier-standard: #2563eb;
    --igp-tier-premium: #d97706;
    --igp-tier-sponsored: #be185d;

    /* ── Trek Difficulty Colors ───────────────────────────────────────────── */
    --igp-diff-easy: #15803d;
    --igp-diff-moderate: #b45309;
    --igp-diff-hard: #b91c1c;
    --igp-diff-expert: #7c3aed;

    /* ── State Colors ─────────────────────────────────────────────────────── */
    --igp-success: #15803d;
    --igp-warning: #b45309;
    --igp-error: #b91c1c;
    --igp-info: #1d4ed8;

    /* ── Typography ───────────────────────────────────────────────────────── */
    --igp-font-display: 'Cormorant Garamond', Georgia, serif;
    --igp-font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --igp-font-mono: 'DM Mono', 'Courier New', monospace;

    /* ── Type Scale (fluid via clamp) ─────────────────────────────────────── */
    --igp-text-xs: clamp(11px, 1.2vw, 12px);
    --igp-text-sm: clamp(13px, 1.4vw, 14px);
    --igp-text-base: clamp(15px, 1.6vw, 16px);
    --igp-text-md: clamp(17px, 1.8vw, 18px);
    --igp-text-lg: clamp(19px, 2.0vw, 20px);
    --igp-text-xl: clamp(22px, 2.4vw, 24px);
    --igp-text-2xl: clamp(26px, 3.0vw, 32px);
    --igp-text-3xl: clamp(32px, 4.0vw, 42px);
    --igp-text-4xl: clamp(40px, 5.5vw, 56px);
    --igp-text-5xl: clamp(52px, 7.0vw, 72px);

    /* ── Spacing ──────────────────────────────────────────────────────────── */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;
    --sp-32: 128px;

    /* ── Section spacing ──────────────────────────────────────────────────── */
    --igp-section-gap: clamp(48px, 8vw, 96px);
    --igp-container: 1280px;
    --igp-content-width: 800px;

    /* ── Border Radius ────────────────────────────────────────────────────── */
    --igp-radius-sm: 6px;
    --igp-radius-md: 10px;
    --igp-radius-lg: 16px;
    --igp-radius-xl: 24px;
    --igp-radius-pill: 9999px;

    /* ── Shadows ──────────────────────────────────────────────────────────── */
    --igp-shadow-xs: 0 1px 3px rgba(22, 42, 31, .06);
    --igp-shadow-sm: 0 2px 8px rgba(22, 42, 31, .08);
    --igp-shadow-md: 0 4px 16px rgba(22, 42, 31, .10);
    --igp-shadow-lg: 0 8px 32px rgba(22, 42, 31, .14);
    --igp-shadow-xl: 0 16px 48px rgba(22, 42, 31, .18);

    /* ── Transitions ──────────────────────────────────────────────────────── */
    --igp-trans-fast: 150ms ease;
    --igp-trans-base: 250ms ease;
    --igp-trans-slow: 400ms ease;

    /* ── Z-index ──────────────────────────────────────────────────────────── */
    --igp-z-dropdown: 100;
    --igp-z-sticky: 200;
    --igp-z-overlay: 300;
    --igp-z-modal: 400;
    --igp-z-toast: 500;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--igp-font-body);
    font-size: var(--igp-text-base);
    line-height: 1.7;
    color: var(--igp-text-primary);
    background: var(--igp-cream);
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--igp-amber);
    text-decoration: none;
    transition: color var(--igp-trans-fast);
}

a:hover {
    color: var(--igp-amber-light);
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol,
li {
    list-style: none;
}

table {
    border-collapse: collapse;
}

/* ── Skip link ────────────────────────────────────────────────────────────── */
.igp-skip-link {
    position: absolute;
    left: -9999px;
}

.igp-skip-link:focus {
    left: 8px;
    top: 8px;
    z-index: 9999;
    background: var(--igp-amber);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--igp-radius-sm);
}

/* ── Focus outline ────────────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--igp-amber);
    outline-offset: 3px;
    border-radius: var(--igp-radius-sm);
}

/* ════════════════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════════════════════════════════════ */
.igp-container {
    width: 100%;
    max-width: var(--igp-container);
    margin-inline: auto;
    padding-inline: var(--sp-5);
}

@media (min-width: 640px) {
    .igp-container {
        padding-inline: var(--sp-6);
    }
}

@media (min-width: 1024px) {
    .igp-container {
        padding-inline: var(--sp-8);
    }
}

.igp-section {
    padding-block: var(--igp-section-gap);
}

.igp-section--sm {
    padding-block: calc(var(--igp-section-gap) / 2);
}

.igp-grid {
    display: grid;
    gap: var(--sp-6);
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .igp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .igp-grid--cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .igp-grid--cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.igp-flex {
    display: flex;
    gap: var(--sp-4);
}

.igp-flex--center {
    align-items: center;
    justify-content: center;
}

.igp-flex--between {
    align-items: center;
    justify-content: space-between;
}

.igp-flex--wrap {
    flex-wrap: wrap;
}

.igp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.igp-text-center {
    text-align: center;
}

.igp-text-start {
    text-align: left;
}

/* ════════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════════════════════ */
.igp-h1,
h1 {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-4xl);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -.01em;
}

.igp-h2,
h2 {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-3xl);
    line-height: 1.2;
    font-weight: 600;
}

.igp-h3,
h3 {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-2xl);
    line-height: 1.25;
    font-weight: 600;
}

.igp-h4,
h4 {
    font-family: var(--igp-font-body);
    font-size: var(--igp-text-lg);
    line-height: 1.4;
    font-weight: 600;
}

.igp-section-title {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-3xl);
    font-weight: 600;
}

.igp-section-subtitle {
    font-size: var(--igp-text-md);
    color: var(--igp-text-secondary);
    max-width: 600px;
    margin-inline: auto;
    margin-top: var(--sp-3);
}

.igp-label {
    font-size: var(--igp-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--igp-text-muted);
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--igp-radius-md);
    font-weight: 600;
    font-size: var(--igp-text-sm);
    letter-spacing: .01em;
    cursor: pointer;
    transition: all var(--igp-trans-base);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.igp-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--igp-shadow-md);
}

.igp-btn:active {
    transform: translateY(0);
}

.igp-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.igp-btn--primary {
    background: var(--igp-amber);
    color: var(--igp-text-on-amber);
    border-color: var(--igp-amber);
}

.igp-btn--primary:hover {
    background: var(--igp-amber-light);
    border-color: var(--igp-amber-light);
    color: var(--igp-text-on-amber);
}

.igp-btn--outline {
    background: transparent;
    color: var(--igp-amber);
    border-color: var(--igp-amber);
}

.igp-btn--outline:hover {
    background: var(--igp-amber);
    color: #fff;
}

.igp-btn--ghost {
    background: transparent;
    color: var(--igp-text-primary);
    border-color: transparent;
}

.igp-btn--ghost:hover {
    background: var(--igp-parchment);
}

.igp-btn--dark {
    background: var(--igp-forest);
    color: var(--igp-text-on-dark);
    border-color: var(--igp-forest);
}

.igp-btn--dark:hover {
    background: var(--igp-forest-light);
    color: var(--igp-text-on-dark);
}

.igp-btn--sm {
    padding: 8px 16px;
    font-size: var(--igp-text-xs);
    border-radius: var(--igp-radius-sm);
}

.igp-btn--lg {
    padding: 16px 36px;
    font-size: var(--igp-text-md);
    border-radius: var(--igp-radius-lg);
}

.igp-btn--whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.igp-btn--whatsapp:hover {
    background: #1ebe57;
    border-color: #1ebe57;
    color: #fff;
}

.igp-btn--copied {
    background: var(--igp-success) !important;
    border-color: var(--igp-success) !important;
}

/* ════════════════════════════════════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-card {
    background: #fff;
    border-radius: var(--igp-radius-lg);
    box-shadow: var(--igp-shadow-sm);
    overflow: hidden;
    transition: transform var(--igp-trans-base), box-shadow var(--igp-trans-base);
}

.igp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--igp-shadow-lg);
}

.igp-card__thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--igp-parchment);
}

.igp-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--igp-trans-slow);
}

.igp-card:hover .igp-card__thumb img {
    transform: scale(1.04);
}

.igp-card__body {
    padding: var(--sp-5);
}

.igp-card__title {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-xl);
    line-height: 1.3;
    margin-bottom: var(--sp-2);
}

.igp-card__title a {
    color: inherit;
}

.igp-card__title a:hover {
    color: var(--igp-amber);
}

.igp-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-2);
    font-size: var(--igp-text-xs);
    color: var(--igp-text-muted);
    margin-bottom: var(--sp-3);
}

.igp-card__desc {
    font-size: var(--igp-text-sm);
    color: var(--igp-text-secondary);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.igp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) var(--sp-5);
    border-top: 1px solid var(--igp-parchment);
}

.igp-card__badges {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

/* ════════════════════════════════════════════════════════════════════════════
   BADGES & STATUS PILLS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--igp-radius-pill);
    font-size: var(--igp-text-xs);
    font-weight: 600;
    line-height: 1.5;
}

.igp-badge--open {
    background: #dcfce7;
    color: #15803d;
}

.igp-badge--closed {
    background: #fee2e2;
    color: #b91c1c;
}

.igp-badge--upcoming {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    font-size: 11px;
}

.igp-badge--past {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    font-size: 11px;
}

.igp-badge--verified {
    background: #dbeafe;
    color: #1d4ed8;
}

.igp-tier-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: var(--igp-radius-pill);
    font-size: var(--igp-text-xs);
    font-weight: 700;
}

.igp-tier-free {
    background: #e8eae9;
    color: var(--igp-tier-free);
}

.igp-tier-standard {
    background: #dbeafe;
    color: var(--igp-tier-standard);
}

.igp-tier-premium {
    background: #fef3c7;
    color: var(--igp-tier-premium);
}

.igp-tier-sponsored {
    background: #fce7f3;
    color: var(--igp-tier-sponsored);
}

.igp-difficulty {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--igp-radius-pill);
    font-size: var(--igp-text-xs);
    font-weight: 700;
}

.igp-difficulty--easy {
    background: #dcfce7;
    color: var(--igp-diff-easy);
}

.igp-difficulty--moderate {
    background: #fef3c7;
    color: var(--igp-diff-moderate);
}

.igp-difficulty--hard {
    background: #fee2e2;
    color: var(--igp-diff-hard);
}

.igp-difficulty--expert {
    background: #ede9fe;
    color: var(--igp-diff-expert);
}

/* ════════════════════════════════════════════════════════════════════════════
   STARS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--igp-gold);
    font-size: 16px;
}

.igp-star--empty {
    color: var(--igp-parchment);
}

.igp-stars-score {
    font-weight: 700;
    color: var(--igp-text-primary);
}

.igp-stars-count {
    color: var(--igp-text-muted);
    font-size: var(--igp-text-sm);
}

/* Star picker (review form) */
.igp-star-pick {
    font-size: 28px;
    cursor: pointer;
    color: var(--igp-parchment);
    transition: color var(--igp-trans-fast);
}

.igp-star-pick:hover,
.igp-star-pick--active {
    color: var(--igp-gold);
}

/* ════════════════════════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.igp-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.igp-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

@media (min-width: 640px) {
    .igp-form-row--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.igp-label-text {
    font-weight: 600;
    font-size: var(--igp-text-sm);
    color: var(--igp-text-primary);
}

.igp-required {
    color: var(--igp-error);
}

.igp-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--igp-parchment);
    border-radius: var(--igp-radius-md);
    background: #fff;
    color: var(--igp-text-primary);
    transition: border-color var(--igp-trans-fast), box-shadow var(--igp-trans-fast);
    font-size: var(--igp-text-base);
}

.igp-field:focus {
    border-color: var(--igp-amber);
    box-shadow: 0 0 0 3px rgba(200, 114, 42, .12);
    outline: none;
}

.igp-field::placeholder {
    color: var(--igp-text-muted);
}

.igp-field--error {
    border-color: var(--igp-error);
}

textarea.igp-field {
    resize: vertical;
    min-height: 120px;
}

/* ════════════════════════════════════════════════════════════════════════════
   ALERT / NOTICE
   ════════════════════════════════════════════════════════════════════════════ */
.igp-alert {
    padding: 12px 16px;
    border-radius: var(--igp-radius-md);
    font-size: var(--igp-text-sm);
    font-weight: 500;
}

.igp-alert--success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.igp-alert--error {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.igp-alert--warn {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.igp-alert--info {
    background: #dbeafe;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

/* ════════════════════════════════════════════════════════════════════════════
   PROMO CODE BOX
   ════════════════════════════════════════════════════════════════════════════ */
.igp-promo-box {
    border: 2px dashed var(--igp-amber);
    border-radius: var(--igp-radius-lg);
    padding: var(--sp-5);
    background: var(--igp-amber-pale);
}

.igp-promo-label {
    font-size: var(--igp-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--igp-amber);
}

.igp-promo-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-top: var(--sp-2);
}

.igp-promo-code {
    font-family: var(--igp-font-mono);
    font-size: var(--igp-text-xl);
    font-weight: 700;
    color: var(--igp-text-primary);
    letter-spacing: .1em;
}

/* ════════════════════════════════════════════════════════════════════════════
   MAP
   ════════════════════════════════════════════════════════════════════════════ */
.igp-map-wrap {
    border-radius: var(--igp-radius-lg);
    overflow: hidden;
    box-shadow: var(--igp-shadow-md);
}

.igp-map-embed {
    border-radius: var(--igp-radius-lg);
    overflow: hidden;
}

#igp-map {
    min-height: 320px;
}

@media (min-width: 768px) {
    #igp-map {
        min-height: 450px;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════════════════ */
.igp-header {
    position: sticky;
    top: 0;
    z-index: var(--igp-z-sticky);
    background: var(--igp-forest);
    color: var(--igp-text-on-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background var(--igp-trans-base), box-shadow var(--igp-trans-base);
}

.igp-header.igp-header--scrolled {
    box-shadow: var(--igp-shadow-lg);
}

.igp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    padding-block: 14px;
}

.igp-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
}

.igp-logo__img {
    height: 36px;
    width: auto;
}

.igp-logo__text {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-xl);
    font-weight: 700;
    color: var(--igp-text-on-dark);
}

.igp-logo__text span {
    color: var(--igp-amber);
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
.igp-nav {
    display: none;
}

@media (min-width: 1024px) {
    .igp-nav {
        display: flex;
        align-items: center;
        gap: var(--sp-1);
    }

    .igp-nav__link {
        display: block;
        padding: 8px 12px;
        border-radius: var(--igp-radius-sm);
        color: var(--igp-text-on-dark);
        font-size: var(--igp-text-sm);
        font-weight: 500;
        opacity: .85;
        transition: all var(--igp-trans-fast);
    }

    .igp-nav__link:hover,
    .igp-nav__link.igp-current {
        opacity: 1;
        background: rgba(255, 255, 255, .08);
        color: var(--igp-text-on-dark);
    }
}

.igp-nav__cta {
    background: var(--igp-amber);
    color: var(--igp-text-on-amber) !important;
    padding: 8px 16px !important;
    border-radius: var(--igp-radius-md) !important;
    opacity: 1 !important;
}

.igp-nav__cta:hover {
    background: var(--igp-amber-light) !important;
}

/* ── Mobile hamburger ───────────────────────────────────────────────────── */
.igp-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: var(--igp-radius-sm);
}

.igp-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--igp-text-on-dark);
    border-radius: 2px;
    transition: all var(--igp-trans-base);
}

.igp-hamburger--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.igp-hamburger--open span:nth-child(2) {
    opacity: 0;
}

.igp-hamburger--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .igp-hamburger {
        display: none;
    }
}

/* ── Mobile nav drawer ──────────────────────────────────────────────────── */
.igp-nav-mobile {
    position: fixed;
    inset: 0;
    top: 65px;
    background: var(--igp-forest);
    z-index: var(--igp-z-overlay);
    transform: translateX(-100%);
    transition: transform var(--igp-trans-base);
    overflow-y: auto;
}

.igp-nav-mobile.igp-nav-mobile--open {
    transform: translateX(0);
}

.igp-nav-mobile__inner {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.igp-nav-mobile__link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--igp-radius-md);
    color: var(--igp-text-on-dark);
    font-size: var(--igp-text-md);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.igp-nav-mobile__link:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--igp-text-on-dark);
}

/* ── Search bar in header ───────────────────────────────────────────────── */
.igp-header-search {
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .igp-header-search {
        display: block;
    }
}

.igp-header-search input {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--igp-radius-pill);
    padding: 8px 16px;
    color: #fff;
    width: 200px;
    font-size: var(--igp-text-sm);
    transition: all var(--igp-trans-base);
}

.igp-header-search input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.igp-header-search input:focus {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3);
    outline: none;
    width: 260px;
}

/* Autocomplete dropdown */
#igp-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 300px;
    background: #fff;
    border-radius: var(--igp-radius-lg);
    box-shadow: var(--igp-shadow-xl);
    overflow: hidden;
    z-index: var(--igp-z-dropdown);
}

.igp-ac-item {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 12px 16px;
    color: var(--igp-text-primary);
    border-bottom: 1px solid var(--igp-parchment);
    transition: background var(--igp-trans-fast);
}

.igp-ac-item:hover {
    background: var(--igp-parchment);
}

.igp-ac-item:last-child {
    border: none;
}

.igp-ac-thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--igp-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.igp-ac-title {
    flex: 1;
    font-weight: 600;
    font-size: var(--igp-text-sm);
}

.igp-ac-type {
    font-size: var(--igp-text-xs);
    color: var(--igp-text-muted);
    text-transform: capitalize;
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.igp-footer {
    background: var(--igp-forest);
    color: var(--igp-text-on-dark);
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-8);
}

.igp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    margin-bottom: var(--sp-10);
}

@media (min-width: 640px) {
    .igp-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .igp-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.igp-footer__brand p {
    color: var(--igp-sage);
    font-size: var(--igp-text-sm);
    margin-top: var(--sp-4);
    line-height: 1.8;
    max-width: 280px;
}

.igp-footer__heading {
    font-family: var(--igp-font-body);
    font-size: var(--igp-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--igp-sage);
    margin-bottom: var(--sp-4);
}

.igp-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.igp-footer__links a {
    color: rgba(244, 237, 224, .7);
    font-size: var(--igp-text-sm);
    transition: color var(--igp-trans-fast);
}

.igp-footer__links a:hover {
    color: var(--igp-text-on-dark);
}

.igp-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: var(--sp-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    text-align: center;
}

@media (min-width: 768px) {
    .igp-footer__bar {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.igp-footer__bar p {
    font-size: var(--igp-text-xs);
    color: var(--igp-sage);
}

.igp-footer__social {
    display: flex;
    gap: var(--sp-3);
}

.igp-footer__social a {
    color: var(--igp-sage);
    font-size: 20px;
    transition: color var(--igp-trans-fast);
}

.igp-footer__social a:hover {
    color: var(--igp-text-on-dark);
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.igp-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--igp-forest);
    color: var(--igp-text-on-dark);
}

.igp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 42, 31, .95) 0%, rgba(22, 42, 31, .6) 60%, rgba(22, 42, 31, .4) 100%);
    z-index: 1;
}

.igp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ── Favourite Button ────────────────────────────────────────────────────── */
.igp-btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--igp-text-lt);
}

.igp-btn-favorite:hover {
    transform: scale(1.1);
    color: #ef4444;
}

.igp-btn-favorite.is-active {
    color: #ef4444;
}

.igp-btn-favorite.is-active .igp-fav-svg {
    fill: #ef4444;
}

.igp-btn-favorite.is-loading {
    opacity: 0.7;
    pointer-events: none;
    animation: igp-pulse 1.5s infinite;
}

@keyframes igp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.igp-btn-favorite--single {
    position: static;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--igp-cream);
    box-shadow: none;
}

.igp-btn-favorite--single:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.igp-btn-favorite--single.is-active {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.igp-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.igp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.igp-hero__eyebrow {
    font-size: var(--igp-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--igp-amber);
    margin-bottom: var(--sp-4);
}

.igp-hero__title {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-5xl);
    line-height: 1.1;
    font-weight: 600;
    color: var(--igp-text-on-dark);
    margin-bottom: var(--sp-5);
}

.igp-hero__title span {
    color: var(--igp-amber);
}

.igp-hero__desc {
    font-size: var(--igp-text-md);
    color: rgba(244, 237, 224, .85);
    margin-bottom: var(--sp-8);
    max-width: 520px;
}

.igp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.igp-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    margin-top: var(--sp-10);
    max-width: 400px;
}

.igp-hero-stat {
    text-align: center;
}

.igp-hero-stat__num {
    font-family: var(--igp-font-display);
    font-size: var(--igp-text-3xl);
    font-weight: 600;
    color: var(--igp-amber);
    line-height: 1;
}

.igp-hero-stat__label {
    font-size: var(--igp-text-xs);
    color: rgba(244, 237, 224, .7);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: var(--sp-1);
}

/* ── Hero search form ───────────────────────────────────────────────────── */
.igp-hero__search {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--igp-radius-xl);
    padding: var(--sp-3);
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    max-width: 620px;
    margin-top: var(--sp-8);
}

.igp-hero__search select,
.igp-hero__search input {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--igp-radius-md);
    padding: 12px 16px;
    color: #fff;
    font-size: var(--igp-text-sm);
}

.igp-hero__search input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.igp-hero__search option {
    background: var(--igp-forest);
    color: var(--igp-text-on-dark);
}

@media (max-width: 768px) {
    .igp-hero__search {
        flex-direction: column;
        border-radius: var(--igp-radius-lg);
        padding: var(--sp-4);
    }
    .igp-hero__search select,
    .igp-hero__search input {
        width: 100%;
        min-width: 100%;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTION HEADER
   ════════════════════════════════════════════════════════════════════════════ */
.igp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

.igp-section-header .igp-section-title {
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   FILTER BAR
   ════════════════════════════════════════════════════════════════════════════ */
.igp-filter-bar {
    background: #fff;
    border-radius: var(--igp-radius-lg);
    box-shadow: var(--igp-shadow-sm);
    padding: var(--sp-4) var(--sp-5);
    margin-bottom: var(--sp-8);
}

.igp-filter-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    align-items: center;
}

.igp-filter-select,
.igp-filter-input {
    padding: 10px 14px;
    border: 1.5px solid var(--igp-parchment);
    border-radius: var(--igp-radius-md);
    font-size: var(--igp-text-sm);
    color: var(--igp-text-primary);
    background: #fff;
    cursor: pointer;
    transition: border-color var(--igp-trans-fast);
}

.igp-filter-select:focus,
.igp-filter-input:focus {
    border-color: var(--igp-amber);
    outline: none;
}

.igp-filter-reset {
    margin-left: auto;
}

@media (max-width: 768px) {
    .igp-filter-bar {
        padding: var(--sp-3);
    }
    .igp-filter-bar__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .igp-filter-select,
    .igp-filter-input,
    .igp-filter-reset {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   BREADCRUMBS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-breadcrumbs {
    padding: var(--sp-4) 0;
    font-size: var(--igp-text-sm);
    color: var(--igp-text-muted);
}

.igp-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-2);
    list-style: none;
}

.igp-breadcrumbs__sep {
    color: var(--igp-parchment);
}

.igp-breadcrumbs__item a {
    color: var(--igp-text-secondary);
}

.igp-breadcrumbs__item a:hover {
    color: var(--igp-amber);
}

.igp-breadcrumbs__item span[aria-current] {
    color: var(--igp-text-muted);
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════════════════ */
.igp-pagination {
    margin-top: var(--sp-10);
    display: flex;
    justify-content: center;
}

.igp-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    list-style: none;
}

.igp-pagination li a,
.igp-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: var(--igp-radius-md);
    font-size: var(--igp-text-sm);
    font-weight: 600;
    border: 1.5px solid var(--igp-parchment);
    color: var(--igp-text-secondary);
    transition: all var(--igp-trans-fast);
}

.igp-pagination li a:hover {
    border-color: var(--igp-amber);
    color: var(--igp-amber);
    background: var(--igp-amber-pale);
}

.igp-pagination li span.current {
    background: var(--igp-amber);
    border-color: var(--igp-amber);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════════════════
   SPINNER
   ════════════════════════════════════════════════════════════════════════════ */
.igp-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--igp-parchment);
    border-top-color: var(--igp-amber);
    border-radius: 50%;
    animation: igp-spin 0.8s linear infinite;
    margin: var(--sp-8) auto;
}

@keyframes igp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   NO RESULTS
   ════════════════════════════════════════════════════════════════════════════ */
.igp-no-results {
    text-align: center;
    padding: var(--sp-12) var(--sp-8);
    color: var(--igp-text-muted);
    font-size: var(--igp-text-lg);
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
    .igp-hero__title {
        font-size: var(--igp-text-3xl);
    }

    .igp-hero__search {
        flex-direction: column;
    }

    .igp-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-3);
    }
}

@media (min-width: 640px) {
    /* sm */
}

@media (min-width: 768px) {
    /* md */
}

@media (min-width: 1024px) {
    /* lg */
}

@media (min-width: 1280px) {
    /* xl */
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER NAVIGATION — Remove bullet dots from WP nav menus
   ════════════════════════════════════════════════════════════════════════════ */

/* Nuclear reset for any ul/ol/li inside footer columns */
.igp-footer__links ul,
.igp-footer__links ol,
.igp-footer__links li,
.igp-footer__col ul,
.igp-footer__col ol,
.igp-footer__col li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0;
    margin: 0;
}

/* Footer link styling for both direct anchors and WP menu li > a */
.igp-footer__links a,
.igp-footer__col a,
.igp-footer__links li a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: var(--igp-text-sm);
    padding: 4px 0;
    text-decoration: none;
    transition: color var(--igp-trans-fast);
}

.igp-footer__links a:hover,
.igp-footer__col a:hover,
.igp-footer__links li a:hover {
    color: var(--igp-amber);
}

/* ════════════════════════════════════════════════════════════════════════════
   HEADER NAVIGATION — Clean separator dot
   ════════════════════════════════════════════════════════════════════════════ */

/* The "•" before nav links — if it's a pseudo-element, replace with clean dot */
.igp-nav ul,
.igp-nav ol,
.igp-nav li {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    margin: 0;
}

/* Remove the first separator dot that appears before the first nav item */
.igp-nav .igp-nav__link:first-of-type::before,
.igp-nav > *:first-child::before {
    display: none;
}

/* WP nav menu ul — when a menu IS assigned via WP admin */
.igp-nav > ul,
.igp-nav > ul > li {
    list-style: none !important;
    display: inline-flex;
    align-items: center;
}

/* Ensure nav menu is horizontal */
.igp-nav > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

/* Pricing table feature list — no bullets */
.igp-pricing-card ul,
.igp-pricing-card ol,
.igp-pricing-card li,
.igp-tier-card ul,
.igp-tier-card ol,
.igp-tier-card li {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════════════════════════════════════════════ */

/* Hero Section */
.igp-about-hero {
    background: linear-gradient(135deg, #162a1f 0%, #2d4a35 50%, #162a1f 100%);
    color: #f4ede0;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.igp-about-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.18;
}

.igp-about-hero__content {
    position: relative;
    z-index: 1;
}

.igp-about-badge {
    display: inline-block;
    background: rgba(200, 114, 42, 0.2);
    color: #f0a060;
    border: 1px solid rgba(200, 114, 42, 0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.igp-about-hero__title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0 0 24px;
    line-height: 1.1;
}

.igp-about-hero__desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* Mission Section */
.igp-about-mission {
    background: var(--igp-parchment);
}

.igp-about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.igp-about-mission__title {
    font-size: 2.8rem;
    color: var(--igp-forest);
    margin-bottom: 24px;
}

.igp-about-mission__text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--igp-text-secondary);
    margin-bottom: 20px;
}

.igp-about-mission__text p:last-child {
    margin-bottom: 0;
}

.igp-about-mission__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(22, 42, 31, 0.25);
}

.igp-about-mission__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.igp-about-mission__image:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.igp-about-stats {
    background: var(--igp-forest);
    color: var(--igp-cream);
    padding: 80px 0;
}

.igp-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.igp-about-stats__icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.igp-about-stats__number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--igp-font-display);
    color: var(--igp-amber);
    margin-bottom: 8px;
    line-height: 1;
}

.igp-about-stats__label {
    opacity: 0.8;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Values Section */
.igp-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.igp-about-values__card {
    padding: 40px;
    text-align: center;
}

.igp-about-values__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.igp-about-values__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--igp-forest);
    margin-bottom: 12px;
}

.igp-about-values__desc {
    font-size: 1rem;
    color: var(--igp-text-secondary);
    line-height: 1.7;
}

/* Team Section */
.igp-about-team {
    background: #f8f5f0;
}

.igp-about-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.igp-about-team__card {
    padding: 40px;
    text-align: center;
}

.igp-about-team__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.igp-about-team__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--igp-forest);
    margin-bottom: 6px;
}

.igp-about-team__role {
    font-size: 0.9rem;
    color: var(--igp-amber);
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.igp-about-team__bio {
    font-size: 1rem;
    color: var(--igp-text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.igp-about-cta {
    background: linear-gradient(135deg, var(--igp-amber), #e08020);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.igp-about-cta__title {
    font-family: var(--igp-font-display);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.igp-about-cta__desc {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.igp-btn--white {
    background: #fff;
    color: var(--igp-amber);
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 12px;
}

.igp-btn--white:hover {
    background: var(--igp-cream);
    color: #c8722a;
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .igp-about-mission__grid {
        gap: 40px;
    }
    
    .igp-about-mission__image img {
        height: 400px;
    }

    .igp-about-values__grid,
    .igp-about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .igp-about-hero {
        padding: 60px 0;
    }

    .igp-about-mission__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .igp-about-mission__image {
        order: -1;
    }

    .igp-about-mission__image img {
        height: 300px;
    }

    .igp-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .igp-about-stats__number {
        font-size: 2.5rem;
    }

    .igp-about-cta__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .igp-about-values__grid,
    .igp-about-team__grid {
        grid-template-columns: 1fr;
    }

    .igp-about-values__card,
    .igp-about-team__card {
        padding: 32px 24px;
    }

    .igp-about-stats__grid {
        gap: 24px;
    }

    .igp-about-stats__number {
        font-size: 2.2rem;
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   DASHBOARD — Premium UI/UX
   ════════════════════════════════════════════════════════════════════════════ */

.igp-dashboard-wrapper {
    background: var(--igp-cream-lt);
    min-height: 100vh;
    padding: var(--sp-10) 0;
}

/* 1. Greeting header */
.igp-dash-greet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-10);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid rgba(22, 42, 31, 0.05);
}

.igp-dash-greet__eyebrow {
    display: block;
    font-size: var(--igp-text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--igp-amber);
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
}

.igp-dash-greet__title {
    font-size: var(--igp-text-3xl);
    font-weight: 800;
    color: var(--igp-text-dark);
    margin-bottom: var(--sp-1);
    font-family: var(--igp-font-display);
}

.igp-dash-greet__desc {
    color: var(--igp-text-muted);
    font-size: var(--igp-text-md);
}

/* 2. Quick Stats */
.igp-dash-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-6);
    margin-bottom: var(--sp-10);
}

.igp-dash-stat-card {
    background: white;
    padding: var(--sp-6);
    border-radius: var(--igp-radius-lg);
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    box-shadow: var(--igp-shadow-sm);
    transition: all var(--igp-trans-base);
    border: 1px solid rgba(22, 42, 31, 0.03);
}

.igp-dash-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--igp-shadow-md);
}

.igp-dash-stat-card__icon {
    font-size: 1.5rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--igp-cream-lt);
    border-radius: var(--igp-radius-md);
    color: var(--igp-amber);
}

.igp-dash-stat-card__value {
    display: block;
    font-size: var(--igp-text-xl);
    font-weight: 800;
    color: var(--igp-text-dark);
    line-height: 1;
}

.igp-dash-stat-card__label {
    font-size: var(--igp-text-sm);
    color: var(--igp-text-muted);
    font-weight: 500;
}

/* 3. Dashboard Navigation */
.igp-dashboard-nav {
    position: sticky;
    top: 100px;
    z-index: var(--igp-z-sticky);
}

.igp-dash-nav-group {
    background: white;
    border-radius: var(--igp-radius-lg);
    padding: var(--sp-2);
    box-shadow: var(--igp-shadow-sm);
    margin-bottom: var(--sp-4);
}

.igp-dashboard-nav__link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--igp-radius-md);
    color: var(--igp-text-muted);
    font-weight: 600;
    transition: all var(--igp-trans-fast);
}

.igp-dashboard-nav__link:hover {
    background: var(--igp-cream-lt);
    color: var(--igp-amber);
}

.igp-dashboard-nav__link.igp-current {
    background: var(--igp-forest);
    color: white;
}

.igp-nav-count {
    margin-left: auto;
    font-size: 11px;
    background: rgba(22, 42, 31, 0.05);
    padding: 2px 8px;
    border-radius: var(--igp-radius-pill);
    font-family: var(--igp-font-mono);
}

.igp-current .igp-nav-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.igp-dash-nav-divider {
    height: 1px;
    background: rgba(22, 42, 31, 0.05);
    margin: var(--sp-2) 0;
}

.igp-dashboard-nav__link--danger:hover {
    background: #fff1f2;
    color: var(--igp-error);
}

/* 4. Tab Header */
.igp-dash-tab-header {
    margin-bottom: var(--sp-6);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.igp-dash-tab-title {
    font-size: var(--igp-text-xl);
    font-weight: 700;
    color: var(--igp-text-dark);
}

/* 5. Listing Cards */
.igp-dash-listing {
    background: white;
    border-radius: var(--igp-radius-lg);
    overflow: hidden;
    box-shadow: var(--igp-shadow-sm);
    margin-bottom: var(--sp-6);
    border: 1px solid rgba(22, 42, 31, 0.03);
    transition: all var(--igp-trans-base);
}

.igp-dash-listing:hover {
    transform: translateX(4px);
    box-shadow: var(--igp-shadow-md);
}

.igp-dash-listing__main {
    display: flex;
    padding: var(--sp-6);
    gap: var(--sp-6);
}

.igp-dash-listing__thumb {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--igp-radius-md);
    flex-shrink: 0;
    background: var(--igp-cream);
}

.igp-dash-listing__thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--igp-cream-lt);
}

.igp-dash-listing__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.igp-dash-listing__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--sp-2);
}

.igp-dash-listing__title {
    font-size: var(--igp-text-lg);
    font-weight: 700;
}

.igp-dash-listing__title a {
    color: var(--igp-text-dark);
    transition: color var(--igp-trans-fast);
}

.igp-dash-listing__title a:hover {
    color: var(--igp-amber);
}

.igp-dash-listing__badges {
    display: flex;
    gap: var(--sp-1);
    flex-wrap: wrap;
}

.igp-dash-listing__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
    font-size: var(--igp-text-sm);
    color: var(--igp-text-muted);
}

.igp-meta-item {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.igp-dash-listing__expiry.is-expiring {
    color: var(--igp-error);
    font-weight: 600;
}

.igp-dash-listing__quick-actions {
    margin-top: auto;
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.igp-dash-listing__actions {
    background: var(--igp-cream-lt);
    padding: var(--sp-4) var(--sp-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(22, 42, 31, 0.03);
}

/* 6. Dashboard Grid (Favourites) */
.igp-grid--cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

/* 7. Reviews and No Results */
.igp-dashboard-reviews {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.igp-review-card {
    background: white;
    padding: var(--sp-6);
    border-radius: var(--igp-radius-lg);
    box-shadow: var(--igp-shadow-sm);
    border: 1px solid rgba(22, 42, 31, 0.03);
}

.igp-no-results {
    padding: var(--sp-16) var(--sp-6);
    background: white;
    border-radius: var(--igp-radius-lg);
    border: 2px dashed rgba(22, 42, 31, 0.1);
}

.igp-no-results__icon {
    font-size: 3.5rem;
    margin-bottom: var(--sp-4);
    display: block;
}

/* 8. Account Settings */
.igp-account-card {
    padding: var(--sp-8);
}

.igp-account-profile {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
}

.igp-account-avatar img {
    border-radius: var(--igp-radius-pill);
    border: 4px solid white;
    box-shadow: var(--igp-shadow-sm);
}

.igp-account-name {
    font-size: var(--igp-text-xl);
    font-weight: 700;
    margin-bottom: var(--sp-1);
    font-family: var(--igp-font-display);
}

.igp-account-email {
    color: var(--igp-text-muted);
    font-size: var(--igp-text-md);
}

.igp-account-joined {
    display: block;
    font-size: var(--igp-text-xs);
    color: var(--igp-text-muted);
    margin-top: var(--sp-2);
}

.igp-account-actions {
    display: flex;
    gap: var(--sp-4);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(22, 42, 31, 0.05);
}

/* 9. Dashboard Responsiveness */
@media (max-width: 991px) {
    .igp-dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .igp-dashboard-nav {
        position: static;
        margin-bottom: var(--sp-8);
    }
    
    .igp-dash-nav-group {
        display: flex;
        overflow-x: auto;
        padding: var(--sp-2);
        gap: var(--sp-2);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .igp-dash-nav-group::-webkit-scrollbar {
        display: none;
    }
    
    .igp-dashboard-nav__link {
        white-space: nowrap;
        background: var(--igp-cream-lt);
    }

    .igp-dash-nav-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .igp-dash-greet {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--sp-6);
    }

    .igp-dash-listing__main {
        flex-direction: column;
        padding: var(--sp-4);
    }

    .igp-dash-listing__thumb {
        width: 100%;
        height: 180px;
    }

    .igp-dash-listing__actions {
        flex-direction: column;
        gap: var(--sp-4);
        padding: var(--sp-6);
    }

    .igp-grid--cols-2 {
        grid-template-columns: 1fr;
    }

    .igp-dash-tab-header {
        flex-direction: column;
        align-items: stretch;
        gap: var(--sp-4);
    }
}