@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #0000ff;
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1184px, calc(100% - 64px));
    margin: auto;
}

.page-hero {
    padding: 160px 0 110px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 255, 0.15);
}

.page-hero h1,
.section h2 {
    font: 400 clamp(42px, 6vw, 80px)/.98 'DM Serif Display', serif;
    margin: 0;
    color: #0000ff;
}

.accent-line {
    display: block;
    width: 48px;
    height: 3px;
    background: #008000;
    margin: 32px 0;
}

.section p {
    font-size: 14px;
    line-height: 1.8;
    color: #0000ff;
}

.about-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.about-portrait-image {
    height: 720px;
    background: #ffffff url('./img/hero-image.png') center/cover no-repeat;
}

.about-content {
    padding-top: 16px;
}

.about-content h2 {
    font-size: clamp(38px, 4vw, 45px);
    line-height: 1.1;
}

.about-content blockquote {
    border-left: 2px solid #008000;
    padding-left: 24px;
    margin: 48px 0 0;
    color: #0000ff;
    font: italic 26px/1.35 'DM Serif Display', serif;
}

.experience {
    margin-top: 48px;
}

.experience-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 255, 0.15);
}

.experience-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 255, 0.15);
}

.experience-item time {
    font-size: 12px;
    color: #0000ff;
}

.experience-item h3 {
    font-size: 14px;
    margin: 0;
    color: #0000ff;
}

.experience-item strong {
    display: block;
    color: #008000;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
}

.experience-item p {
    font-size: 12px !important;
    line-height: 1.75 !important;
    margin: 8px 0 0;
}

.in-practice {
    background: #ffffff;
}

.practice-grid {
    display: grid;
    grid-template-columns: 1.4fr .85fr;
    gap: 16px;
    margin-top: 16px;
}

.practice-main,
.practice-meeting,
.practice-presenting {
    background: #ffffff center/cover no-repeat;
}

.practice-main {
    height: 500px;
    background-image: url('./img/philosophy.png');
}

.practice-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.practice-meeting {
    background-image: url('./img/image-1.png');
}

.practice-presenting {
    background-image: url('./img/image-2.1.png');
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.approach-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.approach-item {
    border-top: 1px solid rgba(0, 0, 255, 0.15);
    padding-top: 18px;
}

.approach-item > span {
    font-size: 12px;
    color: #008000;
}

.approach-item h3 {
    color: #0000ff;
    font: 400 21px/1.3 'DM Serif Display', serif;
    margin: 12px 0;
}

.approach-item p {
    margin: 0;
}

@media (max-width: 900px) {

    .container {
        width: min(100% - 48px, 720px);
    }

    .nav-container {
        padding: 0 32px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .header-cta {
        order: 1;
        margin-left: auto;
    }

    .brand {
        order: 0;
    }

    .site-header.menu-open .main-nav {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 24px 32px;
        flex-direction: column;
        gap: 20px;
    }

    .site-header.menu-open .header-cta {
        display: none;
    }

    .about-profile,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-portrait-image {
        height: 560px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-main {
        height: 420px;
    }

    .practice-side {
        height: 500px;
    }

    .approach-list {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top,
    .footer-bottom {
        padding: 45px 32px;
    }
}

@media (max-width: 600px) {

    .container {
        width: calc(100% - 40px);
    }

    .nav-container {
        padding: 0 20px;
    }

    .brand {
        font-size: 12px;
    }

    .header-cta {
        display: none;
    }

    .site-header.menu-open .main-nav {
        padding: 20px;
    }

    .section {
        padding: 65px 0;
    }

    .page-hero {
        padding: 125px 0 75px;
    }

    .page-hero h1 {
        font-size: 56px;
    }

    .about-portrait-image {
        height: 420px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content blockquote {
        font-size: 24px;
    }

    .practice-main {
        height: 330px;
    }

    .practice-side {
        height: 450px;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-top {
        display: block;
    }

    .footer-quote {
        margin-top: 35px !important;
    }

    .footer-bottom {
        display: block;
        padding: 28px 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        margin-bottom: 25px;
    }

    .footer-meta {
        align-items: start;
    }
}