/* ============================================
   Evergrow Advisory LLC - Stylesheet
   Brand Colors:
   - Navy:        #1B365D
   - Steel Blue:  #7BA7BC
   - Off White:   #F7F9FB
   - Charcoal:    #2C3E50
   ============================================ */

:root {
    --navy: #1B365D;
    --navy-dark: #122845;
    --steel: #7BA7BC;
    --steel-light: #A9C5D3;
    --off-white: #F7F9FB;
    --light-gray: #E8EDF1;
    --charcoal: #2C3E50;
    --text: #3A4858;
    --text-muted: #6B7A8A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(27, 54, 93, 0.06);
    --shadow-md: 0 6px 20px rgba(27, 54, 93, 0.10);
    --shadow-lg: 0 16px 40px rgba(27, 54, 93, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text);
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--steel); }

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

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

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-header .eyebrow {
    color: var(--steel);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-light {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Header / Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--light-gray);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand img {
    width: auto;
}

.nav-brand .logo-square {
    height: 90px;
    display: none;
}

.nav-brand .logo-horizontal {
    height: 64px;
    display: block;
}

.nav-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--steel);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--navy);
}

.nav-menu .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.nav-menu .btn::after { display: none; }

/* Keep nav CTA button text visible — override the generic nav link color */
.nav-menu .btn-primary {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.nav-menu .btn-primary:hover {
    color: var(--white);
    background: var(--steel);
    border-color: var(--steel);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 167, 188, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    color: var(--steel-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: var(--steel-light);
}

.hero p {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(123, 167, 188, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--steel-light);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.breadcrumb a { color: var(--steel-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== Stats Strip ===== */
.stats-strip {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--steel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--steel);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--navy);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--white);
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Why Choose Us ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 24px;
    height: 24px;
    background: var(--steel);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.feature-list strong {
    color: var(--navy);
    font-weight: 600;
    display: block;
    margin-bottom: 0.125rem;
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.image-panel {
    background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
    border-radius: 12px;
    padding: 3rem;
    color: var(--white);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.image-panel-content { position: relative; z-index: 1; }

.image-panel h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.image-panel p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===== Service Detail (services page) ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--light-gray);
    align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-label {
    color: var(--steel);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.service-detail-body ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detail-body ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text);
}

.service-detail-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--steel);
    font-weight: 700;
}

/* ===== Process ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--white);
    border: 2px solid var(--steel);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h4 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== CTA Band ===== */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123, 167, 188, 0.15) 0%, transparent 60%);
}

.cta-band-content { position: relative; }

.cta-band h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.125rem;
}

.contact-item-content h4 {
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-item-content a:hover { color: var(--navy); }

.contact-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--steel);
    box-shadow: 0 0 0 3px rgba(123, 167, 188, 0.15);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ===== About page ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    text-align: center;
}

.value-card .service-icon {
    margin: 0 auto 1.25rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Insights / Article ===== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--steel);
}

.insight-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
    position: relative;
    overflow: hidden;
}

.insight-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.insight-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 54, 93, 0.15) 0%, rgba(18, 40, 69, 0.45) 100%);
    pointer-events: none;
    z-index: 1;
}

.insight-card-image .tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    z-index: 2;
}

.insight-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.insight-card h3 a { color: var(--navy); }
.insight-card h3 a:hover { color: var(--steel); }

.insight-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex: 1;
}

.insight-card-more {
    color: var(--steel);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.insight-card-more:hover { color: var(--navy); }

.featured-insight {
    background: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.featured-insight-image {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.featured-insight-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.featured-insight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.45) 0%, rgba(18, 40, 69, 0.2) 70%);
    pointer-events: none;
    z-index: 1;
}

.featured-insight-image .tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--steel);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 2;
}

.featured-insight-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-insight-body .insight-card-meta {
    color: var(--steel);
}

.featured-insight-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.featured-insight-body h2 a { color: var(--navy); }
.featured-insight-body h2 a:hover { color: var(--steel); }

.newsletter-panel {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.newsletter-panel h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.newsletter-panel p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9375rem;
}

.newsletter-form input:focus { outline: 2px solid var(--steel); }

/* Article detail */
.article-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 40, 69, 0.82) 0%, rgba(27, 54, 93, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

.article-hero-content { z-index: 2; }

.article-hero-content {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.article-hero .breadcrumb { justify-content: center; }

.article-hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}

.article-meta {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}

.article-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-size: 1.375rem;
    margin: 2rem 0 0.75rem;
}

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

.article-body ul, .article-body ol {
    margin: 0 0 1.25rem 1.5rem;
}

.article-body ul li, .article-body ol li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    border-left: 4px solid var(--steel);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.75rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    font-style: italic;
}

.article-body strong { color: var(--navy); }

.article-tldr {
    background: var(--off-white);
    border-left: 4px solid var(--steel);
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
    border-radius: 0 6px 6px 0;
}

.article-tldr strong {
    display: block;
    color: var(--navy);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.article-tldr p { margin-bottom: 0; color: var(--text); }

@media (max-width: 900px) {
    .featured-insight { grid-template-columns: 1fr; }
    .featured-insight-image { min-height: 220px; }
    .featured-insight-body { padding: 2rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.footer-brand-llc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--steel-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    max-width: 320px;
}

.footer-col h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.625rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--steel-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .two-col,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .section { padding: 3.5rem 0; }
    .hero { padding: 4rem 0 3.5rem; }

    .nav-brand .logo-horizontal { height: 48px; }

    .nav-toggle { display: block; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
        border-bottom: 1px solid var(--light-gray);
        padding: 1rem 1.5rem;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.open { display: flex; }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu li:last-child { border-bottom: none; padding-top: 0.5rem; }

    .nav-menu a {
        display: block;
        padding: 0.875rem 0;
    }

    .nav-menu .btn { width: 100%; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .hero-cta .btn { width: 100%; }

    .contact-form { padding: 1.5rem; }
}
