/* ==========================================================================
   HILLMONT GROUP - UNIFIED STYLES WITH TERRACOTTA ACCENTS
   Works for Homepage, How We Work, Contact pages, and Executive Brief
   ========================================================================== */

.entry-content {
    display: contents !important;
}

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

:root {
    --primary-brand: #581c87;
    --brand-dark: #4c1573;
    --brand-light: #6d28d9;
    --accent-terracotta: #c17a5c;
    --accent-terracotta-light: rgba(193, 122, 92, 0.1);
    --background-warmest: #fdfcfa;
    --background-warm: #f9f7f4;
    --background-beige: #f4f1ed;
    --background-beige-dark: #e0d5c8;
    --background-card: #ffffff;
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --border-subtle: rgba(232, 228, 223, 0.6);
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--background-warmest);
    position: relative;
}

/* Vertical line down left side */
body::before {
    content: '';
    position: fixed;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--primary-brand) 8%,
        var(--primary-brand) 92%,
        transparent 100%
    );
    opacity: 0.2;
    z-index: 0;
}

/* ==========================================================================
   HERO SECTION (Homepage only)
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: var(--background-warmest);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-beige-dark) 0%, rgba(224, 213, 200, 0.3) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
    animation: fadeInClip 1.2s ease-out 0.3s forwards;
}

@keyframes fadeInClip {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-highlight {
    color: var(--primary-brand);
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-brand);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 2px solid var(--primary-brand);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.cta-button:hover {
    background: var(--primary-brand);
    color: white;
}

/* ==========================================================================
   INDUSTRY FOCUS ANIMATIONS (How We Work page - first section)
   ========================================================================== */

.featured-insight:first-of-type .section-eyebrow {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.featured-insight:first-of-type h2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.featured-insight:first-of-type .insight-text p:first-of-type {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.featured-insight:first-of-type .insight-text p:nth-of-type(2) {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.featured-insight:first-of-type .insight-text > div {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.featured-insight:first-of-type .insight-visual {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* ==========================================================================
   STATS SECTION - TERRACOTTA RIBBONS & NUMBERS
   ========================================================================== */

.stats {
    padding: 5rem 0;
    background: var(--background-beige);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-around;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    flex: 1;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 140%;
    height: 120px;
    background: var(--accent-terracotta);
    opacity: 0.08;
    z-index: 0;
    border-radius: 4px;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-terracotta);
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   SHARED SECTION STYLES
   ========================================================================== */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-brand);
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.section-eyebrow::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-brand), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ==========================================================================
   DIFFERENTIATION / PROCESS SECTIONS
   ========================================================================== */

.differentiation {
    padding: 8rem 0;
    position: relative;
    background: var(--background-warm);
    overflow: hidden;
}

.differentiation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-beige-dark) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
    opacity: 0.4;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 25%;
    right: -25px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.pillar-card:nth-child(even)::after {
    right: auto;
    left: -25px;
}

.pillar-card:hover::after {
    transform: scale(1.3);
    opacity: 0.8;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-terracotta);
    transition: height 0.4s ease;
    z-index: 1;
}

.pillar-card:hover::before {
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-terracotta);
    box-shadow: 0 10px 30px rgba(193, 122, 92, 0.15);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1rem;
    display: block;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==========================================================================
   FEATURED INSIGHT / INDUSTRY FOCUS SECTION
   ========================================================================== */

.featured-insight {
    padding: 8rem 0;
    background: var(--background-warmest);
    position: relative;
    overflow: hidden;
}

.featured-insight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 213, 200, 0.3) 0%, var(--background-beige-dark) 100%);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.5;
}

.insight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.insight-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.insight-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.insight-visual {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.insight-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.insight-quote {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==========================================================================
   EXPERTISE SECTION (Homepage only)
   ========================================================================== */

.expertise {
    padding: 8rem 0;
    background: var(--background-warm);
    position: relative;
    overflow: hidden;
}

.expertise::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--background-beige-dark) 100%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.4;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.expertise-card:hover {
    border-color: var(--accent-terracotta);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(193, 122, 92, 0.15);
}

.expertise-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-terracotta);
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.7;
}

.expertise-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.expertise-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION - TERRACOTTA STARS
   ========================================================================== */

.testimonials {
    padding: 8rem 0;
    background: var(--background-warmest);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-beige-dark) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
    opacity: 0.4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--background-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--accent-terracotta);
    opacity: 0.08;
    line-height: 1;
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(193, 122, 92, 0.12);
    border-color: var(--accent-terracotta);
}

.testimonial-stars {
    color: var(--accent-terracotta);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   ABOUT SECTION (Homepage only)
   ========================================================================== */

.about-brett {
    padding: 6rem 0;
    background: var(--background-beige);
    border-top: 1px solid var(--border-subtle);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex-shrink: 0;
}

.about-image-wrapper {
    width: 220px;
    height: 280px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-title {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-brand);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    padding: 8rem 0;
    background: var(--background-warm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-beige-dark) 0%, transparent 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.4;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-container > * {
    min-width: 0;
}

/* Left Column - Form */
.contact-form-section {
    max-width: 600px;
    width: 100%;
}

.contact-form-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form-section .highlight {
    color: var(--primary-brand);
}

.contact-form-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--background-card);
    padding: 3rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-subtle);
    background: var(--background-warmest);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-brand);
    background: white;
}

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

.form-group select {
    cursor: pointer;
}

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

.form-row-grid > * {
    min-width: 0;
}

.form-message {
    margin-top: 1.5rem;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-brand);
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.submit-button:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 28, 135, 0.3);
}

.response-time {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Right Column - Contact Info */
.contact-info-section {
    padding-top: 8rem;
}

.info-card {
    background: var(--background-card);
    padding: 2.5rem;
    border: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.info-item {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    color: var(--primary-brand);
    min-width: 80px;
    font-size: 0.9rem;
}

.info-value {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-value a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value a:hover {
    color: var(--primary-brand);
}

.booking-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-brand);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 2px solid var(--primary-brand);
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.booking-button:hover {
    background: var(--primary-brand);
    color: white;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .insight-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-section {
        padding-top: 0;
    }

    .contact-form-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .final-cta h2 {
        font-size: 2.25rem;
    }

    .about-content h3 {
        font-size: 1.75rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-image-wrapper {
        margin: 0 auto 1.5rem auto;
    }
}

/* Single testimonial override for Contact page */
.testimonials .testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    text-align: center;
}

.testimonials .testimonial-author {
    text-align: center;
}

body .hero {
    padding: 3rem 0 2rem !important;
}

body .stats {
    padding: 3rem 0 !important;
}

body .differentiation {
    padding: 5rem 0 !important;
}

body .testimonials {
    padding: 3rem 0 !important;
}

/* =============================================================================
   EXECUTIVE TALENT BRIEF STYLES - ALL LIGHT WITH TERRACOTTA ACCENTS
   ============================================================================= */

.hillmont-report-2026 {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    margin: -40px -40px 0 -40px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hillmont-report-2026 {
        margin: -20px -20px 0 -20px;
    }
}

.hillmont-report-2026 * {
    box-sizing: border-box;
}

.hillmont-report-2026 a {
    color: #581c87 !important;
    text-decoration: none !important;
}

.hillmont-report-2026 a:hover {
    text-decoration: underline !important;
}

/* Cover Section - Light and Warm */
.hm-cover {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f7f4 0%, #f4f1ed 100%);
    padding: 80px 40px;
    margin: 0 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hm-cover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 122, 92, 0.08) 0%, rgba(88, 28, 135, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}

.hm-cover-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hm-report-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c17a5c;
    margin-bottom: 32px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(193, 122, 92, 0.1);
    border: 1px solid #c17a5c;
    border-radius: 4px;
}

.hm-cover h1 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 0 24px 0 !important;
    letter-spacing: -0.02em !important;
    color: #2d2d2d !important;
    padding: 0 !important;
}

.hm-cover-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #5a5a5a;
    margin: 0 0 48px 0;
}

.hm-cover-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding-top: 40px;
    border-top: 2px solid rgba(193, 122, 92, 0.2);
}

.hm-meta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c17a5c;
    margin-bottom: 8px;
}

.hm-meta-value {
    font-size: 16px;
    color: #2d2d2d;
    font-weight: 500;
}

/* Content Container */
.hm-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 80px 40px;
}

/* Section Styling */
.hm-section {
    margin-bottom: 80px;
}

.hm-section-header {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c17a5c;
    margin-bottom: 16px;
}

.hillmont-report-2026 h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 0 24px 0 !important;
    color: #2d2d2d !important;
    padding: 0 !important;
}

.hillmont-report-2026 h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin: 40px 0 20px 0 !important;
    color: #2d2d2d !important;
    padding: 0 !important;
}

.hillmont-report-2026 h4 {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 0 8px 0 !important;
    color: #2d2d2d !important;
    padding: 0 !important;
}

.hillmont-report-2026 p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #5a5a5a !important;
    margin: 0 0 20px 0 !important;
}

.hm-lead {
    font-size: 20px !important;
    line-height: 1.7 !important;
    color: #2d2d2d !important;
    font-weight: 500 !important;
    margin: 0 0 40px 0 !important;
}

/* Stats with diagonal ribbons (matching your homepage stats) */
.hm-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.hm-stat-box {
    background: white;
    border: 1px solid rgba(232, 228, 223, 0.6);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.hm-stat-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 140%;
    height: 120px;
    background: #c17a5c;
    opacity: 0.08;
    z-index: 0;
    border-radius: 4px;
}

.hm-stat-box:hover {
    border-color: #c17a5c;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(193, 122, 92, 0.15);
}

.hm-stat-box:hover::before {
    opacity: 0.12;
}

.hm-stat-value {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #c17a5c !important;
    line-height: 1 !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

.hm-stat-label {
    font-size: 15px !important;
    color: #5a5a5a !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

/* Insight Cards - PURPLE for strategic insights */
.hm-insight-card {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.05) 0%, rgba(88, 28, 135, 0.02) 100%);
    border-left: 4px solid #581c87;
    padding: 36px;
    margin: 40px 0;
    border-radius: 8px;
    border: 1px solid rgba(88, 28, 135, 0.15);
    box-shadow: 0 2px 8px rgba(88, 28, 135, 0.08);
}

.hm-insight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hm-insight-icon {
    width: 32px;
    height: 32px;
    background: #581c87;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.hm-insight-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #581c87;
    margin: 0;
}

.hm-insight-card p {
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #2d2d2d !important;
    margin: 0 !important;
}

/* Framework with beige background - TERRACOTTA bullets */
.hm-framework {
    background: #fdfcfa;
    padding: 48px;
    border-radius: 12px;
    margin: 48px 0;
    border: 1px solid rgba(232, 228, 223, 0.6);
}

.hm-framework-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin: 0 0 32px 0 !important;
    color: #2d2d2d !important;
    padding: 0 !important;
}

.hm-framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.hm-framework-item {
    position: relative;
    padding-left: 32px;
}

.hm-framework-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #c17a5c;
    border-radius: 50%;
}

/* Sectors */
.hm-sector-grid {
    display: grid;
    gap: 32px;
    margin: 40px 0;
}

.hm-sector-card {
    background: white;
    border: 1px solid rgba(232, 228, 223, 0.6);
    border-radius: 12px;
    padding: 36px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.hm-sector-card::after {
    content: '';
    position: absolute;
    top: 25%;
    right: -25px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(193, 122, 92, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.hm-sector-card:hover {
    border-color: #c17a5c;
    box-shadow: 0 10px 30px rgba(193, 122, 92, 0.15);
    transform: translateY(-5px);
}

.hm-sector-card:hover::after {
    transform: scale(1.3);
    opacity: 0.8;
}

.hm-sector-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.hm-sector-name {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #2d2d2d !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hm-sector-trend {
    padding: 6px 16px;
    background: rgba(193, 122, 92, 0.1);
    color: #c17a5c;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(193, 122, 92, 0.3);
}

.hm-sector-trend.high {
    background: #c17a5c;
    color: white;
    border: 1px solid #c17a5c;
}

.hm-sector-description {
    color: #5a5a5a !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Divider with terracotta gradient */
.hm-divider {
    height: 2px;
    background: linear-gradient(to right, #c17a5c, transparent);
    margin: 60px 0;
    border: none;
}

/* Conclusion - Light beige background with subtle depth */
.hm-conclusion {
    background: linear-gradient(135deg, #f4f1ed 0%, #e0d5c8 100%);
    color: #2d2d2d;
    padding: 60px;
    border-radius: 12px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 228, 223, 0.8);
}

.hm-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.06) 0%, transparent 70%);
}

.hm-conclusion > * {
    position: relative;
    z-index: 1;
}

.hm-conclusion h2 {
    color: #2d2d2d !important;
    margin: 0 0 20px 0 !important;
}

.hm-conclusion p {
    color: #5a5a5a !important;
    font-size: 18px !important;
}

/* CTA Section */
.hm-cta-section {
    background: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0;
    border: 2px solid rgba(88, 28, 135, 0.15);
}

.hm-cta-section h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 36px !important;
    margin: 0 0 20px 0 !important;
    color: #2d2d2d !important;
}

.hm-cta-section p {
    font-size: 18px !important;
    margin: 0 0 32px 0 !important;
}

.hm-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent !important;
    color: #581c87 !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border: 2px solid #581c87;
}

.hm-cta-button:hover {
    background: #581c87 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 28, 135, 0.3);
    text-decoration: none !important;
}

/* Footer */
.hm-footer {
    padding: 60px 0 0 0;
    border-top: 2px solid rgba(193, 122, 92, 0.2);
}

.hm-author-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hm-author-name {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 0 6px 0 !important;
    color: #2d2d2d !important;
}

.hm-author-title,
.hm-author-company {
    font-size: 16px;
    color: #5a5a5a;
    margin: 0 0 4px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hm-cover {
        padding: 60px 24px;
    }
    
    .hm-cover h1 {
        font-size: 40px !important;
    }
    
    .hm-cover-subtitle {
        font-size: 18px;
    }
    
    .hillmont-report-2026 h2 {
        font-size: 32px !important;
    }
    
    .hm-container {
        padding: 0 24px 60px 24px;
    }
    
    .hm-stats-row,
    .hm-framework-grid {
        grid-template-columns: 1fr;
    }
    
    .hm-framework {
        padding: 32px 24px;
    }
    
    .hm-conclusion,
    .hm-cta-section {
        padding: 40px 32px;
    }
}
