/* Arctic Studio × Thought Leader Design */
/* Design: Cool, spacious Scandinavian aesthetic */
/* Content: Authority-forward expert positioning */

:root {
    --white: #ffffff;
    --ice: #f7f9fc;
    --slate: #64748b;
    --ink: #0f172a;
    --electric: #0ea5e9;
    --coral: #f97316;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 4px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink);
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Header & Navigation */
.header {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--electric);
}

.btn-contact {
    background: var(--electric);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.btn-contact:hover {
    background: #0284c7;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.hero-title {
    font-size: 4rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--slate);
    line-height: 1.6;
}

/* Credentials Banner */
.credentials-banner {
    background: var(--ice);
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

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

.credential-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.credential-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-label {
    font-size: 0.875rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.credential-value {
    font-size: 1.125rem;
    color: var(--ink);
    font-weight: 600;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-ice {
    background: var(--ice);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
}

/* Featured Work Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.featured-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-card-primary {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--electric) 0%, #0284c7 100%);
    border: none;
    color: var(--white);
}

.featured-card-primary .featured-title,
.featured-card-primary .featured-description {
    color: var(--white);
}

.featured-badge {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: fit-content;
}

.featured-card:not(.featured-card-primary) .featured-badge {
    background: var(--ice);
    color: var(--electric);
}

.featured-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.featured-description {
    color: var(--slate);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.featured-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.featured-card:not(.featured-card-primary) .featured-link {
    color: var(--electric);
}

.featured-link:hover {
    gap: 0.75rem;
}

/* Speaking Topics */
.speaking-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.topic-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
}

.topic-title {
    color: var(--ink);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.topic-description {
    color: var(--slate);
}

/* Media List */
.media-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.media-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.media-outlet {
    font-size: 0.875rem;
    color: var(--electric);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 200px;
}

.media-title {
    color: var(--ink);
    font-weight: 600;
    flex-grow: 1;
}

.media-type {
    font-size: 0.875rem;
    color: var(--slate);
    padding: 0.25rem 0.75rem;
    background: var(--ice);
    border-radius: 999px;
    white-space: nowrap;
}

/* Buttons */
.cta-center {
    text-align: center;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: #ea580c;
}

.btn-secondary {
    background: transparent;
    color: var(--electric);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: var(--ice);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

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

/* Contact Section */
.section-contact {
    background: var(--ink);
    color: var(--white);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--ice);
    padding: 3rem 0 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.footer-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.footer-credentials {
    color: var(--slate);
    font-size: 0.875rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: var(--slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-right a:hover {
    color: var(--electric);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--slate);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

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

    .featured-card-primary {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 2rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .speaking-topics {
        grid-template-columns: 1fr;
    }

    .media-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .media-outlet {
        min-width: unset;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn-primary,
    .contact-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .btn-contact {
        padding: 0.375rem 1rem;
        font-size: 0.875rem;
    }
}

/* Page Headers */
.page-header {
    padding: 4rem 0 3rem;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
}

.page-title {
    font-size: 3.5rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 800px;
}

/* Expertise Page */
.expertise-section {
    padding: var(--spacing-xl) 0;
}

.expertise-content {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.expertise-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.expertise-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
    font-weight: 600;
}

.expertise-body {
    display: grid;
    gap: 3rem;
}

.expertise-perspective {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.perspective-heading {
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.expertise-perspective p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.expertise-perspective p:last-child {
    margin-bottom: 0;
}

.areas-heading {
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.area-item {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.area-title {
    color: var(--ink);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.area-description {
    color: var(--slate);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Media Page - Speaking Topics Expanded */
.speaking-topics-expanded {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.topic-card-expanded {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
}

.topic-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
}

.topic-content {
    flex: 1;
}

.topic-audience {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.audience-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--ice);
    color: var(--electric);
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Press List */
.press-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.press-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.press-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.press-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric);
    min-width: 80px;
}

.press-content {
    flex: 1;
}

.press-outlet {
    font-size: 0.875rem;
    color: var(--electric);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.press-headline {
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.press-summary {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.press-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.press-type {
    font-size: 0.875rem;
    color: var(--slate);
    padding: 0.25rem 0.75rem;
    background: var(--ice);
    border-radius: 999px;
}

.press-location {
    font-size: 0.875rem;
    color: var(--slate);
}

.press-link a {
    color: var(--electric);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.press-link a:hover {
    text-decoration: underline;
}

/* Speaking CTA Box */
.speaking-cta-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 3rem;
}

.speaking-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.speaking-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.speaking-cta-text {
    font-size: 1.125rem;
    color: var(--slate);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.speaking-formats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.format-item {
    text-align: center;
}

.format-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.format-name {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.format-duration {
    font-size: 0.875rem;
    color: var(--slate);
}

.speaking-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Media Inquiry Box */
.media-inquiry-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.inquiry-text {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.inquiry-item {
    text-align: center;
}

.inquiry-label {
    font-size: 0.875rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.inquiry-value {
    color: var(--ink);
    font-weight: 600;
}

.inquiry-value a {
    color: var(--electric);
    text-decoration: none;
}

.inquiry-value a:hover {
    text-decoration: underline;
}

/* About Page */
.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.bio-main {
    max-width: 750px;
}

.bio-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.bio-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--slate);
}

.bio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-box {
    background: var(--ice);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
}

.bio-box-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.bio-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bio-list li {
    color: var(--slate);
    padding-left: 1.5rem;
    position: relative;
}

.bio-list li::before {
    content: "•";
    color: var(--electric);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Credentials Detailed */
.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.credential-degree {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.credential-institution {
    color: var(--electric);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credential-details {
    color: var(--slate);
    font-size: 0.9375rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cert-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.cert-name {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.cert-org {
    color: var(--slate);
    font-size: 0.875rem;
}

/* Publications List */
.publications-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.publication-item {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.publication-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pub-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric);
    min-width: 80px;
}

.pub-content {
    flex: 1;
}

.pub-title {
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.pub-details {
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.pub-type {
    font-size: 0.875rem;
    color: var(--electric);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Philosophy Section */
.section-philosophy {
    background: var(--ink);
    color: var(--white);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
}

.philosophy-heading {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Active Navigation State */
.nav-links a.active {
    color: var(--electric);
}

/* Additional Responsive Styles */
@media (max-width: 1024px) {
    .page-title {
        font-size: 3rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .credentials-detailed {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .page-subtitle {
        font-size: 1.125rem;
    }

    .expertise-header {
        flex-direction: column;
    }

    .expertise-title {
        font-size: 2rem;
    }

    .topic-card-expanded {
        flex-direction: column;
        gap: 1rem;
    }

    .topic-number {
        font-size: 2rem;
    }

    .press-item {
        flex-direction: column;
        gap: 1rem;
    }

    .press-year {
        min-width: unset;
    }

    .speaking-formats {
        grid-template-columns: 1fr;
    }

    .inquiry-details {
        grid-template-columns: 1fr;
    }

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

    .speaking-cta-box,
    .media-inquiry-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .expertise-perspective,
    .area-item {
        padding: 1.5rem;
    }

    .expertise-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
