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

body {
    font-family: 'EurekaSansScComp-Light', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.portfolio-container {
    max-width: 1024px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-image-placeholder {
    width: 130px;
    height: 92.5px;
    margin: 0 auto 20px;
    background: rgba(127, 119, 111, 0.05);
    box-shadow: 4px 4px 12px rgba(44, 41, 38, 0.30) inset;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.profile-name {
    color: #3D3835;
    font-size: 36px;
    font-family: EurekaSansScComp-Light;
    font-weight: 350;
    text-transform: uppercase;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.profile-location {
    color: #7F776F;
    font-size: 20px;
    font-family: EurekaSansScComp-Light;
    font-weight: 350;
    text-transform: lowercase;
}

/* Hero Section */
.hero-container {
    width: 100%;
    padding: 20px 30px;
    background: #F3F2F1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: #F9F8F8;
    overflow: hidden;
}

.hero-image-wrapper.pdf-scroll {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 450px;
}

.pdf-scroll .hero-image-wrapper::before {
    visibility: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 2px 2px 10px 4px rgba(44, 41, 38, 0.30), 0 0 0 1px rgba(44, 41, 38, 0.15);
    pointer-events: none;
    z-index: 1;
}

.hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    display: block;
}

.hero-image-wrapper .pdf-canvas-wrapper {
    position: relative;
    width: 100%;
    z-index: 3;
}

.pdf-scroll .pdf-canvas-wrapper {
    flex: 1;
}

.hero-image-wrapper .pdf-canvas {
    display: block;
}


.pdf-canvas:fullscreen {
    background: #1a1a1a;
}

.pdf-annotation-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.pdf-annotation-layer a {
    pointer-events: auto;
    cursor: pointer;
}

.pdf-toolbar {
    display: none;
    gap: 16px;
    align-items: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px 20px;
}

.pdf-toolbar.visible {
    display: flex;
    position: sticky;
    bottom: 0;
}

.pdf-scroll .pdf-toolbar {
    display: flex;
    z-index: 10;
    margin-top: auto;
    justify-content: center;
}

.toolbar-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-group--right {
    margin-left: auto;
}

.pdf-page-info {
    color: #7F776F;
    font-size: 12px;
    font-family: EurekaSansComp, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 26px;
    user-select: none;
    white-space: nowrap;
}

.pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(218, 101, 38, 0.5);
    border: none;
    border-radius: 100px;
    outline: 2px #DA6526 solid;
    outline-offset: -2px;
    cursor: pointer;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 0;
}

.pdf-btn:hover,
.pdf-btn:focus-visible {
    opacity: 0.85;
}

.pdf-btn:focus-visible {
    outline: 2px #FE9C65 solid;
    outline-offset: 4px;
}

.pdf-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #fff !important;
}

.hero-title {
    width: 100%;
    text-align: center;
    color: #9F4A1D;
    font-size: 20px;
    font-family: EurekaSansScComp-Bold;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 20px;
}

/* Navigation Buttons */
.buttons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.button-wrapper {
    display: flex;
    align-items: center;
    padding: 4px 16px;
    gap: 8px;
    background: #DA6526;
    border-radius: 6px;
    outline: 2px #FE9C65 solid;
    outline-offset: -2px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.button-wrapper:hover,
.button-wrapper:focus-visible {
    opacity: 0.85;
}

.button-wrapper.active {
    box-shadow: 0 0 0 3px #FE9C65;
}

.buttons-container.has-active .button-wrapper:not(.active) {
    opacity: 0.4;
}

.button-wrapper:focus-visible {
    outline: 2px #FE9C65 solid;
    outline-offset: 4px;
}

.button-text {
    color: white;
    font-size: 24px;
    font-family: EurekaSansScComp-Medium;
    font-weight: 500;
    text-transform: lowercase;
    word-wrap: break-word;
}

.button-icon {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image-wrapper {
        height: 350px;
    }

    .pdf-btn {
        padding: 3px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 30px 12px;
    }

    .hero-image-wrapper {
        height: 260px;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-location {
        font-size: 16px;
    }

    .pdf-btn {
        padding: 2px 8px;
        font-size: 11px;
    }

    .pdf-page-info {
        font-size: 11px;
        min-width: 50px;
    }

    .buttons-container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .button-wrapper {
        justify-content: center;
    }
}

/* About Section */
.about-section {
    width: 100%;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #F3F2F1;
}

.about-text {
    color: #2C2926;
    font-size: 28px;
    font-family: 'EurekaSansComp-Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    line-height: 36px;
    word-wrap: break-word;
    margin-bottom: 20px;
}

.about-grid {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.about-column {
    flex: 1 1 0;
}

.about-heading {
    color: #2C2926;
    font-size: 20px;
    font-family: 'EurekaSansScComp-Bold', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 8px;
}

.about-list,
.about-list ul,
.about-list ol {
    color: #2C2926;
    font-size: 22px;
    font-family: 'EurekaSansScComp-Light', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 350;
    text-transform: lowercase;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    margin-bottom: 4px;
    padding-left: 0;
}

.about-value {
    display: inline-block;
    margin-left: 10px;
}

.about-label {
    color: #2C2926;
    font-size: 22px;
    font-family: 'EurekaSansScComp-Light', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 350;
    text-transform: lowercase;
}

.about-value {
    color: #2C2926;
    font-size: 22px;
    font-family: 'EurekaSansComp-LightItalic', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 350;
    text-transform: lowercase;
}

.about-highlight {
    color: #DA6426;
}

/* References Section */
.references-section {
    width: 100%;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #F3F2F1;
}

.references-heading {
    color: #7F776F;
    font-size: 36px;
    font-family: 'EurekaSansScComp-Bold', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.references-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.references-list.collapsed {
    height: 400px;
    overflow: hidden;
}

.reference-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.reference-portrait {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    flex-shrink: 0;
    box-shadow: 2px 2px 10px 4px rgba(44, 41, 38, 0.30) inset;
    object-fit: cover;
}

.reference-body {
    flex: 1 1 0;
}

.reference-meta {
    color: #918E7E;
    font-size: 20px;
    font-family: 'EurekaSansScComp-Bold', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 4px;
    line-height: 1.3;
}

.reference-quote {
    color: #2C2926;
    font-size: 18px;
    font-family: 'EurekaComp', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 26px;
}

.references-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 32px auto 0;
    padding: 4px 16px;
    background: transparent;
    border: none;
    border-radius: 6px;
    outline: 2px #FE9C65 solid;
    outline-offset: -2px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.references-more-btn:hover,
.references-more-btn:focus-visible {
    opacity: 0.85;
}

.references-more-btn:focus-visible {
    outline: 2px #FE9C65 solid;
    outline-offset: 4px;
}

.references-more-btn span {
    color: #FE9C65;
    font-size: 24px;
    font-family: 'EurekaSansScComp-Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    text-transform: lowercase;
}

.references-more-btn svg.icon-plus,
.references-more-btn svg.icon-minus {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
