/* ============================================
   JOHN HITCHENS - FREELANCE WEB DESIGNER
   v3.0 — Editorial Portfolio Design
   ============================================ */

:root {
    --primary: #2D4739;
    --primary-light: #3A5C4A;
    --primary-dark: #1E3228;
    --accent: #C17F59;
    --accent-hover: #A86D4A;
    --accent-light: rgba(193, 127, 89, 0.1);
    --light: #FAF8F5;
    --white: #FFFFFF;
    --cream: #F5F1EC;
    --text: #2E2E2E;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --border: #E8E2D9;
    --shadow: 0 2px 8px rgba(45, 71, 57, 0.06);
    --shadow-lg: 0 12px 32px rgba(45, 71, 57, 0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.25s ease;
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Hide Astra chrome */
.ast-header-break-point .main-header-bar, .site-header, #ast-desktop-header,
.ast-primary-header-bar, .ast-above-header-bar, .ast-below-header-bar,
.site-footer { display: none !important; }
.entry-header { display: none !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.ast-separate-container #primary { padding: 0 !important; margin: 0 !important; }
#page > .site-content { max-width: 100% !important; padding: 0 !important; }
.site-content .ast-container,
#content .ast-container,
.ast-container { max-width: 100% !important; padding: 0 !important; display: block !important; }

/* ======== NAVIGATION ======== */
.jh-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.jh-nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.jh-logo {
    font-family: 'DM Serif Display', serif; font-size: 1.3rem;
    color: var(--primary); text-decoration: none;
}
.jh-logo span { color: var(--accent); }
.jh-nav-links {
    display: flex; gap: 24px; list-style: none; align-items: center;
}
.jh-nav-links a {
    font-size: 0.88rem; font-weight: 500; color: var(--text-light);
    transition: var(--transition);
}
.jh-nav-links a:hover { color: var(--primary); }
.jh-nav-cta {
    background: var(--primary) !important; color: var(--white) !important;
    padding: 8px 20px !important; border-radius: var(--radius-sm) !important;
    font-weight: 500 !important;
}
.jh-nav-cta:hover { background: var(--primary-light) !important; }

.jh-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.jh-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.jh-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.jh-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.jh-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
    .jh-mobile-toggle { display: block; }
    .jh-nav-links {
        display: none; position: absolute; top: 68px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 20px 32px; gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .jh-nav-links.active { display: flex; }
}

/* ======== BUTTONS ======== */
.jh-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    text-decoration: none; transition: var(--transition); cursor: pointer; border: none;
}
.jh-btn-primary { background: var(--primary); color: var(--white); }
.jh-btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); color: var(--white); }
.jh-btn-accent { background: var(--accent); color: var(--white); }
.jh-btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); color: var(--white); }
.jh-btn-outline { background: var(--white); color: var(--primary); border: 1.5px solid var(--border); }
.jh-btn-outline:hover { border-color: var(--primary); }
.jh-btn-white { background: var(--white); color: var(--primary); }
.jh-btn-white:hover { background: var(--cream); }
.jh-btn-ghost { background: none; color: var(--accent); padding: 0; font-weight: 600; }
.jh-btn-ghost:hover { color: var(--accent-hover); }

/* ======== HERO — Full-width centered text ======== */
.jh-hero-editorial {
    min-height: 90vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 32px 80px; background: var(--light);
}
.jh-hero-editorial-inner { max-width: 760px; }
.jh-hero-editorial h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem); margin-bottom: 24px;
    letter-spacing: -0.03em; line-height: 1.1;
}
.jh-hero-editorial h1 .highlight { color: var(--accent); }
.jh-hero-editorial .jh-hero-sub {
    font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px;
    line-height: 1.75; max-width: 540px; margin-left: auto; margin-right: auto;
}
.jh-hero-editorial .jh-hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.jh-hero-editorial .jh-label {
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent); margin-bottom: 20px; display: block;
}

@media (max-width: 600px) {
    .jh-hero-editorial { min-height: auto; padding: 110px 24px 60px; }
    .jh-hero-editorial h1 { font-size: 2.2rem; }
}

/* ======== MARQUEE ======== */
.jh-marquee {
    overflow: hidden; background: var(--primary); padding: 14px 0;
    white-space: nowrap; position: relative;
}
.jh-marquee-track {
    display: inline-flex; animation: marqueeScroll 30s linear infinite;
}
.jh-marquee-item {
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.7); padding: 0 24px; flex-shrink: 0;
    display: flex; align-items: center; gap: 24px;
}
.jh-marquee-item::after {
    content: ''; width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======== INTRO / ABOUT STRIP ======== */
.jh-intro {
    max-width: 1100px; margin: 0 auto; padding: 100px 32px;
    display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start;
}
.jh-intro-photo img {
    width: 100%; border-radius: 0; box-shadow: none; background: var(--white);
}
.jh-intro-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.jh-intro-text p { font-size: 1.02rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }

@media (max-width: 768px) {
    .jh-intro { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .jh-intro-photo img { width: 100%; }
}

/* ======== PORTFOLIO — Stacked case studies ======== */
.jh-cases { padding: 80px 0; }
.jh-cases-header {
    max-width: 1100px; margin: 0 auto 48px; padding: 0 32px;
}
.jh-cases-header h2 { font-size: 2.4rem; margin-bottom: 10px; }
.jh-cases-header p { color: var(--text-light); font-size: 1.02rem; }

.jh-case {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 340px;
    border-top: 1px solid var(--border); transition: var(--transition); text-decoration: none;
}
.jh-case:last-child { border-bottom: 1px solid var(--border); }
.jh-case:hover { background: var(--light); }
.jh-case-color {
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff;
    padding: 40px; text-align: center; line-height: 1.2;
}
.jh-case-info {
    padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.jh-case-num {
    font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
    color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px;
}
.jh-case-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
.jh-case-info p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 18px; line-height: 1.7; }
.jh-case-link {
    font-weight: 600; font-size: 0.9rem; color: var(--accent);
    display: inline-flex; align-items: center; gap: 6px;
}
.jh-case:nth-child(even) { direction: rtl; }
.jh-case:nth-child(even) > * { direction: ltr; }

@media (max-width: 768px) {
    .jh-case, .jh-case:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .jh-case-color { min-height: 200px; font-size: 1.5rem; }
    .jh-case-info { padding: 32px 24px; }
}

/* ======== NUMBERS ======== */
.jh-numbers {
    background: var(--primary); padding: 72px 32px;
}
.jh-numbers-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center;
}
.jh-stat-num {
    font-family: 'DM Serif Display', serif; font-size: 3.2rem; color: var(--white);
    margin-bottom: 6px; line-height: 1;
}
.jh-stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

@media (max-width: 600px) {
    .jh-numbers-inner { grid-template-columns: 1fr; gap: 28px; }
    .jh-stat-num { font-size: 2.4rem; }
}

/* ======== INCLUDED — Checklist style ======== */
.jh-included {
    max-width: 1100px; margin: 0 auto; padding: 100px 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.jh-included-left h2 { font-size: 2.2rem; margin-bottom: 16px; }
.jh-included-left p { color: var(--text-light); font-size: 1.02rem; line-height: 1.75; margin-bottom: 28px; }
.jh-checklist {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.jh-checklist li {
    font-size: 0.95rem; padding: 10px 0; display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--border);
}
.jh-checklist li::before {
    content: ''; width: 20px; height: 20px; border-radius: 50%;
    background: var(--accent-light); border: 1.5px solid var(--accent);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C17F59' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center;
}

@media (max-width: 768px) {
    .jh-included { grid-template-columns: 1fr; gap: 32px; }
    .jh-checklist { grid-template-columns: 1fr; }
}

/* ======== TESTIMONIAL — Single large ======== */
.jh-testimonial-big {
    background: var(--light); padding: 100px 32px; text-align: center;
}
.jh-testimonial-big-inner { max-width: 700px; margin: 0 auto; }
.jh-testimonial-big .jh-quote-mark {
    font-family: 'DM Serif Display', serif; font-size: 5rem; color: var(--accent);
    line-height: 0.5; margin-bottom: 20px; display: block;
}
.jh-testimonial-big blockquote {
    font-family: 'DM Serif Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--primary); line-height: 1.6; margin-bottom: 24px; font-style: normal;
}
.jh-testimonial-big cite {
    font-family: 'DM Sans', sans-serif; font-style: normal;
    font-size: 0.9rem; color: var(--text-muted); font-weight: 500;
}

/* ======== PROCESS — Horizontal ======== */
.jh-process-section {
    max-width: 1100px; margin: 0 auto; padding: 100px 32px;
}
.jh-process-section h2 { font-size: 2.2rem; text-align: center; margin-bottom: 56px; }
.jh-timeline {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative;
}
.jh-timeline::before {
    content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
    height: 2px; background: var(--border);
}
.jh-tl-step { text-align: center; position: relative; padding: 0 16px; }
.jh-tl-dot {
    width: 48px; height: 48px; border-radius: 50%; background: var(--white);
    border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; position: relative; z-index: 1;
    font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--accent);
}
.jh-tl-step h3 {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    margin-bottom: 6px;
}
.jh-tl-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 600px) {
    .jh-timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
    .jh-timeline::before { display: none; }
}

/* ======== FAQ — Two column ======== */
.jh-faq-section {
    background: var(--light); padding: 100px 32px;
}
.jh-faq-inner { max-width: 1100px; margin: 0 auto; }
.jh-faq-inner > h2 { font-size: 2.2rem; margin-bottom: 48px; }
.jh-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.jh-faq-card {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--border);
}
.jh-faq-card h3 {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    color: var(--primary); margin-bottom: 10px;
}
.jh-faq-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

@media (max-width: 768px) { .jh-faq-grid { grid-template-columns: 1fr; } }

/* ======== CTA ======== */
.jh-cta {
    max-width: 1100px; margin: 0 auto; padding: 80px 32px;
}
.jh-cta-box {
    background: var(--primary); border-radius: var(--radius); padding: 64px 48px;
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.jh-cta-box h2 { color: var(--white); font-size: 2rem; margin-bottom: 10px; }
.jh-cta-box p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.jh-cta-box .jh-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .jh-cta-box { grid-template-columns: 1fr; text-align: center; padding: 48px 28px; }
    .jh-cta-box .jh-cta-buttons { justify-content: center; }
}

/* ======== FOOTER ======== */
.jh-footer {
    border-top: 1px solid var(--border); padding: 48px 32px 28px;
}
.jh-footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: start; flex-wrap: wrap; gap: 32px;
}
.jh-footer-brand p { font-size: 0.88rem; color: var(--text-light); margin-top: 8px; max-width: 300px; }
.jh-footer-links { display: flex; gap: 48px; }
.jh-footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; color: var(--primary); }
.jh-footer-col ul { list-style: none; }
.jh-footer-col li { margin-bottom: 6px; }
.jh-footer-col a { font-size: 0.88rem; color: var(--text-light); transition: var(--transition); }
.jh-footer-col a:hover { color: var(--accent); }
.jh-footer-bottom {
    max-width: 1100px; margin: 32px auto 0; padding-top: 20px;
    border-top: 1px solid var(--border); text-align: center;
    font-size: 0.8rem; color: var(--text-muted);
}

@media (max-width: 600px) {
    .jh-footer-inner { flex-direction: column; }
    .jh-footer-links { flex-direction: column; gap: 24px; }
}

/* ======== PAGE HEROES (inner pages) ======== */
.jh-page-hero-v3 {
    padding: 140px 32px 60px; max-width: 760px; margin: 0 auto;
}
.jh-page-hero-v3 .jh-label {
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent); margin-bottom: 14px; display: block;
}
.jh-page-hero-v3 h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; letter-spacing: -0.02em;
}
.jh-page-hero-v3 p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; max-width: 580px; }

/* ======== ABOUT PAGE ======== */
.jh-about-editorial {
    max-width: 760px; margin: 0 auto; padding: 60px 32px 100px;
}
.jh-about-photo {
    float: left; margin: 0 32px 20px 0; width: 280px;
}
.jh-about-photo img { border-radius: 0; box-shadow: none; background: var(--white); }
.jh-about-editorial h2 { font-size: 1.8rem; margin: 32px 0 16px; clear: both; }
.jh-about-editorial h2:first-of-type { clear: none; }
.jh-about-editorial p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.jh-about-editorial .jh-label {
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent); margin-bottom: 6px; display: block; margin-top: 40px;
}

@media (max-width: 600px) {
    .jh-about-photo { float: none; margin: 0 auto 24px; width: 100%; }
}

/* ======== PRICING — Services page ======== */
.jh-pricing-v3 {
    max-width: 1100px; margin: 0 auto; padding: 60px 32px 100px;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start;
}
.jh-price-main {
    background: var(--light); border-radius: var(--radius); padding: 40px;
    border: 2px solid var(--primary);
}
.jh-price-main h3 { font-size: 1.6rem; margin-bottom: 6px; }
.jh-price-main .jh-price-tag {
    font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--primary); margin-bottom: 24px;
}
.jh-price-main .jh-price-tag span { font-size: 1rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.jh-price-side {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    border: 1px solid var(--border);
}
.jh-price-side h3 { font-size: 1.3rem; margin-bottom: 6px; }
.jh-price-side .jh-price-tag {
    font-family: 'DM Serif Display', serif; font-size: 2.2rem; color: var(--primary); margin-bottom: 20px;
}
.jh-price-side .jh-price-tag span { font-size: 0.9rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.jh-price-list { list-style: none; margin: 0 0 24px; }
.jh-price-list li {
    padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
    display: flex; align-items: center; gap: 8px;
}
.jh-price-list li::before { content: '\2713'; color: var(--primary); font-weight: 700; font-size: 0.85rem; }
.jh-secure-note {
    display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); margin-top: 16px;
}

@media (max-width: 768px) {
    .jh-pricing-v3 { grid-template-columns: 1fr; }
}

/* ======== CONTACT PAGE ======== */
.jh-contact-v3 {
    max-width: 1100px; margin: 0 auto; padding: 60px 32px 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.jh-form input, .jh-form textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; margin-bottom: 14px; transition: var(--transition);
    background: var(--white); color: var(--text);
}
.jh-form input:focus, .jh-form textarea:focus {
    border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(45,71,57,0.08);
}
.jh-form textarea { min-height: 140px; resize: vertical; }
.jh-contact-side h3 { font-size: 1.3rem; margin-bottom: 16px; }
.jh-contact-side p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.jh-contact-side a { color: var(--accent); font-weight: 500; }
.jh-contact-side a:hover { text-decoration: underline; }
.jh-contact-side .jh-btn-accent { color: var(--white) !important; }
.jh-contact-side .jh-btn-accent:hover { color: var(--white) !important; text-decoration: none; }

.jh-quick-buy {
    margin-top: 28px; padding: 24px; background: var(--accent-light); border-radius: var(--radius);
    border: 1px solid var(--border);
}
.jh-quick-buy h4 {
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
    color: var(--primary); margin-bottom: 8px;
}
.jh-quick-buy p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.6; }

/* CF7 form styling */
.jh-form .wpcf7-form-control-wrap { display: block; margin-bottom: 14px; }
.jh-form .wpcf7-form-control-wrap input,
.jh-form .wpcf7-form-control-wrap textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; transition: var(--transition);
    background: var(--white); color: var(--text);
}
.jh-form .wpcf7-form-control-wrap input:focus,
.jh-form .wpcf7-form-control-wrap textarea:focus {
    border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(45,71,57,0.08);
}
.jh-form .wpcf7-form-control-wrap textarea { min-height: 140px; resize: vertical; }
.jh-form .wpcf7-submit {
    display: block; width: 100%; padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
    background: var(--primary); color: var(--white); border: none; cursor: pointer;
    transition: var(--transition);
}
.jh-form .wpcf7-submit:hover { background: var(--primary-light); transform: translateY(-1px); }
.jh-form .wpcf7-response-output { margin: 16px 0 0; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; }
.jh-form .wpcf7-not-valid-tip { font-size: 0.82rem; color: #c0392b; margin-top: 4px; }
.jh-form .wpcf7 .wpcf7-spinner { display: none; }

@media (max-width: 768px) { .jh-contact-v3 { grid-template-columns: 1fr; } }

/* ======== PAYMENT SUCCESS ======== */
.jh-payment-success {
    background: var(--primary); color: var(--white); text-align: center; padding: 18px 32px; font-size: 0.95rem;
}

/* ======== PORTFOLIO PAGE case list ======== */
.jh-portfolio-intro {
    max-width: 760px; margin: 0 auto; padding: 0 32px 60px;
}
.jh-portfolio-intro p { font-size: 1.02rem; color: var(--text-light); line-height: 1.75; }

/* ======== COMPARISON — Before & After ======== */
.jh-comparison {
    background: var(--light);
    padding: 100px 32px;
}
.jh-comparison-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.jh-comparison-header {
    text-align: center;
    margin-bottom: 56px;
}
.jh-comparison-header .jh-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 14px;
    display: block;
}
.jh-comparison-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}
.jh-comparison-header p {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

.jh-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.jh-comparison-col {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    border: 1px solid var(--border);
}

.jh-comparison-without {
    border-top: 3px solid var(--text-muted);
}

.jh-comparison-with {
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.jh-comparison-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.jh-comparison-without .jh-comparison-label {
    color: var(--text-muted);
}

.jh-comparison-with .jh-comparison-label {
    color: var(--primary);
}

.jh-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jh-comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.jh-comparison-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.jh-comparison-list li:first-child {
    padding-top: 0;
}

.jh-comparison-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.jh-comparison-x {
    background: #fdf2f2;
    color: #c0392b;
}

.jh-comparison-tick {
    background: rgba(45, 71, 57, 0.08);
    color: var(--primary);
}

.jh-comparison-list li strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.jh-comparison-list li span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .jh-comparison {
        padding: 72px 24px;
    }
    .jh-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .jh-comparison-col {
        padding: 28px 24px;
    }
    .jh-comparison-header {
        margin-bottom: 40px;
    }
}
