/* ============================================================
   TINY HOME OPPORTUNITIES
   Standalone site CSS — tho- prefix throughout
   Design: Organic-modern editorial — warm, grounded, architectural
   Brand colors: #6B4FA0 purple / #4A9B6F green / #9B8EC4 light purple
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
    --purple:        #6B4FA0;
    --purple-light:  #9B8EC4;
    --purple-dark:   #4A3070;
    --green:         #4A9B6F;
    --green-dark:    #2D7A50;
    --green-light:   #A7D7BC;
    --cream:         #F5F0E8;
    --cream-dark:    #EDE7D9;
    --warm-white:    #FAFAF7;
    --bark:          #2C2419;
    --bark-mid:      #4A3F30;
    --bark-soft:     #4A3F30;
    --bark-muted:    #7A6B58;
    --stone:         #D4CEC4;
    --border:        rgba(44,36,25,0.1);
    --border-mid:    rgba(44,36,25,0.18);
    --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--bark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Utility ── */
.tho-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.tho-section { padding: 110px 0; }

.tho-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.4rem;
}

.tho-eyebrow::after {
    content: '';
    display: block;
    flex: 0 0 32px;
    height: 1px;
    background: var(--green);
}

/* ── NAVBAR ── */
.tho-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(26, 20, 10, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
    transition: var(--transition);
}

.tho-nav.scrolled {
    padding: 12px 0;
    background: rgba(26, 20, 10, 0.99);
    box-shadow: 0 4px 32px rgba(0,0,0,0.22);
}

.tho-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tho-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tho-logo__main {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.tho-logo__main span { color: var(--green-light); }

.tho-logo__sub {
    font-size: 0.58rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.tho-nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.tho-nav__links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    transition: color 0.3s;
}

.tho-nav__links a:hover { color: #ffffff; }

.tho-nav__cta {
    background: var(--purple) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition) !important;
}

.tho-nav__cta:hover {
    background: var(--purple-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(107,79,160,0.3) !important;
}

.tho-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.tho-nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #ffffff;
    transition: var(--transition);
}

/* ── HERO SLIDER ── */
.tho-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.tho-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.tho-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.tho-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.tho-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
}

.tho-slide.active .tho-slide__img {
    transform: scale(1.0);
}

.tho-slide.active .tho-slide__img {
    transform: scale(1.0);
}

.tho-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        155deg,
        rgba(20,14,8,0.82) 0%,
        rgba(44,28,80,0.68) 55%,
        rgba(20,14,8,0.60) 100%
    );
    z-index: 1;
}

.tho-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.tho-slide__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.tho-slide.active .tho-slide__eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.tho-slide__title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    max-width: 620px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.tho-slide__title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

.tho-slide.active .tho-slide__title {
    opacity: 1;
    transform: translateY(0);
}

.tho-slide__body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.95);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.tho-slide.active .tho-slide__body {
    opacity: 1;
    transform: translateY(0);
}

.tho-slide__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 1s, transform 0.7s ease 1s;
}

.tho-slide.active .tho-slide__actions {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.tho-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.tho-slider-dots {
    display: flex;
    gap: 8px;
}

.tho-dot {
    width: 28px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.tho-dot.active {
    background: var(--green-light);
    width: 48px;
}

.tho-slider-nav {
    display: flex;
    gap: 8px;
}

.tho-slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.tho-slider-btn:hover {
    background: var(--green);
    border-color: var(--green);
}

/* Slide counter */
.tho-slide-counter {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    z-index: 10;
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tho-slide-counter__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

/* ── Buttons ── */
.tho-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: #fff;
    padding: 15px 34px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: var(--transition);
}

.tho-btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74,155,111,0.35);
}

.tho-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
    transition: var(--transition);
}

.tho-btn-outline:hover {
    color: #fff;
    border-color: var(--green-light);
    gap: 14px;
}

.tho-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple);
    color: #fff;
    padding: 15px 34px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: var(--transition);
}

.tho-btn-dark:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(107,79,160,0.35);
}

/* ── INTRO / PHILOSOPHY ── */
.tho-intro {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.tho-intro::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,79,160,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tho-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.tho-intro__heading {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--bark);
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.tho-intro__heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--purple);
}

.tho-intro__body {
    font-size: 1.15rem;
    color: var(--bark-soft);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 1.4rem;
}

.tho-intro__body strong { color: var(--bark); font-weight: 600; }

.tho-intro__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2.5rem;
}

.tho-intro__stat {
    background: var(--cream-dark);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.tho-intro__stat:hover { background: #fff; }

.tho-intro__stat-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--purple);
    display: block;
    margin-bottom: 4px;
}

.tho-intro__stat-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bark-soft);
    font-weight: 500;
}

.tho-intro__image-wrap {
    position: relative;
}

.tho-intro__image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(44,36,25,0.14);
}

.tho-intro__image-badge {
    position: absolute;
    bottom: -28px;
    left: -28px;
    background: var(--green);
    color: #fff;
    padding: 24px 28px;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(74,155,111,0.3);
}

.tho-intro__image-badge strong {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.tho-intro__image-badge span {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    font-weight: 600;
}

/* ── PILLARS / WHAT WE OFFER ── */
.tho-pillars {
    background: var(--warm-white);
}

.tho-pillars__header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
}

.tho-pillars__heading {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.1;
}

.tho-pillars__heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--purple);
}

.tho-pillars__intro {
    font-size: 1.08rem;
    color: var(--bark-soft);
    line-height: 1.8;
    font-weight: 400;
}

/* Asymmetric pillar cards */
.tho-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tho-pillar {
    background: var(--cream);
    border-radius: 6px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tho-pillar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--purple-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tho-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(44,36,25,0.1);
    border-color: var(--border-mid);
    background: #fff;
}

.tho-pillar:hover::before { transform: scaleX(1); }

.tho-pillar__num {
    font-family: 'Libre Baskerville', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(44,36,25,0.05);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.tho-pillar__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    transition: var(--transition);
}

.tho-pillar:hover .tho-pillar__icon { transform: rotate(-6deg) scale(1.08); }

.tho-pillar h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 1rem;
}

.tho-pillar p {
    font-size: 1rem;
    color: var(--bark-soft);
    line-height: 1.78;
    font-weight: 400;
    margin-bottom: 1.4rem;
}

.tho-pillar__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tho-pillar__list li {
    font-size: 0.92rem;
    color: var(--bark-mid);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tho-pillar__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── PHILOSOPHY BANNER ── */
.tho-banner {
    background: var(--purple-dark);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.tho-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(74,155,111,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 90% 10%, rgba(107,79,160,0.2) 0%, transparent 50%);
}

.tho-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: center;
}

.tho-banner__mark {
    font-family: 'Libre Baskerville', serif;
    font-size: 9rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    flex-shrink: 0;
}

.tho-banner__text .tho-eyebrow { color: var(--green-light); }
.tho-banner__text .tho-eyebrow::after { background: var(--green-light); }

.tho-banner__quote {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.45;
    margin: 1.2rem 0;
}

.tho-banner__quote strong {
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.tho-banner__attr {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 600;
}

/* ── HOW IT WORKS ── */
.tho-how {
    background: var(--cream);
}

.tho-how__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.tho-how__heading {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-top: 1rem;
    margin-bottom: 1.8rem;
}

.tho-how__heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}

.tho-how__body {
    font-size: 1.08rem;
    color: var(--bark-soft);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.tho-how__image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 24px 64px rgba(44,36,25,0.12);
}

.tho-how__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--border-mid);
    margin-left: 20px;
}

.tho-step {
    padding: 0 0 40px 40px;
    position: relative;
    transition: var(--transition);
}

.tho-step:last-child { padding-bottom: 0; }

.tho-step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--bark-muted);
    border-radius: 50%;
    transition: var(--transition);
}

.tho-step:hover::before {
    background: var(--green);
    transform: scale(1.4);
}

.tho-step__num {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tho-step h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.5rem;
}

.tho-step p {
    font-size: 0.98rem;
    color: var(--bark-soft);
    line-height: 1.7;
    font-weight: 400;
}

/* ── WHO IT'S FOR ── */
.tho-for {
    background: var(--warm-white);
}

.tho-for__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.tho-for-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tho-for-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 16px 48px rgba(107,79,160,0.1);
    transform: translateY(-4px);
    background: #fff;
}

.tho-for-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(107,79,160,0.08);
    border: 1px solid rgba(107,79,160,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--purple);
    transition: var(--transition);
}

.tho-for-card:hover .tho-for-card__icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

.tho-for-card h4 {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bark);
}

.tho-for-card p {
    font-size: 0.98rem;
    color: var(--bark-soft);
    line-height: 1.7;
    font-weight: 400;
}

/* ── CTA ── */
.tho-cta {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.tho-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('10.jpg') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.tho-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.tho-cta__heading {
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.tho-cta__heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}

.tho-cta__body {
    font-size: 1.08rem;
    color: var(--bark-soft);
    line-height: 1.85;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.tho-cta__actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.tho-cta__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tho-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.tho-cta__contact-item:hover {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(74,155,111,0.1);
}

.tho-cta__contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(74,155,111,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green);
    flex-shrink: 0;
}

.tho-cta__contact-item h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bark-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tho-cta__contact-item p {
    font-size: 0.92rem;
    color: var(--bark);
    font-weight: 500;
    margin: 0;
}

/* ── FOOTER ── */
.tho-footer {
    background: var(--bark);
    color: #fff;
    padding: 64px 0 32px;
}

.tho-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}

.tho-footer__brand-logo .tho-logo__main { color: #fff; }

.tho-footer__brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-top: 1rem;
    font-weight: 300;
    max-width: 260px;
}

.tho-footer__col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.tho-footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tho-footer__col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
    font-weight: 300;
}

.tho-footer__col a:hover { color: var(--green-light); }

.tho-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tho-footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.22);
    font-weight: 300;
}

.tho-footer__socials {
    display: flex;
    gap: 12px;
}

.tho-footer__social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
}

.tho-footer__social:hover {
    border-color: var(--green);
    color: var(--green-light);
    background: rgba(74,155,111,0.1);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .tho-intro__grid,
    .tho-how__grid,
    .tho-cta__inner { grid-template-columns: 1fr; gap: 60px; }
    .tho-pillars__header { grid-template-columns: 1fr; gap: 24px; }
    .tho-pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .tho-banner__inner { grid-template-columns: 1fr; gap: 0; }
    .tho-banner__mark { display: none; }
    .tho-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .tho-for__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tho-container { padding: 0 24px; }
    .tho-section { padding: 80px 0; }
    .tho-nav__links { display: none; }
    .tho-nav__hamburger { display: flex; }
    .tho-pillars__grid { grid-template-columns: 1fr; }
    .tho-for__grid { grid-template-columns: 1fr; }
    .tho-footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .tho-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    .tho-intro__image-badge { bottom: -16px; left: 16px; }
    .tho-slide-counter { display: none; }
    .tho-intro__stats { grid-template-columns: 1fr; }
}

/* ============================================================
   UPDATES — Hero fix, Mission/Gallery/Lightbox sections
   ============================================================ */

/* ── Hero text position — stale override removed ── */

/* ── Contact highlight block in About section ── */
.tho-contact-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border-mid);
    border-left: 4px solid var(--green);
    border-radius: 6px;
    padding: 18px 22px;
    margin: 1.8rem 0;
}

.tho-contact-highlight__icon {
    width: 46px;
    height: 46px;
    background: rgba(74,155,111,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    flex-shrink: 0;
}

.tho-contact-highlight__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bark-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.tho-contact-highlight__email {
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s;
}

.tho-contact-highlight__email:hover { color: var(--green-dark); }

/* ── Section header shared ── */
.tho-section-header {
    margin-bottom: 64px;
}

.tho-section-sub {
    font-size: 1.08rem;
    color: var(--bark-soft);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 580px;
    font-weight: 400;
}

/* ── MISSION section ── */
.tho-mission {
    background: var(--cream);
}

.tho-mission__heading {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1rem;
}

.tho-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tho-mission-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tho-mission-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 16px 48px rgba(107,79,160,0.1);
    transform: translateY(-4px);
}

.tho-mission-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.tho-mission-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 4px;
}

.tho-mission-card p {
    font-size: 0.98rem;
    color: var(--bark-soft);
    line-height: 1.78;
    font-weight: 400;
}

.tho-mission-card p strong { color: var(--bark); }

.tho-mission-card__note {
    margin-top: 8px;
    background: rgba(107,79,160,0.06);
    border-left: 3px solid var(--purple);
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--bark-soft);
    line-height: 1.65;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tho-mission-card__note i {
    color: var(--purple);
    margin-top: 3px;
    flex-shrink: 0;
}

.tho-mission-card__note strong { color: var(--bark); }

/* Use cases pill grid */
.tho-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.tho-use-cases span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green-dark);
    background: rgba(74,155,111,0.1);
    border: 1px solid rgba(74,155,111,0.25);
    padding: 5px 12px;
    border-radius: 100px;
    transition: var(--transition);
}

.tho-mission-card:hover .tho-use-cases span {
    background: rgba(74,155,111,0.15);
    border-color: rgba(74,155,111,0.4);
}

/* Process checklist */
.tho-process-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.tho-process-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--bark-soft);
    line-height: 1.55;
    font-weight: 400;
}

.tho-process-list li i {
    color: var(--green);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── GALLERY section ── */
.tho-gallery {
    background: var(--warm-white);
}

.tho-gal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Main big image */
.tho-gal__main {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-dark);
    cursor: pointer;
}

.tho-gal__main-img {
    width: 100%;
    height: 580px;
    object-fit: contain;
    object-position: center;
    background: #f0ede6;
    display: block;
    transition: transform 0.5s ease;
}

.tho-gal__main:hover .tho-gal__main-img {
    transform: scale(1.0);
}

/* Expand button */
.tho-gal__expand {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    backdrop-filter: blur(6px);
}

.tho-gal__expand:hover {
    background: var(--purple);
    border-color: var(--purple);
}

/* Gallery prev/next on main image */
.tho-gal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    backdrop-filter: blur(6px);
}

.tho-gal__nav:hover { background: var(--green); border-color: var(--green); }
.tho-gal__nav--prev { left: 16px; }
.tho-gal__nav--next { right: 16px; }

/* Image counter badge */
.tho-gal__counter {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    z-index: 5;
}

/* Thumbnails strip */
.tho-gal__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tho-gal__thumbs::-webkit-scrollbar { height: 4px; }
.tho-gal__thumbs::-webkit-scrollbar-track { background: var(--cream-dark); border-radius: 2px; }
.tho-gal__thumbs::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 2px; }

.tho-gal__thumb {
    flex: 0 0 110px;
    height: 78px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    scroll-snap-align: start;
    opacity: 0.65;
}

.tho-gal__thumb:hover { opacity: 1; border-color: var(--purple-light); }
.tho-gal__thumb.active { border-color: var(--green); opacity: 1; }

.tho-gal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tho-gal__thumb:hover img { transform: scale(1.08); }

/* ── LIGHTBOX ── */
.tho-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.tho-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.tho-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,8,16,0.94);
    backdrop-filter: blur(8px);
}

.tho-lightbox__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 20px;
    gap: 14px;
}

.tho-lightbox__close {
    position: absolute;
    top: 0;
    right: 20px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.tho-lightbox__close:hover { background: #e53935; border-color: #e53935; }

.tho-lightbox__img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 65vh;
}

.tho-lightbox__img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    display: block;
}

.tho-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.tho-lightbox__nav:hover { background: var(--green); border-color: var(--green); }
.tho-lightbox__nav--prev { left: 0; }
.tho-lightbox__nav--next { right: 0; }

.tho-lightbox__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    max-width: 100%;
    scroll-snap-type: x mandatory;
}

.tho-lightbox__thumbs::-webkit-scrollbar { height: 3px; }
.tho-lightbox__thumbs::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.tho-lightbox__thumbs::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 2px; }

.tho-lightbox__thumb {
    flex: 0 0 80px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    opacity: 0.5;
    scroll-snap-align: start;
}

.tho-lightbox__thumb:hover { opacity: 0.85; border-color: rgba(255,255,255,0.3); }
.tho-lightbox__thumb.active { border-color: var(--green); opacity: 1; }

.tho-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tho-lightbox__counter {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    font-weight: 500;
}

/* ── Responsive updates ── */

@media (max-width: 1024px) {
    .tho-mission__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .tho-gal__main-img { height: 300px; }
    .tho-gal__thumb { flex: 0 0 80px; height: 58px; }
    .tho-lightbox__nav--prev { left: 4px; }
    .tho-lightbox__nav--next { right: 4px; }
    .tho-lightbox__thumb { flex: 0 0 60px; height: 44px; }
    .tho-slide__content { align-items: center; padding-top: 70px; padding-bottom: 40px; }
}
@media (max-width: 768px) {
    .tho-slide__content {
        align-items: center;
        padding-top: 70px;
        padding-bottom: 40px;
    }
}
/* ── Blog Cards ── */
#insights {
  padding: 60px 0;
}
 
.title-underline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.6rem auto 1.2rem;
}
.blog-card {
  background: var(--white) !important;
  border: 1px solid rgba(27,43,75,0.08) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(212,168,67,0.35) !important;
}

/* Gold top-border reveal on hover */
.blog-card {
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.blog-card:hover::before { transform: scaleX(1); }

/* Image zoom */
.blog-card-img {
  object-position: center top;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

/* Category badge on image */
.blog-card .badge.bg-primary {
  background: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 20px !important;
}

/* Card body */
.blog-card .card-body { padding: 1.5rem; }

/* Date */
.blog-card .text-muted.small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-gray) !important;
}

.blog-card .fa-calendar-alt { color: var(--gold-dim); }

/* Card title */
.blog-card .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  transition: color 0.25s;
}

.blog-card:hover .card-title { color: var(--gold-dim); }

/* Excerpt */
.blog-card .card-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-gray) !important;
  line-height: 1.75;
}

/* ── Read More ── */
.division-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s;
}

.division-link .fa-arrow-right { transition: transform 0.25s; }

.blog-card:hover .division-link             { color: var(--gold); }
.blog-card:hover .division-link .fa-arrow-right { transform: translateX(4px); }

/* ── Empty State ── */
.fa-newspaper { color: var(--text-gray) !important; }

/* ── Pagination ── */
.pagination { gap: 5px; flex-wrap: wrap; }

.pagination .page-item .page-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.12);
  border-radius: var(--radius) !important;
  padding: 0.55rem 1rem;
  transition: var(--transition);
}

.pagination .page-item .page-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pagination .page-item.active .page-link {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(212,168,67,0.35);
}

.pagination .page-item.disabled .page-link {
  background: var(--bg-light);
  color: var(--text-gray);
  border-color: rgba(27,43,75,0.08);
}
.fit-inner-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
 
.fit-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(22,34,49,0.88) 0%, rgba(31,45,61,0.65) 60%, rgba(31,45,61,0.35) 100%);
}
 
.fit-inner-hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--energy);
  z-index: 2;
}
 
.fit-inner-hero .container { position: relative; z-index: 1; }
.mmg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.mmg-hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.88);
    max-width: 650px;
    margin: 0 auto 0.5rem;
    line-height: 1.7;
}
.mmg-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mmg-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.mmg-breadcrumb a:hover { color: #fff; }

.mmg-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}
.blog-card {
    border-radius: 14px !important;
    transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
}
.blog-card-img {
    transition: transform .4s;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}
/* â”€â”€ Blog Sidebar â”€â”€ */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sidebar-widget-divider {
    height: 3px;
    width: 40px;
    background: var(--primary-color, #0d6efd);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

/* Sidebar Post Item */
.sidebar-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-post:last-of-type {
    border-bottom: none;
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 75px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post:hover .sidebar-post-img img {
    transform: scale(1.05);
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color, #0d6efd);
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.3s;
}

.sidebar-post-title:hover { color: var(--primary-color, #0d6efd); }

.sidebar-post-date {
    font-size: 0.75rem;
    color: #999;
    margin: 0.3rem 0 0;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories li:last-child { border-bottom: none; }

.sidebar-categories li a {
    display: block;
    padding: 0.6rem 0;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-categories li a:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

/* Blog Content Styling */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-content p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: #444;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
/* ── Responsive ── */
@media (max-width: 767px) {
  .fit-inner-hero   { height: 300px; }
  .mmg-hero-title   { font-size: 2rem; }
  .mmg-hero-subtitle{ font-size: 0.95rem; }
}