* { box-sizing: border-box; }
body {
    font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    color: #1a2332;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

/* Header */
.header {
    border-bottom: 1px solid #eef1f5;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}
.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #2a3d5a;
}
.nav {
    display: flex;
    gap: 36px;
    font-size: 14px;
    color: #5a6878;
}
.nav-link { cursor: pointer; }
.nav-link:hover { color: #2b7fc4; }
.back-btn {
    padding: 8px 16px;
    border: 1px solid #d5dde6;
    border-radius: 6px;
    font-size: 13px;
    color: #5a6878;
    cursor: pointer;
    background: white;
}

/* Hero */
.about-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
}
.about-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: #eaf3fb;
    color: #2b7fc4;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about-h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 20px;
    line-height: 1.2;
}
.about-lead {
    font-size: 17px;
    color: #5a6878;
    margin: 0 0 32px;
    line-height: 1.6;
}
.about-lead strong { color: #1a2332; font-weight: 600; }

/* Credentials */
.credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
}
.cred-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: #f7f9fc;
    border-radius: 10px;
    border-left: 3px solid #2b7fc4;
}
.cred-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #2b7fc4;
    margin-top: 1px;
}
.cred-text { font-size: 14.5px; color: #2c3849; line-height: 1.5; }
.cred-text strong { color: #1a2332; font-weight: 600; }

/* Photo column */
.photo-wrap {
    position: sticky;
    top: 30px;
}
.photo-frame {
    width: 100%;
    aspect-ratio: 4/5;
/*    background: linear-gradient(135deg, #e8eef5 0%, #d5dde6 100%);*/
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-placeholder {
    text-align: center;
    color: #8a96a3;
    font-size: 13px;
/*    padding: 20px;*/
}
.photo-placeholder svg { margin-bottom: 12px; opacity: 0.6; }
.photo-name {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
}
.photo-role {
    margin-top: 4px;
    font-size: 14px;
    color: #5a6878;
}

/* Story section */
.story {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
    border-top: 1px solid #eef1f5;
}
.story-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
}
.story-label {
    font-size: 12px;
    font-weight: 700;
    color: #2b7fc4;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 8px;
}
.story-body {
    font-size: 16px;
    color: #2c3849;
    line-height: 1.7;
}
.story-body p { margin: 0 0 18px; }
.story-body p:last-child { margin-bottom: 0; }

/* Quote block */
.quote-block {
    max-width: 900px;
    margin: 30px auto 50px;
    padding: 40px 50px;
    background: linear-gradient(135deg, #f0f6fb 0%, #eaf3fb 100%);
    border-radius: 14px;
    position: relative;
}
.quote-mark {
    font-size: 70px;
    color: #2b7fc4;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -20px;
    opacity: 0.4;
}
.quote-text {
    font-size: 19px;
    color: #1a2332;
    font-weight: 500;
    line-height: 1.55;
    font-style: italic;
}

/* Contact section */
.contact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px 80px;
    border-top: 1px solid #eef1f5;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 14px;
    line-height: 1.3;
}
.contact-desc {
    font-size: 15px;
    color: #5a6878;
    line-height: 1.6;
    margin: 0 0 24px;
}
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #2b7fc4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.15s;
}
.contact-email:hover { background: #2370b0; }

.form-card {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 28px;
}
.form-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    margin: 0 0 18px;
}
.form-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d5dde6;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    color: #1a2332;
    font-family: inherit;
    margin-bottom: 12px;
    transition: border-color 0.15s;
}
.form-field:focus { border-color: #2b7fc4; }
textarea.form-field { min-height: 100px; resize: vertical; }
.form-btn {
    width: 100%;
    padding: 13px;
    background: #1a2332;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.form-btn:hover { background: #2c3849; }
.form-note {
    font-size: 11px;
    color: #8a96a3;
    margin: 10px 0 0;
    line-height: 1.5;
}
.form-note a { color: #2b7fc4; text-decoration: none; }


@media (max-width: 880px) {
    .about-hero { grid-template-columns: 1fr; gap: 40px; }
    .photo-wrap { position: static; max-width: 320px; margin: 0 auto; }
    .story-grid { grid-template-columns: 1fr; gap: 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-h1 { font-size: 28px; }
    .quote-block { padding: 30px 24px; }
    .quote-text { font-size: 17px; }
    .header { padding: 14px 20px; }
    .nav { display: none; }
}

.photo-placeholder img {
    height: auto;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}